HOW TO CREATE 2 PARAMETER IN SINGLE LINE.

Please do NOT POST IN ALL CAPITALS
HI,
HOW TO CREATE TWO PARAMETERS IN A SINGLE LINE AND THE INPUT HAS TO BE DISPLAYED IT IN A POP UP BOX. THIS IS MY TRAINING TASK HELP ME TO SOLVE IT.
REGARDS,
SREERAM
Edited by: Matt on Mar 19, 2009 1:26 PM

hi,
SELECTION-SCREEN BEGIN OF BLOCK b1.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(10) text-001.
PARAMETERS:
p_carrid TYPE spfli-carrid.
SELECTION-SCREEN COMMENT 30(10) text-002.
Parameter p_connid TYPE spfli-connid.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK b1.
Radio buttons in a single line.
SELECTION-SCREEN BEGIN OF BLOCK b1.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(10) text-001.
PARAMETERS p_rad RADIOBUTTON GROUP grp.
SELECTION-SCREEN COMMENT 30(10) text-002.
Parameter p_rad1 RADIOBUTTON GROUP grp.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK b1
Thanks
Sharath

Similar Messages

  • How to create parameter with multiple selection in a query (SQ02) ?

    Hi Exports
    Do you know how to create parameter with multiple selection in a query (transaction SQ02)?
    thanks.

    Hi
    i know how to create user parameter at SQ02,
    the question is how to create multiple selection parameter?

  • How to create reports using single signon

    How to create reports with single signon and how to control the specific user access for the report.

    Hi Denis ,
    Thanks , Can u pls send a short document which contains the steps to configure the single sign on a user friendly
    document.
    regards
    Gope

  • How can create and change PCA line items.

    How can create and change PCA line items.
    Please tell me the process and t.codes.

    If you are in version < 4.7 ee then use 9KE0 tcode for passing profict center entries or trasnafer of balances from one profit center to another.
    If you are in new GL regular FI entry like FB50 will hold good for account types "S"

  • How do I delete a single line in a WAD input layout?

    Hello to all,
    I've created a standard delete function and I don't know how to "data bind" it to a single line of my web layout in order to only delete the selected line.
    Can anyone please help and explain how to do it?
    Thanks in advance for your help.
    Best regards,
    Francesco

    Hi Francesco,
    have never done this before using a delete function but for similar planning requirements. Just give it a try with this procedure:
    At WAD you can set the behavior for each analysis item individually. If you set the "row selection" (analysis item, properties, web items parameters) for the rows to "single" or "multiple" the user can select rows (probably this is nothing new to you).
    Just imagine you have the variable "product" in the row of your query. In this case just create a variable for this characteristic. In doing so you can use the variable within your delete function or within the planning filter belonging to this function for the characteristic "product". The last step is to "link" the characteritic value(s) of the selected rows  to the planning function/filter. If you implement the planning fuction or the planning sequence in WAD you can do a data binding for the variable(s) as follows:
    Variable: (name of your variable)
    Variable type: Selection_binding_type
    Binding type: item_characteristic
    Web Item: (technical name of your selectable analysis item)
    characteristic: (name of your characteristic)
    Please keep us updated if it works, for questions just let us know.
    Brgds,
    Marcel

  • How to create tab in two lines

    Greetings,
    Created set of tabs. but they are displaying in a single line e.g Orientation Sales Day. it is apperaing in a single line and i want to display in two lines like
    "Orientation
    Sales Day"
    How i will achive this target ?
    Guide pls

    Hi,
    Looking at your example at http://apex.oracle.com/pls/apex/f?p=18686:1:561273670565801::::: posted on {thread:id=2423720}.
    /i/themes/theme_1/images/bg-tabs-r.gif image is only 35 pixel tall, so you will need to increase the height of this image.
    Similarly, you will need to increase the heights of /i/themes/theme_1/images/bg-tabs-current.gif and /i/themes/theme_1/images/bg-tabs-non-current.gif . Maybe you have to increase the height to 80 or 90 pixels. It is not going to look good on the page.
    Get yourself FF/Firebug or some such tool to inspect the HTML DOM and you will be able to see for yourself that the label of the tab is indeed wrapping with &lt;br /> , its just that the images ( and a result the display area) are not big enough to show the complete label.
    Cheers,

  • How to create parameter and control file like filename + date

    Hello there
    I am trying to create parameter and control file with following command
    in SQLPLUS
    create pfile='/u03/oradata/WEBDB/backup/initWEBDB.ora' from spfile;
    In RMAN
    copy current controlfile to '/u03/oradata/WEBDB/backup/cf_longterm.cpy';
    how can I put date at the end of filename like
    initWEBDB8jan06.ora and cf_longterm8jan06.cpy
    Thanks in advance
    Lionel

    ASM is reliable but a smart DBA is very careful. If ASM is doing mirroring this is like RAID doing mirroring. What happens if you accidentally delete one copy ... the other one disappears instantly. Not a good idea.
    With respect to redo logs you need a minimum of three groups, two members, and one thread per instance. So a 2 node cluster should, at a minimum have 12 physical files.
    Not mirroring the redo logs, assuming multiple members, is not as critical.

  • How to create a dynamic multi-line function in SQL Server

    I am attempting to create a Multi-Line Function in SQL Server that accepts a dynamic WHERE clause as a parameter. I need this so that the function can be as versatile as possible for the filter that needs to be applied. I am unfortunately getting an error
    upon creation of the function.  I don't know how to solve the problem. Can someone advise me?
    SQL:
    SET
    ANSI_NULLSON
    GO
    SET
    QUOTED_IDENTIFIERON
    GO
    -- =============================================
    -- Author:
    -- Create date: 2/3/2014
    -- Description: This multiline function will accept a generic WHERE Clause and apply it to the query for return.
    -- =============================================
    CREATE
    FUNCTIONTESTMULTILINEFUNCTION
    @WHEREvarchar(1024)
    ,@CHANGEDDATEasdatetime
    RETURNS
    @TESTTABLE
    TABLE
    IDint
    ,REVint
    AS
    BEGIN
    Declare@SQLSTRINGvarchar(4096)
    SET@SQLSTRING=''
    SET@SQLSTRING=@SQLSTRING+'SELECT
    REVS.ID, REVS.Revision
    FROM
    Select distinct result.ID, Max(Rev) as ''''Revision''''
    FROM
    Select * from dbo.BugsAll
    where
    [Changed Date] < @CHANGEDDATE
    ) result
    GROUP BY result.ID
    ) REVS
    join dbo.BugsAll BA on (BA.ID=REVS.ID AND BA.REV=REVS.revision)'
    IF
    (@WHEREisnotnullOR@WHERE<>'')
    BEGIN
    SET@SQLSTRING=@SQLSTRING+'
    WHERE '+@WHERE;
    END
    INSERT@TESTTABLE
    EXEC
    (@SQLSTRING)
    RETURN
    END
    GO
    ERROR:
    Msg 443, Level 16, State 14, Procedure TESTMULTILINEFUNCTION, Line 44
    Invalid use of a side-effecting operator 'INSERT EXEC' within a function.
    Senior Test Lead -- Microsoft

    >> Unfortunately I really need to form a dynamic query in a table valued function on the SQL SERVER. I have another tabled valued function that needs something returned as a table in order to further join the data. I am not allowed to use Stored
    Procedures in that function. <<
    You do know that real SQL programmers hate the proprietary nightmare of tabled valued functions?  This is how you procedural programmers avoid learning set-oriented declarative and functional programming. 
    Your mindset wants to write to a scratch tape or disk file (aka “tabled valued function result table”) just like you did BASIC, FORTRAN or COBOL. QL programmers do not have to materialize their data. We can use VIEW or a drive table as well as a base table. 
    >> Plus, there are occasions where I don't want to pass in a field [sic: columns are not fields] parameter or need to change a parameter list such that I don't wish the table function to filter by a particular field [sic] or other setting. <<
    What you want is a magical “Automobiles, Squids and Lady Gaga” function. An SQL programmer might write a complex VIEW then do simpler SELECTs off it. 
    >> My application pushes the WHERE clause from EXCEL to SQL to do the hard work as EXCEL is not the application in which I want to process the SQL statement and pass it via ODBC. I cannot run macros in Excel on the web.<< 
    This is a crazy language system. Usually we fetch data in SQL and then pass it to a math package, report writer, etc. We never keep logic (aka WHERE clauses) outside the database. 
    >> I am bummed about the fact that this feature doesn't work. It will up my server management costs to maintain unique tabular based functions based on WHERE clause query <<
    So stop writing those “tabular based functions”, change your mindset and start learning SQL and do it right. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Alv - how to create a broader header line?

    I'm using the 'TOP_OF_PAGE' parameter within 'AVL_GRID_DISPLAY' FM in connection with 'REUSE_ALV_COMMENTARY_WRITE' to create a Header Line for the List-display.
    My Problem is, that I really need to get a broader header with approx. 120 characters but the only structure, 'REUSE_ALV_COMMENTARY_WRITE' seems to allow is 'slis_listheader' which is only three fields broad with 80 characters.
    I need a line with 6 fields and 120 to 150 characters - how can i possibly submit that to the function module, or somehow different to 'TOP_OF_PAGE'...?
    Thanks, Clemens

    Clemens
    I think you will have to format the header yourself.
    The problem is that you need to have a pointer to the document (cl_dd_document class) so you can modify it as you want. The only way I found is to use I_CALLBACK_HTML_TOP_OF_PAGE parameter when you call REUSE_ALV_GRID_DISPLAY.
    Unortunately, the form specified in I_CALLBACK_TOP_OF_PAGE parameter for REUSE_ALV_GRID_DISPLAY FM is not being called with any parameters. Therefore can't be used to create your heading.
    Now, you need to call your FM like this:
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_HTML_TOP_OF_PAGE = 'TOP_OF_PAGE1'
    ...other parameters....
    then you will need to create that FORM:
    FORM TOP_OF_PAGE1 USING p_doc type ref to cl_dd_document.
    DATA: mytoptext(255) TYPE C.
    CONCATENATE 'This is my very long text. Probably about 140 chars long'
      'or more just to check if it all appears as is. Hopefully with a bit'
      'of luck we might have some success here.'
      into mytoptext separated by space.
    CALL METHOD p_doc->new_line.
    CALL METHOD p_doc->add_text
        EXPORTING text  = mytoptext.
    ENDFORM.
    I advise that you have a look on the original SAP FM (REUSE_ALV_GRID_COMMENTARY_SET), which is used to format your commentary (through memorised parameter DYNDOS_FOR_ALV) and based on that you can make your heading.
    If you can't use I_CALLBACK_HTML_TOP_OF_PAGE parameter then probably defining your own grid is a solution (a bit longer to implement, though).
    Hope this helps.
    Wojtek

  • How to create a "traveling route" line on a map from point A to point B!

    Can someone explained or show me how I to create a clip (it will have a background map of Europe) depicting a “traveling route” line from point A to point B. The “traveling route” line I would like to display follows a Bezier curve path; it would start from point A (as a “dash”) and progressively the dash line lengthens until it reaches point B.
    To expand my request further - can one add a plane or ship icon (image) as the start “header” (starting from point A), move along the Bezier curve path and spits out the trailing “dashes” to form the “traveling route” line?
    I have seen this done on occasions, but I’m unable to create such clip. You help is appreciated.
    I’m using Premiere 6.5 and After Effect 5.5
    You can email me at [email protected]

    I don't remember which site, but I think I have a link to a tutorial site that includes that
    Go to my Adobe notes http://www.pacifier.com/~jtsmith/ADOBE.HTM
    Click on the Tutorial section and check the various sites
    Added
    You should never post a clear email address... spammers use software to harvest such
    Put something like
    myname at partone dot com

  • How do I add new single line in a WAD input layout?

    Hello ervery one
    I had create a WAD ,and insert a input read query ,but I don't how to add a new line for this input read query on WAD
    can every one help me
    thanks very much
    regards
    wenlong

    thanks for you reply Hymavathi Yanamadala
    It is very usefull help me
    but I think there have aonther requment whether there is number  of new line can be set through a veriable that user write into,
    that it is like use it is in Analyzer's workbook
    thanks very much
    regards
    wenlong

  • How to create a linear regression line series

    I am relatively new to Flex and I am currently working with charts in the data visualization components. It has been requested that I add a linear trendline (ie, linear regression trend line) to a column chart. From what I can tell, there is no linear regression form for the mx:LineSeries. Has anyone created a linear trendline using the data visualization components in Flex, or does anyone have any suggestions on how to accomplish this?

    Nicholas @ Bime posted a solution to this sort of problem earlier this year, apparently. He created a custom component that extends the CartesianDataCanvas, and can be called as an annotation element of the chart. See the following url: http://bimehq.com/data-visualization/introducing-flex-charting-trend-line-component/
    His solution works very well, with the only caveat being if you have mutiple series on your chart, all the trendlines will be the same color, and there is no label on the lines to show which line corresponds to which series.

  • How to create the no of line items in a PO

    Hi Sir,
    Please tell me how can i restrict the no of line items to be created in a PO say 20. where i have to do that.
    Regards,
    Krishan

    Hi Krishan
    I think u can not restrict the no of line items to be created in a PO in std SAP .U take a help of the ABAP ppl . They can write a program in such a way that in the ME21N, program checks
    the number of line items copied from purchase requisition,If it is more than 10, it should issue an error message.
    Regards
    Anjali

  • How to create parameter: =Today() minus some number of days

    SSRS 2005 on XP SP2
    How does one format a date time parameter as, for example, today's date minus 7? Attempting to use:
    =Today() - 7 throws the error "Operator '-' is not defined for types 'Date' and 'Integer'
    Thanks in advance

    Note that an internal reference to another paramer yields same result. For example, datasource is an SP with a BETWEEN operator. An internal report reference to the other parameter (=Parameters!StartDate - 7) throws same error.

  • How to create elastic effect on line

    Hi guys,
    i am working on an application that i plan to use as an Lightweight IDE.
    This is a small project that i just started.
    My question ..
    i need to create an elasticity effect... like a 'line streching' effect that can be seen in one of the IDE's called BLUEJ .
    The on 'lt click' is pressed mouse pointer can strech a line and when the 'lt click' is left a line is drawn.
    im using JInternalFrame on JDesktopPane. Is it possibe to do so.
    All help will be appreciated
    Regards
    Naren

    Maybe something along the lines of detecting mouse dragged with a MouseListener, saving the origin of the mouse click and then keep drawing a line from the origin to the current location of the mouse. Probably by calling repaint() and then override the paintComponent() method to draw the line.

