More than one Input field [Parameter] in a single row on Selection-Screen.

Hi All,
I am having one scenario where i need to create 6 input fields on selection screen. 3 input fields in first row and remaining 3 input fields on the second row. So will you guys send me some sample code how to do this.
Waiting for your reply.
Regards,
Santosh

Hi Santhosh,
check this snippet for parameters.
SELECTION-SCREEN SKIP 3.
SELECTION-SCREEN BEGIN OF BLOCK calc
                    WITH FRAME TITLE text-001 NO INTERVALS.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS:
  p_param1(3) type c,
  p_param2(3) type c,
  p_param3(3) type c,
  p_param4(3) type c.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK calc.
check this snippet for select-options.
SELECTION-SCREEN SKIP 3.
SELECTION-SCREEN BEGIN OF BLOCK calc
                    WITH FRAME TITLE text-001 NO INTERVALS.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN :
PUSHBUTTON 20(3) b1  USER-COMMAND b1,
PUSHBUTTON  29(3) b4  USER-COMMAND b4,
PUSHBUTTON  38(3) b7  USER-COMMAND b7,
PUSHBUTTON  47(3) pm  USER-COMMAND pm.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK calc.
Hope this would help you.
Regards
Narin Nandivada.

Similar Messages

  • How to input more than one currency field into the transfer rules?

    hi experts,
    how to input more than one currency as well as unit fields in transfer rules, when i am giving two currency fields in flatfile the same structure could not able to get in transfer rules ( 0currency).
    pl give me the procedure to input more than one currency field.
    thanks & regards
    venkat

    Hi Venkat,
    For example - for amount kf - if you have 0currency as ref object and included in transfer rules and for other kf - create a Zcurr object and try to include...hope it works.
    Thanks,Ramoji.

  • How to include more than one input ready rows in analyzer

    Hi Gurus,
            I have a requirement that, I need to have more than one input ready rows at the end of the query output in analyzer.
       Normally it will show only one row as input ready at end of the query result in any manual planning analyzer., But my requirement is to have multiple input ready rows in analyzer. Is it possible in workbook/analyzer?.
    Thanks,
    V.Senthil

    Hi Senthil,
    Have a look at the below thread.
    How to add new rows for input ready query in BEx analyzer
    Regards,
    Venkatesh

  • Simultaneously read more than one input and generate output

    Is it possible To simultaneously read more than one input and generate outputs depending on these inputs? If this isn't possible what is the best way to go about making some sort of timed loop that will read an input, read the next input, decide whether or not to output and so on. Hope someone can help. Thanks.Message Edited by Esmith13 on 05-25-2005 01:36 PM

    Hi,
    You should look at the synchronized examples for analog input and output that can be found in the example finder under:
    Help>>Find Examples>>Hardware Input and Output>>DAQmx>>Synchronization>>Multi-Function
    These will get you started to being able to handle multiple tasks at the same time.
    I hope this helps. Have a Great Day!
    George

  • Using more than one input device at the same time

    Is it possible to use more than one input device at the saem time in logic express. For example I have a fire wire input device and a usb input device can I get Express to recognize both of these at once and so have a total of 4 ins which would be great since Im transfering tracks off my ADAT and it would be less track to have to line up.
    Thanks

    Hi,
    yes, it should be possible by creating an aggregate device. Google for it or search this forum. There are many tutorials how to set it up.
    Have fun!
    Fox

  • How to make an indicator takes more than one input

    Hello,
    I want to know how to make an indicator ( like gauge for example) response to more than one case strrcuture result. In other words, how the indicator can take more than one input and move based on different input values ( the arrow of the gauge moves to different angles basesed on the logic structure and not only to one degree).
    Thanks in advance,
     

    YES, you got it right Coastal !
    This is what i want to do,
    I dont know how to establish this output in the software, i am still learning LabVIEW.
    I put a merge block to join the outputs but it didnt work.
    check it in the attached VI file.
    I am sure it is an easy thing but I dont know how to implement it.
    Any help you provide is appreciated,
    Best wishes 

  • More than one input to waveform graphic

    We have x-axis represent for time and y-axis for amplitude of the signal... How can we give in more than one input to y-axis so we can monitor all signals
    (about 4 signals I need) on the same graph?
    Thank you

    I'm just a begineer myself, but this is how I've accomplished this task in the past.
    First of all, I was receiving my data as a 1-D array of waveform data. I wired this data to a 'build array' function inside a 'for loop' where I then spliced it into a 'build waveform' to combine it with a time value from the waveform data. I essentially just rearranged the data to a form that could graph all data simultaneously. The attached vi might help my explanation.
    There is probably an easier way.
    Attachments:
    multigraph.vi ‏21 KB

  • How to add more than one input arguments to the tpcall

    Hi
    Can any one know how to add more than one input arguments in the tpcall using WTC (Jatmi)?
    Par example, I have un service Tuxedo getConsoClient(char* cli_id, char* type)
    To call this service, I'm using tpcall("getConsoClient", dataIn, 0);
    here, I did't know how to add two parameters in the TypedBuffer object. I'm new to WTC.
    Any hints will be greatly appreaciated.
    Advanced thanks

    Thanks for you help. But in java Jatmi, I have lot of problem to convert array into TypedBuffer or TypedString. See below code, I'm tried using vector or tableau etc..
    But I have always same erreur. :(
    public void getClientInfo() {
         Context ctx;
         TuxedoConnection myTux;
         TypedString numinst = new TypedString("1");
         TypedString idClient = new TypedString("1003");
         TypedString[] dataIn = {numinst,idClient};
         //TypedString dataIn = new TypedString(numinst+"\0"+idClient+"\0");
         Vector input = new Vector();
         input.add(0,numinst);
         input.add(1,idClient);
         Reply rpy = null;
         try{          
              System.out.println("getClientInfo called : " + dataIn);
              TuxedoConnectionFactory tcf;               
              ctx = new InitialContext();
              tcf = (TuxedoConnectionFactory) ctx.lookup("tuxedo.services.TuxedoConnection");
              myTux = tcf.getTuxedoConnection();          
              System.out.println("About to call tpcall cnx = "+myTux);
              rpy = myTux.tpcall("LireInfoCli_SE",(TypedBuffer)dataIn, 0);          
              System.out.println("tpcall successfull!");
              TypedFML32 typ = (TypedFML32) rpy.getReplyBuffer();
              System.out.println("Reply Type = "+rpy.getReplyBuffer().getType());
              System.out.println("Reply toString = "+typ.toString());
              while(typ.Fiterator().hasNext()){
                   System.out.println("Reply toString = "+typ.Fiterator().next().toString());               
              myTux.tpterm(); // Closing the association with Tuxedo
         }catch (TPReplyException tpx) {
              // Could not get the tuxedo object, throw TPENOENT
              System.out.println("TPReplyException perrno = " + tpx.gettperrno()+" DETAILS "+tpx.gettperrordetail()+" getLocalizedMessage "+tpx.getLocalizedMessage()+" "+tpx.getCause());
              tpx.printStackTrace();
         }catch (TPException tpx1) {
              // Could not get the tuxedo object, throw TPENOENT
              System.out.println("TPReplyException perrno = " + tpx1.gettperrno()+" DETAILS "+tpx1.gettperrordetail()+" getLocalizedMessage "+tpx1.getLocalizedMessage()+" "+tpx1.getCause());
              tpx1.printStackTrace();
         }catch (NamingException ne) {
                   // Could not get the tuxedo object, throw TPENOENT
                   System.out.println("Could not get TuxedoConnectionFactory : " + ne.getMessage());
                   ne.printStackTrace();
         }catch(Exception e){
                   System.out.println("Exception in getClientInfo ->"+e.getMessage());
                   e.printStackTrace();
         return;
    }

  • More than one description Field

    Hi,
    Is it possible to have more than one field that can stores more than 255 chars?
    currently we have just one i.e. the "description" field at the bottom.
    There are different fields which store some data which could go above 255 characters.
    I don't want to use Notes.
    does anyone have any clever ideas?
    Thanks,
    Royston

    Thanks for your suggestions!
    We have 6 fields on Activities which are supposed to contain some text about the activities, this is easily above 255 chars. We may also have to report on these.
    This happens for only two types of activities, for the others we don't have these 6 fields.
    The thing is we need that text to be tied up to those particular fields, so we can report on them if needed.
    Thanks,
    Royston

  • More than one db field displayed in one table field

    Hi,
    I want to create a report in which in the last column there is displayed more than one result, because to each name there is more than one result.
    The client wants us to display the results in the same line with the name and not one result and one name, and so on.
    I hope you can understand my question.
    I'm a newbie with apex and so I don't know how to create it.

    If it is ok to show the results for a name in one and the same column: Create a function to get the results for a name and use that in your query:
    SELECT name, get_results(name) FROM yourtable
    Otherwise you have to "pivot" your table, see these AskTom entries on how to do that:
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:124812348063
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:15151874723724

  • Can you have more than one alert at a time show up on the lock screen?

    When i recieve a new message, this shows up as an alert on the lock screen when my phone is locked, as its supposed to. However, if a new alert comes through before i open the previous one, only the most recent one will appear on the lock screen. Is there anyway to set it so multiple messages can be displayed on the lock screen at once?

    Yes, you may have more than one "single" subscription, with the photography special counting as a single
    Cloud Plans https://creative.adobe.com/plans
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html

  • More than one Follow On documents for a single shopping cart

    Hi All,
    How can we determine if there will be more than one follow on document created for a single shopping cart.
    One reason could be if shopping cart items have different source of supply.
    What could be the other reasons. Also is there any way by which we can debug and find out the number of follow on documents created for a single shoppining cart.
    Thanking you all in advance.
    Thanks and Regards
    Manoj

    Hi  Manoj,
    <i>"Also is there any way by which we can debug and find out the number of follow on documents created for a single shoppining cart."</i>
    There's a FM to get all the follow on documents related to the SC and all the relations per item... use <b>BBP_PD_SC_GETDETAIL</b> and retrieve the <b>E_HEADER_REL</b> for the SC relations, and the <b>E_ITMLIM_REL</b> for each <b>item relations</b>.. there you will see:
    OBJECT_ID_A -> OBJECT_ID_B
    what it means is the relation between a SC and the PO, or the SC with a BID... you can identify the object types by taking a look in the 'BUS...'
    OBJTYPE_A -> OBJECTTYPE_B
    SC -> BUS2121
    PO-> BUS2201
    BID-> BUS2200
    etc...
    I hope this can help you to retrieve what you need....
    BR,
    Gerardo....
    PS: reward points please....

  • How do I use switch and case statements to fill more than one other field?

    Hi all,
    I'm new to the community.
    I'm trying to make an existing form more user friendly for my coworkers. I want to use a switch and case approach in a drop-down list field so that the selection fills two seperate other fields with different info related to the selection.
    I can already do this with one field, but if I add a second target field under an existing case the text doesn't appear there when I make the selection from the dropdown.
    Basically, I'm asking if I can do this:
    switch 
    (sNewSel){
       case "1": // Selection 1    Row2.Field1
    = "text for field 1";
        Row1.Field2 = "text for field 2"; 
        break;
    etc.
    It works if the "row1.field2" option isn't there, but not when it is present.
    Any takers?

    I'm not sure if I will be able to send you the form. There may be too much to redact.
    Would this last bit of code in the cell affect anything?
    if 
    (bEnableTextField)
    {Row2.Field1.access
    = "open"; // enable field
    Row2.Field1.caption.font.fill.color.value= "0,0,0"; // set caption to black
    That is, do I also need to repeat the same thing for the second target cell (Row1.Field2)?
    What would be possible hang ups that would prevent it from working correctly?
    Dave
    By the way, I'm not sure if my other attachment posted. I am trying again.

  • EEWB: Insert New Table with more than one key field  for BP object

    Hi Gurus,
    I want to enhance Business Partner object with a new table with two key fields, one the address number and another a sequence number, because I need to save several entries for each address belonging to a determined business partner. Something as what happens in communication data (i.e fax number)for an address.
    I have run the wizard from EEWB but the only possibility that offers you is to create only one key field for the new custom table. There is something in EEWB to achieve this, two key fields for the new table?
    Another question is the following: which Badi or BAPI must I enhance to populate my table with the corresponding address number to which the data belong to?
    I mean my custom data are filled through a table control that I have allocated within the screen sequence BUA130 (Detail Address). Thus, when a new address is added to a BP and my particular table control is populated within this address I should fill the key fields from my table (address number and sequence number) when the BP were saved. So, I must know beforehand which address number the system will assign to this new address.
    I repeat the question: which Badi or BAPI must I enhance to populate my table with the corresponding address number to which the data belong to?
    Thanks in Advance.
    Regards,
    Rosa Ferrando

    Hi Rosa,
    Please go through the following links. It will help you.
    <a href="http://help.sap.com/saphelp_crm50/helpdata/en/20/a4ffee7e0fcc4ebb7e5466d3903d38/frameset.htm">http://help.sap.com/saphelp_crm50/helpdata/en/20/a4ffee7e0fcc4ebb7e5466d3903d38/frameset.htm</a>
    <b>Reward points if it helps.</b>
    Regards,
    Amit Mishra

  • Query More Than One Input

    Having trouble and I just cannot seem to make any progress.  I think that I have tried so many things that I have confused myself and now I am unsure of where to turn.
    I have a simple query that should take a set of inputted words – run each word through the database – then based on the matching of each word – return a term and the total number of times that all the words match that particular term.
    So far, all I have been able to do is run the words through the database – but, it seems to only count or return results based on the last word from the input.
    Let’s say I input the following three words:
    Time Test True
    And have the following three terms:
    Bandit, Results, False.
    Now, if I had the following matches (i.e. time matches to Bandit 3 times, to Results 2 times and to False 1 time):
                            Time     Test      True
    Bandit              3          2          1
    Results             1          1          1
    False                2          1          2
    Given the inputs (all at one time) – I want the results to return:
    Bandit First – as it has the most matches of all words combined,
    False second – as it has the second most matches of all words combined,
    And so on.
    However, how I have it set up – it will run through all the words – but only return the results of the last word and then order the results based on that last word only.
    In this case (above) – it will run all the words – but the results it returns would be:
    False – because it has the most results for the last word,
    Then Bandit, then Results.
    Also, if the last word (True in this case) did not return a match of any kind – I would get a LIMIT error – even if the other words matched the terms in the db.
    I have tried many, many things and just seem to get nowhere.  Please help – do I add more code to the query – like if statements or do I do it outside the query?
    Code is attached.

    >Cross tabs or pivit tables will not work here
    >since I do not know how mant search terms will be entered.
    You can dynamically build the crosstab query based on the number of search terms entered.
    >As a side note - I did set up a scheme and desired results in my write up.
    OK, I wasn't sure if that crosstab you included was an example of the output or just an explanation of the data distribution. It's also still not clear how the data in arranged in the table(s).

Maybe you are looking for