Call precompile​dDll in mobile module

Hi,
I need to call the precompiled dll in my mobile project.
I got struck while building the application its gives a "error missing vi or c file"
I have no idea what to do.since i am new to this.
what method i need to follow to call the precompiled dll and make my mobile app working?
Pls.help me on this
Regards,
Vidura.

magicofavalon1
Are you saying that the problem is that you are calling a library from a VI ona PC (which works fine) but when you call the same library from a mobile moduleVI, you get the build error?
Just as you are saying, I call the library (the stubbed library i madefor Win32) from a VI on the PC and it works fine
when i do it from a mobile module VI, it doesn’t even build (always using thestubbed library) because when using the ARM library i get an error thatthe library wasn’t made for Windows, which I already know because i made thelibrary for an ARM processor and already tested it with a C++ program made inVisual Studio.
That’s why I ended making a stub dll but with no luck so far.
magicofavalon1
It may also be that you need to reference the location of the libraryand manually copy it to the LabVIEW mobile device before you build it. 
i already have the library in the mobile device, but I’m using in thecall library node the location to the stub dll in my PC. Is it really necessaryto build the application to have the mobile device connected to the PC becausei haven’t had it like the last 100 times i tried to build it? Anyways Thanksfor your help, I’ll try this tomorrow at first hour (at my job), and maybe youcan understand me better with the explanation i gave you right now.

