Attaching a searchhelp to a parameter

How can we attach a searchhelp to a parameter or select-option?
regards
cs

Hi,
Check my code below:
AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_WERK-LOW.
  REFRESH ITEMP.
  CLEAR ITEMP.
  SELECT WERKS
         NAME1
         FROM T001W
         INTO TABLE ITEMP
         WHERE IWERK = 'M011'.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
       EXPORTING
              DDIC_STRUCTURE   = ' '
            RETFIELD         = 'WERKS'
              PVALKEY          = ' '
              DYNPPROG         = ' '
              DYNPNR           = ' '
              DYNPROFIELD      = ' '
              STEPL            = 0
              WINDOW_TITLE     =
              VALUE            = ' '
           VALUE_ORG        = 'S'
              MULTIPLE_CHOICE  = ' '
              DISPLAY          = ' '
              CALLBACK_PROGRAM = ' '
              CALLBACK_FORM    = ' '
       TABLES
            VALUE_TAB        = ITEMP
              FIELD_TAB        =
           RETURN_TAB       = T_RETURN
              DYNPFLD_MAPPING  =
         EXCEPTIONS
              PARAMETER_ERROR  = 1
              NO_VALUES_FOUND  = 2
              OTHERS           = 3
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  S_WERK-LOW = T_RETURN-FIELDVAL.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_WERK-HIGH.
  REFRESH ITEMP.
  CLEAR ITEMP.
  SELECT WERKS
         NAME1
         FROM T001W
         INTO TABLE ITEMP
         WHERE IWERK = 'M011'.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
       EXPORTING
              DDIC_STRUCTURE   = ' '
            RETFIELD         = 'WERKS'
              PVALKEY          = ' '
              DYNPPROG         = ' '
              DYNPNR           = ' '
              DYNPROFIELD      = ' '
              STEPL            = 0
              WINDOW_TITLE     =
              VALUE            = ' '
           VALUE_ORG        = 'S'
              MULTIPLE_CHOICE  = ' '
              DISPLAY          = ' '
              CALLBACK_PROGRAM = ' '
              CALLBACK_FORM    = ' '
       TABLES
            VALUE_TAB        = ITEMP
              FIELD_TAB        =
           RETURN_TAB       = T_RETURN
              DYNPFLD_MAPPING  =
         EXCEPTIONS
              PARAMETER_ERROR  = 1
              NO_VALUES_FOUND  = 2
              OTHERS           = 3
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  S_WERK-HIGH = T_RETURN-FIELDVAL.
Hope this helps.
Reward if helpful.
Regards,
Sipra

