How to give input to 3d surface interms of cylindrical coordinates(r,theta,z)

hi,please let me know how to give input to 3d surface interms of cylindrical coordinates(r,theta,z)how to give input to 3d surface interms of cylindrical coordinates(r,theta,z)

Hi,
This is the functions you should be using:
Also, please have a look at the NI Example Finder, i think the 1st and the 4th example will be of interest to you.
Hope this helps...
.......^___________________^
....../ '---_BOT ____________ ]
...../_==O;;;;;;;;_______.:/

Similar Messages

  • How to give input parameter to application form through se38 program?

    Hi all,
    How can i call my application form from within my se38 program?
    is there any way then please tell me?
    and how to pass input parameters to application form through se38 program?
    Thanks and Regards,
    Arpita.

    Hi you can pass the parameter using application program. You can pass the value using the interface of the function module given below.
    parameter p_matnr type  mara-matnr.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = gc_smart_form 'Name of ur smart form
          variant            = ' '
          direct_call        = ' '
        IMPORTING
          fm_name            = lv_fmname
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc NE  0.
        MESSAGE ID sy-msgid TYPE 'E'
                          NUMBER sy-msgno
                            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    CALL FUNCTION lv_fmname
    EXPORTING
      control_parameters         = gs_ssfctrlop
      output_options             = gs_ssfcompop
      user_settings              = ' X'
    **---This is where u can pass ur paramter to the smart form*
      matnr                           = p_matnr.
    called from batch job
    EXCEPTIONS
    formatting_error           = 1
    internal_error             = 2
    send_error                 = 3
    user_canceled              = 4
    OTHERS                     = 5            .
    Thanx and hope this would help.
    Regards,
    Aruna
    Edited by: Aruna Kumari Chekka on Dec 12, 2008 6:24 AM
    Edited by: Aruna Kumari Chekka on Dec 12, 2008 6:29 AM

  • How to give input on selection screen

    hi all,
    i want to provide text to thr report on selction screen
    i.e for example i have to write the text 'not valid reason for it ' on selction screen
    how do i write it ?
    kindly let me know
    thanks in advance

    Hi Deepthi,
    Please go thru the following code.
    SELECTION-SCREEN BEGIN OF LINE.
      PARAMETERS cg1 RADIOBUTTON GROUP CTU.  "create session
      SELECTION-SCREEN COMMENT 3(20) TEXT-S07 FOR FIELD cg1.
      selection-screen position 45.
      PARAMETERS cg2 RADIOBUTTON GROUP  CTU.     "call transaction
      SELECTION-SCREEN COMMENT 48(20) TEXT-S08 FOR FIELD cg2.
    SELECTION-SCREEN END OF LINE.
    You can Give text for a particular screen element.
    You can set the position of the text as well.
    U should make use of events like AT SELECTION-SCREEN for getting the input data back to the report
    Thanks,
    Lakshman
    Edited by: Lakshman N on Dec 4, 2008 2:52 PM

  • How to give input parameter to Bapi when executing a method.

    Hi All,
    I have 1 input field and 1 button.I've defined a model node and inside that model attribute in my view.If I enter something in the Input field the value should go to the particular model attribute I defined.How to pass that input parameter.I have a action like this....
    public void onActionGetDateDetails(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionGetDateDetails(ServerEvent)
        wdThis.wdGetGetDateDetailsCustController().execute_Bapi_Get_Date_Details("");
    // while executing the above method I have to pass the input parameter typed in the input field.
    Structure of my context :
    Bapi_Date_Details
    >Network List(Model Node)
                                          |
                                          -->Network (Model Attribute)
         //@@end
    Help me to solve this.
    Thankx in advance.
    Regards,
    Karthick.K.E

    Hi Karthick,
    You can associate an input field's value to a BAPI in two ways:
    1) binding the input UI element's 'value' directly to the BAPI's input attribute that you want to set. This is the methos Noufal suggested. In this method, make sure you initialize the attribute through the following lines of code in the doInit() method, else, the input field will be disabled.
    <b><Bapi_name>Input input = new <Bapi_name>Input();
    input.set<Attribute_name>(new <dataType>);</b>
    2) The second method is settting the input's 'value' to some other attribute(say 'abc') and giving this value to the input parameter just before calling the RFC.
    input.set<Attribute_name>(wdContext.currentContextElement.getAbc());
    Hope this helps,
    Best Regards,
    Nibu

  • How to give input to an external system applicatio​n

    i have an application file.i need to control the inputs of that application through labview 8.5 automatically. is there any suggestions for that one?
    Regards
    Naresh G

    Hi nk0435,
    It sounds like what you want to achieve is Inter-Application Communication; In other words, having a LabVIEW VI's Front Panel communicate with Windows Media Player and control the buttons.
    You can acheive Inter-Application Communication using ActiveX. A brief article on this can be found here; You may also want to look at the Wikipedia article on ActiveX here.
    With regard to communicating with Windows Media Player through LabVIEW, there is some very appropriate example code here.
    I hope this helps,
    Josh E
    Applications Engineer
    National Instruments UK & Ireland

  • How to give input to the vi references

    I'm using vi server to call sub vis.Here by i attached the code.I want to pass one array control also ahile calling the vi.How to do that.
    Attachments:
    main1.vi ‏68 KB
    Horizontal_bar.vi ‏139 KB

    Thank u very much.
    --- Please don't call me "u". The word is "you".
    Whether can i use set control value in the case of call by reference node.
    When you CALL BY REFERENCE, you wire the terminals just as if you were calling it conventionally. Look in frame 2 of my demo.
    Also please clear me whether using run continously is an efficient mode or putting the login in a while loop.
    I have no idea about your "login", but "run continuously" is not a good idea for a finished program. It's intended for debugging, and testing subVIs, but not as a way of operating. For one thing you can't use it in a built application.
    If you need to coordinate several VIs, you need a global b
    oolean variable, called PROGRAM RUNNING" or something.
    Set it TRUE first thing, when the program starts, before you launch all the parallel VIs.
    Set it FALSE when the user clicks the QUIT button on the main panel.
    Each independent loop should check the value of this global and stop if it is TRUE.
    For making an exe file.which is the better way either making the exe of main appln or making exe of library which has alltogether all subvis."
    The library method is only useful if the library can be used by more than one main application. If you have one main application, then use the everything-in-one-file approach - it's easier on everybody.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • How get selected data from oracle data as per give input

    sir i use Sun Java Studio Creator with oracle 10g
    my direct want user give input through both listbox , textbox or string variable
    how i pass this input in sessionbeen query and page give data in table as per user need
    please give me step and code
    this is urgent
    thank's

    You would get hierarchical data from a functrion in the same way as you would any data.  Create a function returning a cursor and then use your SQL statement to open the cursor.  Very simplistically:
    Create Function My_Func Return Sys_Refcursor As
       l_cur Sys_Refcursos
    Begin
       Open l_cur For
          'select EMPNO,ENAME,SYS_CONNECT_BY_PATH(ename, '/') "Path"
           from EMP
           start with MGR is null
           connect by prior empno=mgr';
       Return l_cur;
    End;
    Then, whatever calls the function would walk through the cursor an do whatever.
    Jhn

  • In BSP how to give the input field as mandatory?

    Hi friends,
    In BSP how to give the input field as mandatory?
    In BSP i want to validate the input field (example checking the material no is valid or not)
    if this material no doesnot exit means i want to pass error message.What is the code for that.
    Moosa

    hi
    try this
    in LAYOUT
    <htmlb:inputField id = "vname"  disabled = "False" value = "<%= v_visitor %>"/> <font color="red" size="2"><b><%= page->messages->assert_message( 'vname' ) %></b></font></td>
    in DO_HANDLE_EVENT
    in oninputprocessing
    CLASS CL_HTMLB_MANAGER DEFINITION LOAD.
    IF event_id = CL_HTMLB_MANAGER=>EVENT_ID.
      DATA: event TYPE REF TO CL_HTMLB_EVENT.
      event = CL_HTMLB_MANAGER=>get_event( runtime->server->request ).
      IF event->name = 'button' AND event->event_type = 'click'.
        DATA: button_event TYPE REF TO CL_HTMLB_EVENT_BUTTON.
        button_event ?= event.
      ENDIF.
        case event->id.
            when 'select'.
               if v_visitor = ''.
                 page->messages->add_message(
                 condition = 'vname'
                 message   = 'Visitor Name can not be blank'
                 severity  = page->messages->CO_SEVERITY_ERROR ).
              ELSE.
                    here u can write ur when ur field getting filled
            endif.
         endcase.
    endif.
    give marks if it is helpful
    thanks

  • How to give error message for the screen element text field when wrong i/p

    How to give error message for the screen element text field when wrong i/p
    when wrong input given
    eg. 
    I have a text box with SBOOK-CARRID
    so when user give wrong entry in text box i.e LG
    then I should give some error stating that the the input is invalid or not available ,
    now it showing the error of standard messages,
    i want manual message to be displayed when error comes.
    Thank you,
    Regards,
    Jagrut Bharatkumar Shukla

    Hi all,
    Thank you for your valuable reply,
    but the thing is that its a screen field,
    i.e text box not a selection screen
    i created in screen layout
    with name sbook-carrid
    now i want to get error message display if wrong i/p is given
    thank you.
    Regards,
    Jagrut bharatkumar Shukla,

  • How to pass input value to the IN parameter in a function

    Hi ,
    I'm new to pl/sql programming.
    The below function is used inside a package and the package is invoked in visual studio.
    The function uses 2 input parameters.
    Out of which 'in_report_parameter_id' value comes thru job processor service 's job request.
    The second IN paramter values are hard coded in the function.
    I'm not able to understand this.
    If the values are hard coded , how to make sure that only the hard coded values are the right ones?
    Please anyone could explain to me?
    I really dont have good idea about how to pass INPUT parameter to the functions or procedure
    Is there any nice document which could give me good understanding about what are the ways or types we could pass values to the input parameter in subprograms?
    thanks in advance.
    CREATE OR REPLACE FUNCTION get_class_text_str
         in_report_parameter_id IN NUMBER,
         in_which                IN VARCHAR2 DEFAULT 'SELECT'
    RETURN VARCHAR2
    IS
             end_text            VARCHAR2 (50)   := '';
             my_class_text_str  VARCHAR2(10000) := '';
             my_class_value_str VARCHAR2(10000) := '';
         CURSOR class_text(c_1_text VARCHAR2, c_2_text VARCHAR2) IS
         SELECT c_1_text || report_parameters.report_parameter_value
                               || c_2_text
                               || report_parameters.report_parameter_value
                               || '" '
          FROM report_parameters
         WHERE report_parameters.report_parameter_id     = 3690
           AND report_parameters.report_parameter_group  = 'CLASS'
           AND report_parameters.report_parameter_name   = 'CLASS'
    GROUP BY report_parameters.report_parameter_value
    ORDER BY CAST(report_parameters.report_parameter_value AS NUMBER);
    BEGIN
         IF (in_which = 'SUM') THEN     
              OPEN class_text ( 'SUM(NVL("Class ', '", 0)) "Class ' );
         ELSIF (in_which = 'PERC')THEN
              OPEN class_text ( 'ROUND((("Class ', '" / "Total") * 100), 2) "Class ' );
              end_text := ', DECODE("Total", -1, 0, 100) "Total" ';
         ELSE
              OPEN class_text ( 'SUM(DECODE(bin_id, ', ', bin_value, 0)) "Class ' );
         END IF;
         LOOP
              FETCH class_text INTO my_class_value_str;
              EXIT WHEN class_text%NOTFOUND;
              my_class_text_str := my_class_text_str || ', ' || my_class_value_str;
         END LOOP;
         CLOSE class_text;
         my_class_text_str := my_class_text_str || end_text;
         RETURN my_class_text_str;
    END get_class_text_str;
    /Edited by: user10641405 on Nov 19, 2009 8:16 AM
    Edited by: user10641405 on Nov 19, 2009 8:30 AM

    This is not a design I would use, but should work if coded properly. I would probably build a reference cursor query as text and use one open fetch and close.
    You have 2 input parameters, in_report_parameter_id and in_which. I could not find where in_report_parameter_id was used in the program, but the value passed in for in_which is being used in IF logic to decide how to open the cursor. After the cursor is open rows are being fetched and eventually the cursor is closed.
    The values in_which are compared to are hard-coded. It is the programmer's job to make sure the values listed are the right values and the actions taken are also correct. Your program is assuming that if the first 2 values are not encountered the third one listed is the one you want.
    To pass input values to a procedure you merely provide the values as a literal or variable in the call, something like
    whatever := get_class_text_str(1,'SELECT');

  • Unable to Give Input for my Program in JDEV 11g(11.1.1.3.0)

    I'm using Windows 7_Ultimate -32 Bit OS with Administrator Priviliges
    I'm trying to Run The Following Program
    package appln;
    import java.util.Scanner;
    public class arr {
    public static void main(String[] args) {
    Scanner so = new Scanner(System.in);
    System.out.println("Enter a value into variableID");
    int id = so.nextInt();
    System.out.println("Variable ="+id);
    I'm getting the following errors in "Extensions" Sub window of Output window
    oracle.BC4J:
    Warning: Classpath entry D:\Oracle\Middleware\jdeveloper\jdev\extensions\oracle.jdeveloper.junit\junit4.5\junit-4.5.jar not found.
    oracle.xsqldt-ide:
    Warning: Classpath entry D:\Oracle\Middleware\jdeveloper\jdev\extensions\oracle.jdeveloper.junit\junit4.5\junit-4.5.jar not found.
    Unknown Source: "Error: Field {0} of analyzer {1} references undefined bean {2}
    The MAIN purpose of the program is to Accept input into variable named id and display to output.
    Program Compiled Successfully but while the program is running,
    Out put is "Enter a value into variableID"
    And i'm unable to give input i.e unable to place cursor to give input
    Also i've configured the Input Settings as Mentioned in the BLOG at "http://blogs.oracle.com/shay/2008/02/enabling_user_input_when_runni.html"
    Even though the same thing thing is being repeated
    But when i've run the program in NET BEANS IDE 6.9.1, the program is compiled and runned well.

    John Stegeman WROTE: " Any way to avoid what, exactly?"
    I mean that every time we need to insert the cursor into INPUT field using mouse then input the value and press enter.
    But for large input's it becomes tedious to each time place the cursor in Input field.
    SO i meant to avoid this.
    How can i avoid this.
    Also you've mentioned me to run program's out of JDEV, if i do so i will be mising the Beauty and Advanced Capabilities of "ORACLE JDEV 11G".
    So i can't use any other IDE Than JDEV.
    Also can we Modify the way JDEV prompts for input's rather than this INPUT Field i.e by enabling the user input field for every program.
    If there any, please mention.
    Thanks for help in advance :)
    Edited by: Tejaswi.B on Jan 22, 2011 11:30 PM

  • How to give out a status message indicating the number of fields selected

    Hi experts,
    I hope some one might have done what I'm trying to do. Could some one please show me how to give out a status message saying for example how many fields have been give out(or selected) in the t_ouput in an alv grid? Is there a FM that could do this? I mean like giving the FM the t_output and it will show a status message with the number of fields selected?
    Thank you for your input.
    Nadin
    Message was edited by:
            nadin ram

    Hi Ram,
    Write this code,
    Message 'Select Only Ten Fields' type 'I'.
    It displays The Message in Message Box.
    Or if you want the Error Message means,
    Message 'Select Only Ten Fields' type 'E'.
    Thanks,
    reward If Helpful.

  • How to give the length , cardinality and format when creatin a data type?

    Hi,
    I am new to XI and i wish to know how to give the cardinality ,format and length when creating a data type .Also please let me know how to give the following?
    cardinality --repeating and required
                      non repeating , optional
    thanks and regards

    When you are defining the elements of the datatype there are columns where you can do what you need:
    <b>column type</b>: here you choose the type of data of the element
    it can be a standard type or a user defined one (if you click one time only it should appear an icon in the right for input help: click there and choose the type you need)
    <b>column occurence </b>: in a similar way of column type here you define the cardinality of the element (min occurence and max occurence)
    setting min occurrence: 1, max occurrence 1 or unbounded --> required
            mmin occurrence 0, max occurrence 0, 1 or unbounded --> optional
    about the attributes there are directly the choice between required or optional.
    <b> column details </b>: here you define the length of the  element if it is a string or a lot of other things if the type is a different one.
    I hope this will help you

  • How to give command line arguments

    does anyone help me out in how to give command line arguments after run my program
    m using netbeans6.0.1

    If you want your program to take console input while it's running (as opposed to command line arguments, which are passed once, when you start your program), you can wrap a BufferdInputStream or a Scanner around System.in.
    [http://java.sun.com/docs/books/tutorial/essential/io/index.html]

  • HT4437 Trying to use airplay from my iPad to my TV.........when airplay code comes on screen how do I input the number on my iPad?

    I am trying to use my iPad with Airplay on my TV.  When I attempt to link up with TV a code appears on the screen.  Where and how do I input the code?

    Setup Apple TV with iPad
    1. Setup Apple TV
    (a) Connect cables and power cord
    (b) Turn on TV and select Input
    (c) Configure Apple TV
    2. Setup Home Sharing on iPad
    Settings>Music/Video>Home Sharing
    3. Setup Home Sharing on Apple TV
    Settings>Computer>Turn on Home Sharing. Enter Apple ID and Password
    4. Pair Apple TV with Remote Control
    General>Remotes>Pair Apple Remote

Maybe you are looking for

  • Can we add new Payment means in SAP Business One Payments

    Dear Experts, Can we new Payment means in SAP Business One Payments? Currently, I am having 4 Payment means as Cash, Cheque, Bank Transfer and Credit Card. I need one more Payment means as Coupons. These are the Discount coupons which will be issued

  • Financial Reporting Sorting with page dimensions

    I had a report that was sorting account by description, in ascending order. However, then I changed it and added the Entity Dimension into the Hierarchy and it removed the Sorting. I cant get it to sort again. Is this a function of FR that if there a

  • Phone froze and now stays on white htc screen.

    My phone froze earlier and i couldnt turn it off or do anything so i pulled the battery and now when i power it up it goes straight to the white htc screen and stays there, it wont do anything else, what can i do?

  • Modify the index.html to another page

    Is there a way to change the index.html page (always the first to the left in plan mode) to another page? I want the Home to be the index because I have a graphic instead of text so each time people click on the link there are redirected to the home

  • My iPad 2 WILL NOT complete / finish sync after update of 7.1

    I have tried syncing my iPad 2 several times and even left it overnght to complete the sync, but it gets hung up at "Waiting for changes to be applied" which is the last phase of the sync.  I have restarted my Mac Book and my iPad 2 TWICE and tried r