Function reference / documentation

Hi there,
where can I find a complete "function reference" of CR functions?
At MSDN (Microsoft Developer Network) I just found the following:
[http://msdn.microsoft.com/en-us/library/ms225339.aspx]
But there is only a description of the syntax how to use functions in CR ...
I need a "function reference" where all functions are listed and described!
e.g.
Split(inputString, delmitter, count, compare)
Can delmitter be a char or even a string, what does the compare paramter etc. OK, this is just a simple example and I can do "try and error" but this isn't the correct way of course and there are a lot of functions available in CR ...
Since VS2008 the MSDN integration of CR does not work (404 error) ...
(used VS2005 in the past)
Thanks in advance,
hfrmobile

Wow, thank you for your immediate response
We're using "Crystal Reports Basic for Visual Studio 2008" at the moment ...
If I click the "?" button in "Formular Workshop" I just get the following:
Visual Studio
Information Not Found
See Also  Send Feedback
The information that you are trying to access could not be found. Various events could have caused this error.
- Broken links
- No topic in Local Help
- No F1 Help topic available
- Online Help is not available
- Help has not been installed
- Online Help cannot be accessed because the proxy server cannot authenticate the user
To report this error, visit the MSDN Product Feedback Center.
There should be such thing at the SDN?
--hfrmobile

Similar Messages

  • NI-DAQ Function Reference Online Help, Version 6.6

    First, I saw on the National Instruments Home Page that the PDF version of
    the Function Reference Manual has been discontinued in favor of the Online
    Microsoft Help format version. I really prefer the PDF because it prints
    much nicer. Looking at the monitor as many hours as I do is unnerving and I
    find the paper relaxing. The Microsoft Help format is better for searching
    however. I would be much happier if both versions were kept in production
    by National Instruments. (And even happier yet if they gave us developers
    free hardback editions )
    Second, I was discouraged to find that v6.6 of the document (NI-DAQ Function
    Reference Manual for PC Compatibles) does not list the DAQCard-AI-16E-4
    under the
    options for "NI-DAQ Functions Listed by Hardware Product." I
    thought the DAQCard-AI-16E-4 was a popular product and I assume it still
    supports the same functions in 6.6 that is did in the earlier versions. Why
    was it left out? Can I still use the info for the same topic in the 6.5
    PDF?
    For the last part of my documentation gripes, in Appendix B for v6.5 under
    "Valid Internal Analog Input Channels" the DAQCard-AI-16E-4 is listed in the
    second block and the last block. The set of command is different for each
    block so I looked in the v6.6 which lists only the first block and I went
    with that. Is the appearance of DAQCard-AI-16E-4 in the last block on the
    v6.5 doc a typo or does it have significance?

    Don Pellegrino wrote:
    > First, I saw on the National Instruments Home Page that the PDF version of
    > the Function Reference Manual has been discontinued in favor of the Online
    > Microsoft Help format version. I really prefer the PDF because it prints
    > much nicer.
    This doc can be found on ni.com:
    http://digital.ni.com/manuals.nsf/14807683e3b2dd8f8625677b006643f0/1630a0b68738b269862567c1007a2912?OpenDocument
    > I thought the DAQCard-AI-16E-4 was a popular product and I assume it still
    > supports the same functions in 6.6 that is did in the earlier versions.
    To the best of my knowledge, yes it does.
    Regards,
    Rich Yavorsky
    NI

  • Imaq vision function reference

    Hello All,
    I am new to Lab Windows/CVI and am using the imaq vision library.
    Could anyone tell me where I can find the IMAQ Vision function reference? I have found a function reference manual at Start--> National Instruments --> Vision--> Documentation. But, all the functions described in this document are starting with img******(). I was looking for functions beginning with imaq****().
    I am sorry as it might be a stupid question but any help would be appreciated.
    Cheers, 
    Solved!
    Go to Solution.

    Hello Harmonium,
    i think what you search is under Start --> National Instruments --> Vision --> Documentation --> NI-IMAQ IO
    In this directory you found the documentation for the imaq**** functions.
    C:\Programme\National Instruments\NI-IMAQ IO\Docs 
    There are three librarys the NI-IMAQ I/O, NI-IMAQ Librarys and the NI-IMAQdx. If you can please use the NI-IMAQdx library,
    because its the newest for doing aquisition. The documentation can be found here
    C:\Programme\National Instruments\NI-IMAQdx\Docs
    best regards
    Alexander Glasner
    AE NIE

  • Function module Documentation

    Hi,
    Can anybody send me following function module Documentation.
    LOAN_CHECK_POSTING_PRODUCTTYPE
    LOAN_CHECK_POSTING_VDARL
    LOAN_READ_VDARL
    BSS_CREATE_PAYSPLIT
    LOAN_REFERENCE_READ_OBJECTID
    LOAN_POST
    LOAN_IST_SCHREIBEN
    LOAN_REFERENCE_DELETE
    LOAN_REFERENCE_ADD
    ACCOUNT_REPORT
    Thanks & Regards,
    Ram

    Hi,
    Login the system with language 'DE'.
    Goto SE37--> Give Function Module Name --> Give 'Display' --> Select "Fbausteindokumentation' (Documentation)
    Translate to English using Internet Translation Tools .In Google Language Tools are there.U use it for Translating.
    Otherwise,Just use this link for Translation:
    Select German to English option in the dropdown.
    Put the German text in first box and click Translate then it displays English version.
    http://dictionary.reference.com/translate/
    Regards,
    Padmam.

  • The InitCVIRTE function is not listed in the NIDAQ function reference online help? Why? and where can I find a description of this function?

    the InitCVIRTE function is not listed in the NIDAQ function reference online help? Why? and what does she do?and where can I find a description of this function? Can i use this function with visualc++ 6.0?

    The InitCVIRTE function is in the CVI run time engine (cvirte.dll)..not part of NI-DAQ.
    Applications written or using CVI may call this function..
    How are you running into this ?
    From the CVI help...
    This function performs initialization of the CVI Run-Time Engine. It is needed only in executables or DLLs that are linked using an external compiler. Otherwise, it is harmless.
    It should be called in your main, WinMain, or DllMain, function. The parameter values you should pass depend on which of these three functions you are calling InitCVIRTE from. The following examples show how to use InitCVIRTE in each case.
    If you are using main, your code should be as follows.
    int main (int argc, char *argv[])
    if (InitCVIRTE (0, argv, 0) == 0)
    return -1; /* out of memory */
    /* your other code */
    return 0;
    If you are using WinMain, your code should be as follows.
    int __stdcall WinMain (HINSTANCE hInstance,
    HINSTANCE hPrevInstance,
    LPSTR lpszCmdLine,
    int nCmdShow)
    if (InitCVIRTE (hInstance, 0, 0) == 0)
    return -1; /* out of memory */
    /* your other code */
    return 0;
    If you are creating a DLL, you must call InitCVIRTE and CloseCVIRTE in your DllMain function, as in the following.
    int __stdcall DllMain (void *hinstDLL, int fdwReason,
    void *lpvReserved)
    if (fdwReason == DLL_PROCESS_ATTACH)
    if (InitCVIRTE (hinstDLL, 0, 0) == 0)
    return 0; /* out of memory */
    /* your other ATTACH code */
    else if (fdwReason == DLL_PROCESS_DETACH)
    /* your other DETACH code */
    CloseCVIRTE ();
    return 1;
    NOTE: The prototype for InitCVIRTE is in cvirte.h, not
    utility.h.
    NOTE: In CVI 4.0.1, this function was expanded from one to
    three parameters. Executables and DLLs that were
    created using the one-parameter version of the function
    will continue to work properly.
    /*-------------------- Prototype ---------------------*/
    int InitCVIRTE (void *HInstance, char *Argv[], void *Reserved);
    Nandan Dharwadker
    Staff Software Engineer
    Measurement Studio Hardware Team

  • Pdf version of the NI-DAQ Function Reference?

    I'm looking for a pdf version of the NI-DAQ 6.9.1 Function Reference, is there one available? All I can find so far is the online help. thanks!

    Hi,
    I've got a feeling that the latest version of NI-DAQ FRM in .pdf format is 6.6 (file 321645e.pdf on the software / hardware PDF support library CDs).
    The Start->Program->National Instruments->Ni-daq->NI-DAQ Help is all there is, but it does contain all the relevant information.
    If you could find a program to convert a help file into a .pdf, you'll need to e-mail [email protected]
    to get their permission to do it.
    sorry.
    S.
    // it takes almost no time to rate an answer

  • Where is the reference documentation?

    Where is the reference documentation for Stage3D APIs?

    I guess you are looking for something a little more explanatory.
    Unfortunately there isn't much Adobe has published, in terms of how to use the Stage3D api. For example, there should have been something written in the following but there wasn't  (other than a somewhat strangely orphaned AGAL reference in the appendix):
    http://help.adobe.com/en_US/as3/dev/index.html
    There are, however, a number of third party articles around that emerged during the "molehill" incubator and beta development phase of the api. These have been put together by those reading the otherwise dry reference docs and coming to terms with what they meant. Marco Scabia was one of the first with some well written articles, and here are the essential two he's written for Adobe. These about as close as Adobe has come (so far) to an official dev guide on Stage3D. But they do their job well and highly recommend them:
    http://www.adobe.com/devnet/flashplayer/articles/how-stage3d-works.html
    http://www.adobe.com/devnet/flashplayer/articles/what-is-agal.html
    There are more articles you might enjoy at Marco's website:
    http://iflash3d.com/

  • Regarding function module documentation

    when iam clicking the function module documentation.it is displaying message as document function module is not available in EN.How to get the documentation in EN

    Hi Rao,
    Click on the Function module documentation in the application toolbar of function builder, it takes you to either PC editor or Line Editor, enter the corresponding documentation there and activate and come back, now activate your FM, it should work fine.
    Regards:-
    Santosh.D
    P.S. Mark usefull answers

  • 3113: Activity 'XXPONIT/233480' is missing a function reference.

    Hello All,
    I have designed a workflow in which i have to call workflow for n number of times.
    In this workflow i have taken one notification and one function . when user submits workflow, its reached to user's parent level(1). If it approves then forwarded to function. it will check whether for that parent level(1) parent is found or not. if parent is found then it will identify the parent level(2) and sets into Attribute level(1) .
    and forwarded back to notification.
    when i am trying to run this workflow am getting the *(3113: Activity 'XXPONIT/233480' is missing a function reference.) error.
    Eg. ____________Yes_______
    | |
    v Approve | No
    Start---> Notification ------------------> function ------------------> End
    | ^
    |_____________________________________|
    Reject
    I am pasting pl/sql code here: Suggest me where i am wrong:
    create or replace package body XXPO_WF_NIT_APPROVAL_PKG is
    v_user_id number;
    v_user_name VARCHAR2(15);
    v_flag_parent_exist varchar2(1);
    v_item_key NUMBER;
    PROCEDURE WF_START_PROCESS(p_user_id NUMBER) IS
    v_initiator varchar2(15);
    BEGIN
    /*To generate Unique Value for item key*/
    SELECT XXPO_NIT_SEQ.nextval INTO v_item_key FROM dual;
    dbms_output.put_line('item key ' ||v_item_key);
    /* To create Workflow Process*/
    wf_engine.CreateProcess(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    process => 'NIT_PROC');
    /* For Getting Initiator name who has initiated workflow*/
    SELECT fu.user_name INTO v_initiator
    FROM fnd_user fu
    where user_id = p_user_id;
    /*for getting next approver level user name and user Id*/
    SELECT fu1.user_name,fu1.user_id INTO v_user_name,v_user_id
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061 /*PO Test NIT Heirarchy*/
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = p_user_id/*1547*/ )));
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'INITIATOR',
    avalue => v_initiator);
    dbms_output.put_line(v_initiator);
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'ATR_LEVEL1',
    avalue => v_user_name);
    dbms_output.put_line('6');
    wf_engine.StartProcess(itemtype => 'XXPONIT',
    itemkey => v_item_key);
    COMMIT;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':No data found' || SQLERRM);
    WHEN DUP_VAL_ON_INDEX THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':Duplicate values found' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':Other Exception' || SQLERRM);
    END WF_START_PROCESS;
    --====================End of WF_Start procedure================
    procedure is_comment_null(itemtype IN VARCHAR2,
    itemkey IN VARCHAR2,
    actid IN NUMBER,
    funcmode IN VARCHAR2,
    resultout OUT VARCHAR2) is
    v_comments_fst_level varchar2(200);
    v_result_fst varchar2(100);
    v_count number;
    BEGIN
    v_comments_fst_level := WF_NOTIFICATION.GetAttrText(WF_ENGINE.CONTEXT_NID,
    'COMMENT_FST');
    v_result_fst := WF_NOTIFICATION.GETATTRTEXT(WF_ENGINE.CONTEXT_NID,
    'RESULT');
    dbms_output.put_line(v_result_fst);
    IF( FUNCMODE = 'RESPOND') THEN
    IF (v_result_fst = 'REJECTED') THEN
    IF v_comments_fst_level IS NULL THEN
    RESULTOUT :='ERROR: Comment is required while rejecting the request';
    RETURN;
    END IF;
    END IF;
    END IF;
    dbms_output.put_line(SQLCODE || ':No data found' || SQLERRM);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('is_comment_null'|| SQLCODE || ':No data found' || SQLERRM);
    WHEN DUP_VAL_ON_INDEX THEN
    dbms_output.put_line('is_comment_null' || SQLCODE || ':Duplicate values found' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('is_comment_null'|| SQLCODE || ':Other Exception' || SQLERRM);
    END is_comment_null;
    --===================================
    PROCEDURE Next_approver(ITEMTYPE IN VARCHAR2,
    ITEMKEY IN VARCHAR2,
    ACTID IN NUMBER,
    FUNCMODE IN VARCHAR2,
    RESULTOUT OUT NOCOPY VARCHAR2)
    IS
    v_count number;
    BEGIN
    --==============To initiate next approval workflow================
    IF( FUNCMODE = 'RUN') THEN
    SELECT count(fu1.user_name) INTO v_count
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = v_user_id)));
    IF v_count > 0 THEN
    v_flag_parent_exist := 'Y';
    /* To get next approver name */
    SELECT fu1.user_name INTO v_user_name
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = v_user_id)));
    --WF_START_PROCESS(v_user_id);
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'ATR_LEVEL1',
    avalue => v_user_name);
    ELSE
    v_flag_parent_exist := 'N';
    END IF;
    END IF;
    IF v_flag_parent_exist = 'Y' THEN
    RESULTOUT := 'Y';
    ELSE IF v_flag_parent_exist = 'N' THEN
    RESULTOUT := 'N';
    END IF;
    END IF;
    END Next_approver;
    end XXPO_WF_NIT_APPROVAL_PKG;
    Thanks,
    sheetal Mittal

    HI
    I believe the document that you are looking for can be found in the following location. This help file describes the NI-DAQmx Library functions, which you can use with National Instruments data acquisition and switch devices to develop instrumentation, acquisition, and control applications.
    Message Edited by jaced on 11-05-2007 12:18 PM
    JaceD
    Signal Sources Product Support Engineer
    National Instruments
    Attachments:
    NI-DAQmx C help.jpg ‏98 KB

  • If you are looking for the Project Siena Functional Reference ...

    Hello,
    If you are looking for the functional reference direct link
    http://siena.blob.core.windows.net/beta/ProjectSienaBetaFunctionReference.html
    Regards
    StonyArc

    Hope you are refering it to the actual page, which you invoke for any cfm/cfc request then yes, its extension would be .cfm/.cfc page but if you are refering it to its corresponding encoded pages from {ColdFusion10}\cfusion\wwwroot\WEB-INF\cfclasses then its extension would be .class.
    Regards,
    Kaif Akbar

  • Getting "museJSAssert: Error calling selector function: Reference Error: Web Pro is not defined".

    First off, I am not a coding person. I decided to use Muse becuse I am good with Illustrator and Photoshop.
    The sight I built: www.speedcinch.com is now getting a bunch of errors when it initially was working fine. I am using godaddy for a host and using their ftp.
    This is the error I am getting now: museJSAssert: Error calling selector function: Reference Error: Web Pro is not defined
    You can see how my sight is supposed to work at http://speedcinchcom.businesscatalyst.com/index.html
    I have no idea what to do. Please help.

    Well, if nothing else I've ascertained that it's not GoDaddy's connectivity issue, as the issue continues late into today, and it does vary a bit per the other error reports. Using FileZilla there are just a few timeouts in the log, enough to give some pause but not necessarily (according to GD) disruptive. I've checked the list of uploaded files against the Muse Export folder contents and everything is there. In fact, the site looks good, buttons work, rollovers, etc, but there are no images. Like everyone else, this has cost me time and money in the last 24 hours.
    Let's see what the good people at Adobe live chat have to say, and I'll share it with you.

  • Function references and stateful cfcs?

    Using 8.0.1
    ok, i have a happy component (example4.cfc):
    <cfcomponent output="false">
    <cfscript>
      variables.txt = "un-init";
    </cfscript>
    <cffunction name="Init" access="public" returntype="example4" output="false">
      <cfscript>
      variables.txt = "init";
      </cfscript>
      <cfreturn this />
    </cffunction>
    <cffunction name="remoteEcho" access="remote" returntype="string" ExtDirect="true" output="false">
      <cfargument name="str" type="string" required="true" />
      <cfreturn str &  "[" & variables.txt & "]"/>
    </cffunction>
    </cfcomponent>
    and I am trying to call a function reference like so:
    <cfscript>
    cfc = CreateObject('Component', 'Example4').Init();
    method = cfc['RemoteEcho']; //<- try to create function reference
    </cfscript>
    <cfdump var="#cfc#">
    <cfdump var="#method#">
    <cfdump var="#cfc.remoteEcho('bobo')#"><!--- this works, naturally --->
    <cfdump var="#method('bobo')#"><!--- failure here --->
    The problem that I am running into is that it cannot find the variables.txt private member.
    Element TXT is undefined in VARIABLES.
    The direct call works fine, however the reference acts as if it's, i don't know, a regular UDF outside of a cfc?
    Any help here, or will this just not work?
    -Jim

    As far as I know it will not work if you're accessing private
    variables because I seem to remember that the function reference is
    not tied to the cfc instance.
    Mack

  • JuseJSAssert Error calling selector function: Reference Error:'PIE' is undefined

    Since installing your new version of Adobe Muse yesterday I have not been able to get updated pages to upload to my website.  I have exported the html to my desktop and it looks right there but when I upload it to the website I get the following error message: MuseJSAssert: Error calling selector function: Reference Error:"PIE" is undefined.   I have uploaded only the updated page but then I tried uploading the whole site MANY times and it just is NOT working.  Can I go back to the prior version as I had no problems with it.  PLEASE help!  I have worked on this for two days and am tired of it and need to get my site working properly!  Thanks for your quick response!

    Whats the site URL in question? Are you uploading the site to Business Catalyst or to a third party hosting provider? Did you try uploading all site files through a FTP client like Filezilla? Is that a specific browser/version where the problem occurs?
    Thanks,
    Vinayak

  • Reference documentation for Flash9e.ocx

    Please forgive me if this has been answered elsewhere.
    When one installs the latest version of the Flash Player, the
    following file is installed and registered:
    C:\WINDOWS\system32\Macromed\Flash\Flash9f.ocx. This is a full
    fledged Windows ActiveX component (version 9.0.124.0) which Adobe
    has announced as such with the release of Flash 9. It is documented
    as an ActiveX control that can be used in Windows developement
    environments like VB, C#, C++, .NET etc. However, there is not one
    singe line of referencene documentation available explaining the
    methods, properties and events associated with this control.
    Does such reference documentation exist? If so, could someone
    please indicate how/where I can find it?
    Thanks,
    John

    Wow! Is this a difficult one?

  • Unimplemented function REPC_OR_DELETE DOCUMENTATION (line 0) error

    When I release a transport it gets status 8, when looking in the Log Display I see the message "unimplemented function REPC_OR_DELETE DOCUMENTATION (line 0) ". All objects in the request, a table definition and a generated maintenance screen are free of errors. I've also put everything in a new request and release it then, but the same problem keeps occuring.
    I can find no OSS notes on this.
    Anybody had the same problem and solved it. Or any suggestions.
    Thanks,
      Gino

    The problem is solved by installing the latest version of the R3trans.

Maybe you are looking for