Similar Messages

  • Problem passing a table parameter in rfc call using the function control

    I try to pass a Table as parameter to a Function Module using the SAP.Functions library (part of SAP frontend controls) from a Visual Basic (VBA) program.
    The function module has been verified to work when invoked from SAP FrontEnd Function Builder.
    The SAP RFC Control is created with
    Set sapFunctions=CreateObject("SAP.Functions")
    Following code snippet shows how I attempt to set exports and add a table row before calling the function module:
    sapFunctions.Connection = sapConnection
    Set sapMaterialUpd = sapFunctions.Add("Z_SD_BAPI_SALES_DATA_UPD")
    With sapMaterialUpd
    <i>'set exports</i>
         .Exports("PA_GLPUPDLEVEL") = "S"
         .Exports("PA_VKORG") = "FI14"
    <i>'append table row</i>
         .Tables("IT_SALES_DATA_UPD").AppendRow
         .Tables("IT_SALES_DATA_UPD")(1, "VKORG") = "FI14"
         .Tables("IT_SALES_DATA_UPD")(1, "MATNR") = "W_3100"
         .Tables("IT_SALES_DATA_UPD")(1, "DATBI") = "99991231"
         .Tables("IT_SALES_DATA_UPD")(1, "DATAB") = "20041231"
         .Tables("IT_SALES_DATA_UPD")(1, "KBETR") = "2222"
         .Tables("IT_SALES_DATA_UPD")(1, "KONWA") = "EUR"
    End With
    <i>'call the function module</i>
    If sapMaterialUpd.Call() = True Then
        <i>'do something with the return tables here...</i>Else
        Debug.Print sapMaterialUpd.Exception
    End If
    The Call() returns <b>FALSE</b> and the exception is <b>"SYSTEM_FAILURE"</b>. The connection also resets.
    The local logfile that the control generates shows that an exception occurs at the point of the call:
    <i>10.02.2005  17:54:20.766 Packing Parameters for Z_SD_BAPI_SALES_DATA_UPD
    Packing Parameter PA_GLPUPDLEVEL.
    Packing Parameter PA_VKORG.
    Packing Table 0.
    Packing Table 1.
      10.02.2005  17:54:20.766 *** Calling  RFC Function 'Z_SD_BAPI_SALES_DATA_UPD'
      10.02.2005  17:54:20.986 RFC CALL status = RFC_SYS_EXCEPTION
      10.02.2005  17:54:20.986 RFC Error: RFC_IO27
      -Status:CODE=CM_DEALLOCATED_NORMAL STATUS=CM_NO_STATUS_RECEIVED DATA=CM_COMPLETE_DATA_RECEIVED ID=69415076
      -Message:connection closed
      -Internal Status:IO HANDLE=23 DRV=EXT LINE=1420 CODE=27 : GET ID=ffff LINE=861 CODE=7
      10.02.2005  17:54:20.986 Function call finished.</i>
    Seen next code snippet. If the Table object is not touched, the function call goes through without any problems:
    sapFunctions.Connection = sapConnection
    Set sapMaterialUpd = sapFunctions.Add("Z_SD_BAPI_SALES_DATA_UPD")
    With sapMaterialUpd
    'set exports
        .Exports("PA_GLPUPDLEVEL") = "S"
        .Exports("PA_VKORG") = "FI14"
        'do <b>not</b> append a table row, for testing only ;-)</b>
    End With
    <i>'call the function module</i>
    If sapMaterialUpd.Call() = True Then
    <i>    'do something with the return tables here...</i>
    Else
        Debug.Print sapMaterialUpd.Exception
    End If
    This code works perfectly when calling the function. It returns TRUE and behaves normally. The function module returns descriptive response text in a table telling that the table was empty, according to the BAPI implementation.
    So is there something special needed here <i>after</i> appending the table row and <i>before</i> making the Call to properly attach the table as a parameter for the function module?
    Can this be a bug in the SAP RFC Control? The version of the wdtfuncs.ocx is 6206.6.45.54.
    Any hints are welcome!

    hi All partner,
    who solved this problem , I meet it too and
    can't clear it.
    SAPfunc := sapfunctions1.Add('z_get_sfcs_dn_mo');    
    SAPitab := sapfunc.tables.item ('I_DNMO');
    SAPitab.appendrow;                                       SAPitab.value(1,'MANDT') := '220'; 
    SAPitab.Value(1,'VBELN') := '2150000001';
    SAPitab.Value(1,'POSNR') := '50';
    SAPitab.value(1,'MATNR') := '19-99999-00'; 
    SAPitab.value(1,'AUFNR') := '921241512001';
    SAPitab.value(1,'DEDAT') := '2005/09/09';
    SAPitab.value(1,'LFIMG') := '100';  
    IF  SAPfunc.call = true then
      begin
      end
    else
        begin
        showmessage('call fail!!') ;
        end;
    end;
    RFC source code as below
    FUNCTION z_get_sfcs_dn_mo.
    ""Local interface:
    *"  TABLES
    *"      I_DNMO STRUCTURE  ZDN_MO
      data: wa type zdn_mo.
      LOOP AT i_dnmo.
        wa-mandt = i_dnmo-mandt.
        wa-vbeln = i_dnmo-vbeln.
        wa-posnr = i_dnmo-posnr.
        wa-matnr = i_dnmo-matnr.
        wa-aufnr = i_dnmo-aufnr.
        wa-dedat = i_dnmo-dedat.
        wa-lfimg = i_dnmo-lfimg.
       modify  zdn_mo from wa.
        insert into zdn_mo values wa.  --dump at here
        commit work.
      ENDLOOP.
    T/C: ST22 error message say at
      insert into zdn_mo values wa. ---dump at here
    the sapfunc.call returns fail.
    Message was edited by: jorry wang

  • Attaching Search Help to a field

    HI All,
    Can anybody please tell me how to attach search help to a particular field??
    Thanks.

    hi
    good
    Attaching to a Table Field or Structure Field
    The search help can be used by all screen fields that refer to the table field or structure field. The search help parameters and the fields of the table or structure must be assigned to one other in this type of attachment.
    If an export parameter of the search help is assigned to a table field, the contents of this parameter are returned to the corresponding screen field as soon as the user has selected a line of the hit list in the input help. If an import parameter of the search help is assigned to a table field, the field contents are used for the value selection (see Value Transport for the Input Help).
    Normally some parameters of the search help cannot be assigned to a table field. The assignment is thus left open for some search help parameters. A constant or any other field that is searched for in the module pool when the input help is called can also be assigned to a search help parameter.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/63/1b70bfc32111d1950600a0c929b3c3/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/63/1b70c2c32111d1950600a0c929b3c3/content.htm
    thanks
    mrutyun^

  • Chnage attachment file name

    We have Oracle 10g application server ,i used rwlicent to send report as email and it works fine the only problem that i couldnot controll the attachment file name,
    is it possible to change the file name?
    any help so appritiated .
    Regards

    Are you using a distribution.xml for the emailed reports? If not you can pass destination=distribution.xml on your rwclient call.
    distribution.xml:
    <destinations>
    <foreach>
      <mail id="a6" to="[email protected]" subject="Personnel Reports">
        <attach format="pdf" name="attach.pdf" srcType="report" instance="this">
          <include src="mainSection"/>
        </attach>
        <attach format="rtf" name="attach.rtf" srcType="report" instance="this">
          <include src="trailerSection"/>
        </attach>
      </mail>
    </foreach>
    </destinations>You can change the attach.rtf to be a parameter value using &<parametername> syntax. Look here for details on using the distribution.xml file.

  • Display attachement extension field with link in report

    Hi gurus,
    Do you know how i can display in a report, an attachment extension field, with the link to the document ? It displays fine, but how can i add the hyperlink to open it directly from the report ?
    Regards,
    Simion

    Hey Ben,
    Thanks for the suggestion. I understand what you are saying, the problem is that when you have an interactive report that includes a BLOB and you use the built-in method for displaying a download link, it only gives you the option of using a text link. The method is outlined in the online help under:
    Home > Advanced Programming Techniques> About BLOB Support in Forms and Reports > About BLOB Support in Reports
    This is done by using the following syntax in the Number/Date Format of the column attribute of the BLOB:
    DOWNLOAD:CC_DOCUMENTS:CONTENTS:ID::MIME_TYPE:FILENAME:UPDATED_ON::attachment:View
    Where the last parameter is the link text. The only problem is that there is no option for substituting an image rather than the link text. That's what I'm trying to work around. Sorry if you new all of this already, but I wanted to explain what I've already done. Thanks for any help you can offer.

  • Create PO with attachement using BAPI_POEC_CREATE

    I'm using bapi BAPI_POEC_CREATE to create a PO in SRM but i also need to add an attachment.
    The bapi has parameter I_PO_ATTACH but i need an URL for the attachment, what do i need to do in order to upload the attachment and get the URL?
    Thank you in advance.
    Regards,
    Pedro.

    anyone?

  • Attach calender to a concurrent program

    Hi All,
    How to attach a calender to a parameter in concurrent program in R12, please help me on this.
    Thanks

    user13424229 wrote:
    Hi All,
    How to attach a calender to a parameter in concurrent program in R12, please help me on this.
    ThanksPlease see these links.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Calendar+AND+Concurrent+AND+Program&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Calendar+AND+Concurrent+AND+Program+AND+Parameter&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Display image for BLOB  Download link in Interactive Report

    I have a table containing BLOB data and am displaying the table in an interactive report. I would like to replace the "Download" text link with an icon that represents the MIME type of the BLOB, but can't seem to find a way to make the substitution. Does anyone know how to do this? Thanks.
    -Jeff

    Hey Ben,
    Thanks for the suggestion. I understand what you are saying, the problem is that when you have an interactive report that includes a BLOB and you use the built-in method for displaying a download link, it only gives you the option of using a text link. The method is outlined in the online help under:
    Home > Advanced Programming Techniques> About BLOB Support in Forms and Reports > About BLOB Support in Reports
    This is done by using the following syntax in the Number/Date Format of the column attribute of the BLOB:
    DOWNLOAD:CC_DOCUMENTS:CONTENTS:ID::MIME_TYPE:FILENAME:UPDATED_ON::attachment:View
    Where the last parameter is the link text. The only problem is that there is no option for substituting an image rather than the link text. That's what I'm trying to work around. Sorry if you new all of this already, but I wanted to explain what I've already done. Thanks for any help you can offer.

  • How to add event handler for outlook build in control through programmatically

    Hi,<o:p></o:p>
         There is requirement in my plug in where i need to intercept outlook native attach file method.If user attach more than specified
    exchange limit , i need to perform some operatoin. I found  that there is way to add "Onaction" method for built in control  like this " <command idMso="AttachFile" onAction="CatchExchangeWarning"/> ".
    I have to do the same thing via programmatically .I need to attach this event handler through programmatically since my add is not developed by xml file.
    <o:p>Thanks</o:p>

    Hello,
    It looks like you are interested in the
    BeforeAttachmentAdd event of Outlook items. It is fired before an attachment is added to an instance of the parent object. So, you can analyze the attachment object passed as a parameter and set then Cancel argument - set
    it to true to cancel the operation; otherwise, set to false to allow the Attachment to
    be added.
    Also the Outlook object model provides the
    AttachmentAdd event for Outlook items. It is fired when an attachment has been added to an instance of the parent object. You can also analyze the attachment object passed as a parameter to the event handler. You will not be able to
    cancel the action in that case.

  • Making a game!

    Hello i need help i need the
    code to spawn stuff so that other players mayspawn
    soldiers or tanks whatever so please i need the code for spawning movieclips .
    (im using macromedia flash 8!)

    If you can't understand what the documents say, there's no promise anyone else can explain it in terms you'll understand.  Here's the information from the help documents... which part do you not understand?
    The general format of the the attachMovie method:
         attachMovie(id:String, name:String, depth:Number, [initObject:Object])
    The arguments descriptions:
    id:String - The linkage name of the movie clip symbol in the library to attach to a movie clip on the Stage. This is the name that you enter in the Identifier field in the Linkage Properties dialog box.
    name:String - A unique instance name for the movie clip being attached to the movie clip.
    depth:Number - An integer specifying the depth level where the SWF file is placed.
    initObject:Object [optional] - (Supported for Flash Player 6 and later) An object that contains properties with which to populate the newly attached movie clip. This parameter allows dynamically created movie clips to receive clip parameters. If initObject is not an object, it is ignored. All properties of initObject are copied into the new instance. The properties specified with initObject are available to the constructor function.
    Example using all of the arguments:
    this.attachMovie("linkageName", "instance2", this.getNextHighestDepth(), {_x:100, _y:100});

  • How to find the search help for the parameters stmt in a report

    hi
    how to find the search help for the parameters stmt in a report , that is using which addition to the parameters statement

    I am not sure if I understood the question,but if you meant how to attach a search help to parameter for which a default search help is not available,you can do that by using addition  "Matchcode Object"
    Parameter: a type i matchcode object 'Search Help Name'
    Search Help name should be in single quotes.
    Regards,
    Anubhav.
    P.S: Award Points if useful.

  • TDMS digital data

    Hello,
    we are developing datalogging system for our customer and we need to save analog and digital data to TDMS file. There is probably no problem with analog data streaming. But on the other side writing digital data inside TDMS file looks like a problem... So we tried to use background streaming (DAQmx Logging) where size of file is acceptable (8xDI(1B) x 512samples + TDMS header). But we need to log analog and digital data with timestamp channel so we can not use DAQmx background streaming instead we must program our application. When we used TDMS write for digital waveform, digital data result in TDMS viewer and DIAdem is OK but file size is (8x1B for each digital channel). We also look at TDMS by DAQmx logging where internal file structure (attached file  tdms_tsdata.png) contains parameter NI_DigitalLine which is bit in data byte index (i think). Another parameter is NI_DataType = 5 (UInt8). From these two params I deduced some ideas and do some tests with unsatysfying results. Only one of tested ways was to write direct UInt8 of DI (entire port) to ensure file size ... 8xDI=1B x samples. However those TDMS can not be correctly read by TDMS Viewer as structure of digital inputs but only as number.
    Is there any chance to write manually and effectively digital data in TDMS file (like DAQmx logging)?
    Thank you in advance for any hint.
    Michal.
    Attachments:
    tdms_tsdata.png ‏40 KB

    Hi kel072,
    You are right, you can not write just as one  byte and expect Diadem, or TDMS file viewer to interpret directly as 8 lines boolean data.
    This is an expected behavior because there is no information about the number of lines.
    Therefore, I have two suggestions:
    1. You can build your custom TDMS file viewer (pack your data as u8 bit, transfer it into the TDMS file and later build your own VI that will read from TDMS, reconstruct the data in boolean 1D array and display the data). In this scenario, Diadem will still not be able to interpret them as 1 bit data.
    2. Write your data to a binary file in the format you specify. Then you can read it directly in LV or any other programming language that supports that format, or you can build a data plugin for Diadem that will allow it to interpret the data in the particular way you want ( and use it for your application). This method requires the most programming but gives you the most flexibility (packing data, display in Diadem, display in LabVIEW etc).
    Check the links bellow for more information on the data plugin:
    1. http://www.ni.com/white-paper/13803/en/
    2. http://www.ni.com/example/29822/en/

  • Using attchment capability

    HI Experts,
    I have created the custom tables in ECC6.0 and also created rfc's for getList, getDetails and attachmentPic. The DO, header node is created in NetWeaver Mobile7.1(SDOE_WB), then backend adapters are also created there based on rfcs. All are active. Individual rfcs are tested in ECC, these are able to yield data accordingly. But when I try to load data(SDOE_LOAD) & check view metadata of DO, It didn't show values in CDS Entries. I have done this all following "DOEu2019s Attachment Capability - with a Sample Application" document. Please suggest needful solution, your help would be considered accordingly.
    Thanks,
    With Regards
    Hemendra

    Hi,
    For download attachment function module the importing parameter will be the key fields of the node
    And exporting parameter will be the BLOB/CLOB field.
    In Node attributes, for the field corresponding to BLOB/CLOB, we need to select the check box corresponding to Binary memo/Text Memo. Only if those fields are marked as will DOE consider it for attachment relevance.
    Are you mapping MANUALLY field from Node Attributes and field from GetDetail Bapi Wrapper? There are different types values (Char1 and Rawstring/String).
    Did you do the mapping in tab Attachment of Backend Adapter?
    When you active, you should check in tcode SE11 the name of the table where data will be stored. It will be of following pattern SDOE_BM (and SDOE_TM in case of text memo).
    Regards,

  • SQL Command - Paramater and wildcard

    Post Author: edy80y
    CA Forum: Crystal Reports
    Hi All,
    I have successfully dumped an SQL into a 'Add Command' function and it returns the data exactly how i want it.  But now i want to add a parameter so that i dont have to manually update the date which is referenced 8 times.
    The TIME_KEY field is in this format YYYYMMDDHHMMWST (for 20/12/2007 2:30PM) = 200712201430WST
    I have used LIKE '20071220%' so it returns all rows within that one date.
    Now, i created a string parameter {?date) so i can enter '20071220' and i want to attach the wildcard (%) to the parameter.
    If i do any of the following it doesn't work:
    LIKE {?date} + '%'
    LIKE {?date} || '%'
    LIKE {?date} & '%'
    Here is the code:
    SELECT    "T1"."OBJECT_ID", "T1"."TIME_KEY",                          (SELECT     SUM("N_ANSWERED") AS "ANSWERED_ROLLING"                            FROM      "GENESYSIINET"."R_WFM_GRO_Q_NO_AGG" "T2"             WHERE      "T1"."OBJECT_ID" = "T2"."OBJECT_ID" AND "T2"."TIME_KEY" <= "T1"."TIME_KEY" AND "T2"."TIME_KEY" LIKE '20071220%'),                           (SELECT     SUM("N_ABANDONED_RING") AS "ABANDONED_RING_ROLLING"                            FROM          "GENESYSIINET"."R_WFM_GRO_Q_NO_AGG" "T2"                            WHERE      "T1"."OBJECT_ID" = "T2"."OBJECT_ID" AND "T2"."TIME_KEY" <= "T1"."TIME_KEY" AND "T2"."TIME_KEY" LIKE '20071220%'),                           (SELECT     SUM("N_ABANDONED_QUEUE") AS "ABANDONED_QUEUE_ROLLING"                            FROM          "GENESYSIINET"."R_WFM_GRO_Q_NO_AGG" "T2"                            WHERE      "T1"."OBJECT_ID" = "T2"."OBJECT_ID" AND "T2"."TIME_KEY" <= "T1"."TIME_KEY" AND "T2"."TIME_KEY" LIKE '20071220%'),                           (SELECT     SUM("N_ENTERED") AS "ENTERED_ROLLING"                            FROM          "GENESYSIINET"."R_WFM_GRO_Q_NO_AGG" "T2"                            WHERE      "T1"."OBJECT_ID" = "T2"."OBJECT_ID" AND "T2"."TIME_KEY" <= "T1"."TIME_KEY" AND "T2"."TIME_KEY" LIKE '20071220%'),                           (SELECT     SUM("N_ABANDONED_SHORT") AS "ABANDONED_SHORT_ROLLING"                            FROM          "GENESYSIINET"."R_WFM_GRO_Q_NO_AGG" "T2"                            WHERE      "T1"."OBJECT_ID" = "T2"."OBJECT_ID" AND "T2"."TIME_KEY" <= "T1"."TIME_KEY" AND "T2"."TIME_KEY" LIKE '20071220%'),                           (SELECT     SUM("N_ANS_IN_THRESH") AS "ANS_IN_THRESH_ROLLING"                            FROM          "GENESYSIINET"."R_WFM_GRO_Q_NO_AGG" "T2"                            WHERE      "T1"."OBJECT_ID" = "T2"."OBJECT_ID" AND "T2"."TIME_KEY" <= "T1"."TIME_KEY" AND "T2"."TIME_KEY" LIKE '20071220%'),                           (SELECT     SUM("N_ABANDONED") AS "ABANDONED_ROLLING"                            FROM          "GENESYSIINET"."R_WFM_GRO_Q_NO_AGG" "T2"                            WHERE      "T1"."OBJECT_ID" = "T2"."OBJECT_ID" AND "T2"."TIME_KEY" <= "T1"."TIME_KEY" AND "T2"."TIME_KEY" LIKE '20071220%')FROM        "GENESYSIINET"."R_WFM_GRO_Q_NO_AGG" "T1"WHERE  "T1"."TIME_KEY" LIKE '20071220%'GROUP BY "T1"."OBJECT_ID", "T1"."TIME_KEY"ORDER BY "T1"."OBJECT_ID", "T1"."TIME_KEY"

    Post Author: yangster
    CA Forum: Crystal Reports
    putting the parameter within a single quote is incorrect if it is a string as it will look for a litteral reference to {?date} instead of the valueLIKE {?date} || '%'that should work np as you are con catting a string to another string with 0 to infinite number of characters followingwhat db are you using?

  • Calling labview executable from teststand

    I have a labview VI that I build into an exe, and I'd like to call it from my teststand sequence in the setup - other test steps need to use its capabilities in the remainder of the sequence (main).  If it were just a VI, then no problem, the inputs would be visible to me, and I could pass them in.  Since it's an executable, though, my step is of type "Call Executable", but I don't see anywhere that it allows me to pass in the inputs it needs.  Thoughts?
    Solved!
    Go to Solution.

    What version of TestStand are you using?  With TestStand 4.0 for the 'Call Executable' step there is a line called
    Argument Expression:
    Enter your parameters to pass into your LabVIEW executable.  You will have to know which ones to pass in and in what order. I believe you can seperate the arguments by spaces.  In my attachment, I pass in one parameter to a LabVIEW executable.
    Remember, though you have to set the Build properties in LabVIEW to allow it to Pass command parameters to the application.
    Thanks,
    PH
    Attachments:
    Call Executable.JPG ‏48 KB

Maybe you are looking for