Similar Messages

  • Mobile module intermediate files?

    Where does the Mobile Module store its intermediate .c and .obj files? I get a build error:
       error LNK2001: unresolved external symbol state
    and I'd like to get some sort of hint who uses this symbol. Thanks!

    Thanks for the reply. My problem is not the LNK2001 error per se; that's just a generic "module not found" linker error that one gets fairly regularly when you happen upon a library function available in Windows but not Windows Mobile. In the present project, I've already fixed a bunch of these.
    My problem in this case is that I have nothing called "state"; that's why I want to see the intermediate C files to get a hint where it's coming from. But I can't seem to find out where these intermediate files are stored...

  • Is it possible to call custom designed RFC function module, apart from BAPI

    Hi Friends,
    1.     Is it possible to call custom designed RFC function module, apart from BAPI.
    2.     Why we call it Adaptive RFC layer, Since every time the JCO layer updated with SAP, Why can’t be dynamic.
    Thanx for Ur time.
    Cheers,
    Sam

    Also check <a href="http://help.sap.com/saphelp_nw04/helpdata/en/41/38bc8f813719488ddc9d9b21251ec3/frameset.htm">here</a> for more information on aRFC. Here you can find why it is called adaptive.
    Regards,
    Christophe

  • Calling a report from function module

    Hi Friends,
    I have requirement for Function Module i.e. we will add the button to the standard T-code and ( Function added in config ) then
    Function to be called from Customizing
    Program A called from customizing function
    CalculationPDFFunction  is called from program A.
    So can any one help me the logic for "calling a report from function module  ".
    Thanks in Advance.
    Regards,
    OSReddy.
    Edited by: OSReddy on Sep 23, 2011 7:31 AM

    Hi Jaya,
    Yes. It is possible to call ur custom program using SUBMIT statement.
    1. If u have data to pass then build table type RSPARAMS and use below statement.
    data:
          rspar_tab  TYPE TABLE OF rsparams,
          rspar_line LIKE LINE OF rspar_tab,
    SUBMIT report1 WITH SELECTION-TABLE rspar_tab
                   AND RETURN.
    1. If u want to create variant to the program and use that. use the below statement .
    SUBMIT report1 USING SELECTION-SET 'VAR1' "variant
                   AND RETURN.
    Regards,
    Venkat.O

  • Calling Alv Report From Mobile

    Hi All,
    I need some information to cal a alv report from mobile. I created one report ans can see the selection screen in gui after calling. Here the screen is really big i need to adjust the size because it may take more load and time if i call from a mobile . Is it possible to call the same from mobile or do i need any separate application to call this from mobile. Please *** you valuable suggestions.
    Regards
    Madhu.

    Hello Madhu,
    What is your system details?
    Kernel and BASIS?
    Device OS & Browser?
    What are the GUI Configuration settings of the ITSMobile Service?
    What ITSMobile Generation STYLE was used?
    Perhaps useful notes:
    1037715  ITSmobile: Supported screen elements
    1309633  ITSmobile: custom OMRT controls auto-recognized at runtime
    1312835 ITSmobile: page navigation in ALV Grid on Windows Mobile
    1668784 ITSmobile: new features for ALV Grid
    Regards,
    Oisin

  • Error while calling Strored procedure in HR Module

    Hi,
    I have a composite which picks up a file and use that data to call API's in HR module and do some database lookups. I have done development in one instance and done with testing. So, in the same SOA instance, we want to test the composite against a different oracle database instance. So connection factories for oracle apps and database adpater have been created. I wrote the config plan, replaced the JNDi names for both the adapters and deployed the composite to the same SOA instance. I am getting this error at runtime...
    Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'CreateUSEmp' failed due to: Stored procedure invocation error. Error while trying to prepare and execute the APPS.XX_BPEL_CREATEUSEMP.HR_EMPLOYEE_API$CREATE_US_EMP API. An error occurred while preparing and executing the APPS.XX_BPEL_CREATEUSEMP.HR_EMPLOYEE_API$CREATE_US_EMP API. Cause: java.sql.SQLException: ORA-06550: line 1, column 7: PLS-00201: identifier 'APPS.XX_BPEL_CREATEUSEMP' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored Check to ensure that the API is defined in the database and that the parameters match the signature of the API. This exception is considered not retriable, likely due to a modelling mistake. To classify it as retriable instead add property nonRetriableErrorCodes with value "-6550" to your deployment descriptor (i.e. weblogic-ra.xml). To auto retry a retriable fault set these composite.xml properties for this invoke: jca.retry.interval, jca.retry.count, and jca.retry.backoff. All properties are integers. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    Actually, in the next instance, the API is there and also it has the same signature in both the database instances, the user credentials used in creating the datasource has access to the package in the oracle database instance... Can somebody please help me with the solution, what is causing the error here...
    Thanks in Advance,
    Naresh

    it looks like not all objects are created for XX_BPEL_CREATEUSEMP
    synonyms and all grants are there ?

  • Error while calling Strored procedure in HR Module from BPEL

    Hi,
    I have a composite which picks up a file and use that data to call API's in HR module and do some database lookups. I have done development in one instance and done with testing. So, in the same SOA instance, we want to test the composite against a different oracle database instance. So connection factories for oracle apps and database adpater have been created. I wrote the config plan, replaced the JNDi names for both the adapters and deployed the composite to the same SOA instance. I am getting this error at runtime...
    Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'CreateUSEmp' failed due to: Stored procedure invocation error. Error while trying to prepare and execute the APPS.XX_BPEL_CREATEUSEMP.HR_EMPLOYEE_API$CREATE_US_EMP API. An error occurred while preparing and executing the APPS.XX_BPEL_CREATEUSEMP.HR_EMPLOYEE_API$CREATE_US_EMP API. Cause: java.sql.SQLException: ORA-06550: line 1, column 7: PLS-00201: identifier 'APPS.XX_BPEL_CREATEUSEMP' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored Check to ensure that the API is defined in the database and that the parameters match the signature of the API. This exception is considered not retriable, likely due to a modelling mistake. To classify it as retriable instead add property nonRetriableErrorCodes with value "-6550" to your deployment descriptor (i.e. weblogic-ra.xml). To auto retry a retriable fault set these composite.xml properties for this invoke: jca.retry.interval, jca.retry.count, and jca.retry.backoff. All properties are integers. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    Actually, in the next instance, the API is there and also it has the same signature in both the database instances, the user credentials used in creating the datasource has access to the package in the oracle database instance... Can somebody please help me with the solution, what is causing the error here...
    Thanks in Advance,
    Naresh

    Cause: java.sql.SQLException: ORA-06550: line 1, column 7: PLS-00201: identifier 'APPS.XX_BPEL_CREATEUSEMP' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored Check to ensure that the API is defined in the database and that the parameters match the signature of the API.This has nothing to do with the connection pool you have created (as the BPEL process connects to the new database), and most likely it is something to do with the API/Package you are using. Please double check the code of the package (make sure it is valid and it is identical to the one you have in the other instance).
    Thanks,
    Hussein

  • How to call Custom RFC enabled Function Module in R/3 From XI

    Hi Experts,
    I want to call custom RFC enabled Function Module by sending some input parameters from XI.
    How to do this
    Thnx
    RAMS

    Hi RAMS,
    1. Under the SWCV Go to the Imported Objects.
    2. Right click on the RFC and click on the Import of SAP object.
    3. Give the logon server name, system number the user name and pasword.
    4. Select the RFC u want to import.
    5. Execute the import and the RFC is imported under the SWCV.
    Now u can use this Imported RFC in the scenarios of that SWCV.
    Regards
    Santhosh
    Remember to set the thread to solved when you have received a solution

  • Incoming call shows Name - work/mobile/home of deleted contacts !!

    hi all,
    i have iphone with firmware 1.1.3
    I was trying to add a contact while on a call- a feature unavailable in 1.1.3
    while doing so, all my contacts were deleted and I did not sync with my computer.
    THough I do not have a contact in my contacts list, if one of my old contact calls me, his name is correctly displayed with work/home/mobile information.
    This means data is still there but not accessible nor visible? Has anyone encountered such an issue ?
    Trying to sync with computer does not show contacts that were "deleted"
    Any ideas to fix? Else i will upgrade phone firmware.
    Thanks
    Rajas

    I agree that I have old firmware and I should upgrade. Would the update restore my deleted contacts? I do not have unlocked phone or any Non-apple apps.
    I Added a contact with home and mobile#. I then deleted the home# and called my cell from the same deleted home#. The incoming call stil shows the correct information "Name - Home". This means the data is available somewhere in the phone but not visible.
    I tried to do a sync using iTunes 7.7.1 or latest. It only shows me Contacts that I added recently after all my contacts were erased. But when i get calls from those who were in my Contact list, I still see their names poping up when the call comes in and more over it identifies which phone they are calling from home/work/mobile/other. How is that ?
    Thanks
    Rajas

  • Call report selection screen in module pool program with tab strip control

    Hi,
    Could anyone explain in detail to call report selection screen in module pool program with tab strip control.
    Thanks
    Mano

    Hi,
    Refer std program:
    demo_sel_screen_in_tabstrip.
    demo_sel_screen_with_tabstrip.
    Call your program with SUBMIT stmt form module program.
    Reward points if this Helps.
    Manish

  • Calling and executing a function module in the Portal iview development

    Hello Portal development gurus...
        I am very new to portal iview development and am learning a lot of stuff.. I now have a requirement to do the following:
      1. I need to use the NWDS to create java code in developing an iview
      2. I need to call and execute a function module and display the parameters pulled in from the function module onto a Jsp.
    3. I need to create an iview based on this deployed component.
    Could anybody please explain me how to do the coding on this front?
    I appreciate if anybody can share documentation about this kind of a development.
    As always, points galore for useful and helpful suggestions.
    Regards,
    ~~~LB

    Hi,
    Firstly Have you searched in SDN for the same, anyhow please go through the link to work on the requirement
    [/docs/DOC-8061#15|/docs/DOC-8061#15]
    Go through the thread which will talk in detail
    [https://forums.sdn.sap.com/click.jspa?searchID=19551584&messageID=6348955|https://forums.sdn.sap.com/click.jspa?searchID=19551584&messageID=6348955]
    Hope this helps.
    Cheers-
    Pramod

  • Internal Error 2738 - Can't install Mobile Module 8.6

    Hello,
    i have installed the LabVIEW 8.6.1 in my notebook.
    And i have tried to install the Mobile module 8.6, but i get the error all the time (error 2738).
    i have tried to solve the problem by the following link, but the error still appears.
    http://forums.ni.com/ni/board/message?board.id=170&message.id=357697&requireLogin=False
    i use the windows 7 to install LabVIEW program. Is the mobile module not support the win7?
    i hope someone have a solution for this problem... i really do't want to reinstall my system to vistal or xp >_<
    Bestregards,
    Jaron

    Support for Windows 7 is not available yet. The only OS' that are supported are Windows Vista (32- and 64-bit)/XP/2000.
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • Mobile module modbus I/O Server

    Hi,
    Is it possible to establish a communiccation with modbus protocol between the PDA (master) and the slave device via WIFI connection?
    I like to do this with configuring the I/O Server, not with the modbus library.
    Best regards,
    Zdenko.

    Hello,
    I am sorry to give you a negative answer to your question.
    I have LabVIEW Mobile module 2009 and DSC  and a PDA target does not support I/O Server.
    I have also installed modbus library, but some functions and proprieties under library's vi s are not supported under mobile target.
    Probabily you could develop very low level code for mobile to implement modbus server, but it's very complicated.
    Regards,
    Emil

  • How to call a remote capable function module?

    Hi all,
    I want to call a bapi from a R/3 that is not available in the current system were i have my WebDynpro Abap application.
    So, i called the wizard "Service Call".
    In the Select Service step i have to input the destination and Function Module and
    Before i specified an RFC destination .
    The wizard cannot find the function.
    I read the Note:
    The function module must exist in the current system! The wizard does not support to call a remote capable function module that does not exist in the current system.
    The question is :
    How can i call remote capable function module?
    Thanks,
    Ari

    Hi,
    this link might help you : <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/22/0424ba488911d189490000e829fbbd/frameset.htm">rfc in abap</a>
    grtz
    Koen

  • Calling skype to a mobile phone outside the origin...

    I have a portuguese phone and I am abroad - in Andorra.
    If someone calls me from skype, which rate will be applied? From Portugal to Andorra, or From Portugal to Portugal?
    And what about my Mobile Phone, will I have to support roaming costs?
    Thank you.
    M
    Calling skype to a mobile phone outside the original country

    your partner's mobile is registered in the UK
    calls forwarded from Skype to that UK number are covered (as you know)
    as is, forwarded calls would still be going to the UK number, and he would pay roaming charges from his mobile carrier for the priviledge of answering these calls while abroad (iow, has nothing to do with Skype)
    if he got a local SIM for his mobile phone while abroad, then Skype could be forwarded to that number for free if he added a Skype subscription that covers SkypeOut calls to the number associated with that local SIM (in your example this would be Unlimited US/Canada sub)
    Regards,
    Neil

Maybe you are looking for

  • While creating customer master  i am getting the Communication error

    Hi experts, while creating customer master  i am getting the  Communication error with the external tax system (VERTEX_MS0018)    please tellme how to solve this issue Regards, Anil prasad Edited by: prasadanil on Sep 16, 2011 12:52 PM

  • Iomega external hard drive problem

    I'm not sure if this is the correct forum to post this but I purchased an iomega external HD off the apple.com site to use during travel (I was assuming it could be used as a larger capacity flash drive of sorts, and intended to transfer my files fro

  • /Library/Preferences/loginwindow.plist being ignored by system

    Here's one that I've not seen anyone else report. I've been creating a system image of OS 10.4.5 and every time I lay the image down and log in using any user account, the items entered into the global loginwindow.plist file are being ignored. To put

  • Clairgorm

    I am trying to move up from flex 1.5 to 3 Is new release clairgorm framework planned for flex 3 (last one I saw was 2.1) I really like that framework , now it is from Adobe labs Sould I use 2.1 version for flex 3 etc... I will appreciate any comments

  • IPhoto/Photoshop problem

    I recently had to do an archive and install to get away from the dreaded 10.4.11 update and I now have a problem and I don't know whether it's with iPhoto, Photoshop or the OS. I have my iPhoto set to open in Photoshop CS and prior to the update it a