Maybe you are looking for

  • Installing ColdfusionMX 7 on Windows Vista

    I know Vista is relatively new, but I'm hoping some out there ca help me. I'm trying to install Coldfusion MX 7 on Vista Home Prenium edition. I'm getting an error: HTTP Error 404.3 - Not Found I tried adding the MIME Type (.cfm cfm-application/octet

  • Backing up iPad to iCloud

    I am backing up my iPad (less than 10 GB) to iCloud for the first time and the estimated time stated was 41 hrs. I turned off other devices using my WiFi and tried again and now it is 9 hrs. Is this normal?

  • ALE HR Data transfer not working

    I am trying to do a PFAL for message type HRMD_ABA. If I run without specifying anything, that is run for all infotypes as defined in the distribution model, then in the target system, most the the infotypes fail. but if I specify an Object type and

  • Showing/Hiding certain fields based on Radioset selection

    Hello all, I'm like to know whether it is possible to Show/Hide certain fields using a RadioSet selection as it is done in Forms in ADF UIX. Kindly go through this post. Showing/Hiding certain fields based on Radio Group selection kindly help me out

  • Moving music folders without loosing covers and information

    I am using iTunes mainly to manage music on my iPhone and to edit album covers/song information of my MP3s. However, I am managing my music and music folders manually in a folder system that is not part of "iTunes Preferences -> Advanced -> iTunes Mu