Passing values to parameters in Documents using se61..

Hi Experts/Gurus,
Can we define parameters in SE61 under type "Document  class: General Text" for a document?
If so can any one please tell the steps?
Regards,
Yugesh
Edited by: Yugesh Reddy on Nov 6, 2009 8:39 AM

Hi  yugesh,
  Yes you cane create the documentation for document .
    Give the name of the document in Name field and click on create Button .
   now you can write the document and save it.
Thanks
Shambhu

Similar Messages

  • Passing values as parameters to an applet

    I would like to pass some parameters from a HTML page to an applet. I want to know which would be better in passing the values to the applet. Will java script, php, or applet be better. The HTML page has some list boxes, text field and i want to pass these values as parameters to my applet which opens in different page. The HTML page & the applet will be in the same codebase.
    Thanks

    Here's an example of what you can do in an Applet:-
    <html>
    <head>
    <title> My slide show</title>
    </head>
    <body>
    <center>
    <applet code ="Show.class" width=480 height=300>
    hspace = "10"
    vspace = "10"
    <PARAMETERS>
    <param name="leg0" value= "1: Some text for this slide">
    <param name="leg1" value= "2: Some other text for this slide">
    <param name="leg2" value= "3: text etc">
    <param name="leg3" value= "4: text etc">
    <param name="leg4" value= "5: text etc">
    <param name="leg5" value= "6: text etc">
    <param name="leg6" value= "7: text etc">
    <param name="leg7" value= "8: text etc">
    </center>
    </applet>
    </body>
    </html>
    The parameters leg0, leg1 etc stand for legend btw and can be got from the web page in an array with this;-
    for (int i=0; i<=7; i++) {
         slide=getImage(getDocumentBase(),"slide"+i+".jpg");
         legends[i]=getParameter("leg"+i);
    Where your images are labelled from slide0 to slide7. This has the advantage of everything having the same value, so if you want to use
    i++;
    everything moves to the same value ie: slide[2] will be = legend[2]
    Finally you will discover at the expense of the learning curve that
    1. This is a far more reliable way for applets to operate
    2. Depending on what you want to do javascript, perl, servlets, JSP and PHP are more robust and reliable.
    Ask the next question !!! What do you want to do? It is possible that an applet can handle it best.

  • How to pass value to select-option parameter using SET PARAMETER Command

    Hi,
        Am passing values to selection-screen fields in report RV13A004 ( used in VK11, VK12 and VK13). using below statement but material number is select-option in this report. am able to pass  MATERIAL FROM using SET PARAMETER ID, can i know how to pass values MATERIAL TO range in select-options fields using SET PARAMETER Command ??
    Passing values to parameter id
    set parameter id 'VKS' field kschl.
    set parameter id 'VKO' field vkorg.
    set parameter id 'VTW' field vtweg.
    set parameter id 'KDA' field erdat.
    set parameter id 'MAT' field matnr_from.
    Change condition price.
    call transaction 'VK12' and skip first screen.
    Thanks in advance.
    Regards,
    Balamurugan.

    Hi,
    instead of using set parameters and dden call transaction use this..........
    submit RV13A004  WITH SELECTION-TABLE rspar
    Effect
    If you specify this addition, parameters and selection criteria on the selection screen are supplied from an internal table rspar. You must specify an internal table with the row type RSPARAMS for rspar. The structured data type RSPARAMS is defined in the ABAP Dictionary and has the following components, all of which are data type CHAR:
    SELNAME (length 8),
    KIND (length 1),
    SIGN (length 1),
    OPTION (length 2),
    LOW (length 45),
    HIGH (length 45).
    To supply parameters and selection criteria for the selection screen with specific values, the lines in the internal table rspar must contain the following values:
    SELNAME must contain the name of a parameter or selection criterion for the selection screen in block capitals
    KIND must contain the type of selection screen component (P for parameters, S for selection criteria)
    SIGN, OPTION, LOW, and HIGH must contain the values specified for the selection table columns that have the same names as the selection criteria; in the case of parameters, the value must be specified in LOW and all other components are ignored.
    If the name of a selection criterion is repeated in rspar, this defines a selection table containing several lines and passes it on to the selection criterion. If parameter names occur several times, the last value is passed on to the parameter.
    The contents of the parameters or selection tables for the current program can be entered in the table by the function module RS_REFRESH_FROM_SELECTOPTIONS.
    Notes
    In contrast to selection tables, the data types of the components LOW and HIGH in table rspar are always of type CHAR and are converted to the type of the parameter or selection criterion during transfer, if necessary.
    When entering values, you must ensure that these are entered in the internal format of the ABAP values, and not in the output format of the screen display.
    Cheers
    Will.

  • Logical DB - passing values for parameters

    Hi experts,
    i writing program basing on logical DB. How can i pass default values for parameters, which are defined in a selection screen for this logical DB?
    Thanks
    Juzio

    in my program PNP is used. identify the selection screen fields. and then use it in initialization event,
    report ztest.
    tables: pernr.
    initialization.
    PNPPERNR-LOW = '12455'.
    PNPPERNR-sign = 'I'.
    PNPPERNR-option = 'EQ'.
    append PNPPERNR.
    PNPBEGDA = SY-DATUM.

  • Passing value thru parameters

    select *
    from (select b.accode,c.actitle,nvl(sum(b.debit),0) op_dr,nvl(sum(b.credit),0) op_cr
    from v_mast a, v_det b, chart c
    where a.v_type=b.v_type
    and a.vouchno=b.vouchno
    and b.accode=c.accode
    and a.VOID='F'
    and a.posted_by is not null
    and a.v_date < '01-JUL-04'
    and b.accode in (select accode from account where open='T')
    and b.accode in (select accode from chart)
    and a.v_type in ('RN','PV','CV','RV','JV')
    and b.accode = '0104002'
    group by b.accode,c.actitle
    order by b.accode )
    full join
    (select b.accode,c.actitle,nvl(sum(b.debit),0) dur_dr,nvl(sum(b.credit),0) dur_cr
    from v_mast a, v_det b, chart c
    where a.v_type=b.v_type
    and a.vouchno=b.vouchno
    and b.accode=c.accode
    and a.VOID='F'
    and a.posted_by is not null
    and a.v_date between '01-JUL-04' and '30-JUN-05'
    and b.accode in (select accode from account where open='T')
    and b.accode in (select accode from chart)
    and a.v_type in ('RN','PV','CV','RV','JV')
    and b.accode = '0104002'
    group by b.accode,c.actitle
    order by b.accode )
    using (accode)
    Problem :- The above qurey is works perfect but if use parameters instead of using fixed dates it gives an erroe ( "VARIABLE TODT IS NOT DECLARED".
    Please expedite.
    Regards,
    Hassan

    select *
    from (select b.accode,c.actitle,nvl(sum(b.debit),0) op_dr,nvl(sum(b.credit),0) op_cr
    from v_mast a, v_det b, chart c
    where a.v_type=b.v_type
    and a.vouchno=b.vouchno
    and b.accode=c.accode
    and a.VOID='F'
    and a.posted_by is not null
    and a.v_date < :fmdt
    and b.accode in (select accode from account where open='T')
    and b.accode in (select accode from chart)
    and a.v_type in ('RN','PV','CV','RV','JV')
    and b.accode = '0104002'
    group by b.accode,c.actitle
    order by b.accode )
    full join
    (select b.accode,c.actitle,nvl(sum(b.debit),0) dur_dr,nvl(sum(b.credit),0) dur_cr
    from v_mast a, v_det b, chart c
    where a.v_type=b.v_type
    and a.vouchno=b.vouchno
    and b.accode=c.accode
    and a.VOID='F'
    and a.posted_by is not null
    and a.v_date between :fmdt and :todt
    and b.accode in (select accode from account where open='T')
    and b.accode in (select accode from chart)
    and a.v_type in ('RN','PV','CV','RV','JV')
    and b.accode = '0104002'
    group by b.accode,c.actitle
    order by b.accode )
    using (accode)
    This qurey is running and generating report only and only if I use fixed dates in place of :FMDT and :TODT like '01-JAN-05' , but if I use :FMDT and TODT to ask date parameters at run time then the qurey gives an error at compilation.
    I am sure u must have understood kinldy help me out OR do tell me other way to pass vaules thru parameters

  • How to pass value to pop up window using javascript function?

    I am not sure how to do this, I want to open new window from existing form,This is Mod/PLsql for consists some javascript functions also. When I am clicking on new window in form then new form should open with results of value entered,but new window form is opening with main page :( , not able to get text box value from parent form. How to call textbox input value in popup window from parent window using javascript?
    currently I'm using following code:
    HTP.p('<script type="text/javascript">
    function pop_up5()
    var l_url=window.opener.document.getElementById("p_single_store_pc").value;
    window.open(l_url, '''', ''fullscreen=no, scrollbars=1'');
    </script>' );
    Edited by: user11970612 on Jun 14, 2012 5:02 AM

    this is probably due to the Javascript code and not a "real link" to another page... I don't know if the null is due to the Javascript...
    But if you really really want to use javascript instead of a ... you can pass the location of the url with JSP (on your main page) as a parameter to the open window... (...) u can put instead of main.jsp <%= request.getServerName()+request.getRequestURI() %>
    the value <%= ... %> will return something like test.com/html/main.jsp
    Hope this helps.

  • Passing values to parameters in row created by createInsert method

    Hi,
    I am passing some values from one task flow to other as input parameters for the other.
    There(in second task flow) i am using a createInsert method to create a row.
    How can i pass the values of the input parameters received to the parameters of the createInsert row before reaching create page.
    Any suggestions will be really helpful.
    Thanks.

    User, which jdev version do you use?
    Instead of the createInsert you can use createWithParameters. Check Andrejus Baranovskis's Blog: CreateWithParams Operation for Oracle ADF BC 11g
    Timo

  • How MSS Report passes values to R/3 report using PNP logical db

    Heloo Gurus,
    I am having some trouble where in i have added a new custom(Z) report in the MSS ->My Staff -> Reporting under report category -> Time Management (MSS). I am not able to find how the value of org unit which is selected on portal screen is passed to report in R/3 which is using PNP logical db.
    I tested in debugging but selection screen parameter PNPORGEH contains nothing.
    Many Thanks in advance for the help.

    Anyone ?
    plz update.

  • OBIEE passing value to a dashboard page using href

    Hi All,
    I am trying to pass year and month values from Report 1 to a dashboard page (having multiple reports) using the href function. The code i have used is -
    case when "Dim - KPI"."KPI Name"='Application Availability' then '<--a href="http://172.18.43.143:9704/analytics/saw.dll?Dashboard&PortalPath=/shared/Service Availability/_portal/Service Availability&Page=Application Availability&Action=Navigate&P0=1&P1=eq&P2=Dim%20-%20All%20Purpose%20Date"."Month%20%20 Name"&P3='||"Dim - All Purpose Date"."Month Name"||'style="">'||'test'||'<--/a>'end
    With this code I am being able to navigate to the desired portal path, but the values are not getting prompted. Can't figure out why? Please help......
    Thanks
    Srus
    Edited by: user10718864 on Jun 22, 2011 3:08 AM

    Hi Dan,
    1) I have tried standard navigation. The measure column is a dimension value, when i try to put multiple navigation paths on a actual value, it gives me a navigation menu. So i want to use conditional navigation i.e when the measure value is Application Availability , i should be able to navigate to application availability dashboard page and when my measure is Outage, it should take me to outage page instead.
    2) Yes i am using same columns for month and year for all 6 reports.
    3) Yes i have mentioned year and month as is prompted in all the reports.
    Please help
    Thanks Srus

  • Passing values as parameters from forms

    We are trying to use the On successful submission of a form area to forward to a report based on a value entered on the form.
    Is there a way to use a value from the form in the url?

    Here is the code I used. The code in bold allowed me to use the value entered on the form as a parameter for the report I am forwarding to.
    declare
    bidder_id number := 0;
    blk varchar2(10) := 'DEFAULT';
    begin
    bidder_id := p_session.get_value_as_number(p_block_name => blk,
    p_attribute_name => 'A_BIDDER_ID');
    go('PBR.SUM_REG_INFO.show?p_arg_names=pbr_bidder.bidder_id&p_arg_values='||bidder_id);
    end;

  • Passing values to parameters

    Good morning all,
    I want to assign default value to parameter which is not equal to some fixed value
    for example :if i take currency field .i have to declare waerk field with default not equal to "INR" like that.
    can any one help me in this .
    thanks and regards,
    gopal

    Hi Gopal
    As per my understanding we use DEFAULT to assign a particular fixed value to the parameter.
    However if you do not want to some value like 'INR' in that parameter , you can always check the input at the selection screen before proceeding.
    Something like
    AT SELECTION-SCREEN.
    IF pa_waers = 'INR'.
    MESSAGE e000(Message class)... message can be smtg like 'Please enter a valid currency' etc.
    ENDIF.
    I am not sure if i have understood what you really are asking for.
    Thanks
    Shivika
    Edited by: Shivika Bhorchi on Aug 21, 2008 8:28 AM

  • How to pass values to XML complex type of a Webservice using PL/SQL

    HI,
    I need to call a web service from PL/SQL that has an complex type element. That complex type element has 4 child elements each of integer type.
    I want to pass values for this complex type using SOAP_API.add_parameter but I can't understand how to pass the values.
    <xsd:element name="getBestFit">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element maxOccurs="1" minOccurs="1" name="circleId" type="xsd:string"/>
                        <xsd:element maxOccurs="1" minOccurs="1" name="usage" type="Q1:UsageInfoType"/>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
    <complexType name="UsageInfoType">
         <sequence>
              <element maxOccurs="1" minOccurs="1" name="a1" type="int"/>
              <element maxOccurs="1" minOccurs="1" name="a2" type="int"/>
              <element maxOccurs="1" minOccurs="1" name="a3" type="int"/>
              <element maxOccurs="1" minOccurs="1" name="a4" type="int"/>
         </sequence>
    </complexType>
    Please help me in getting a solution here.
    Thanks in advance.

    Have you tried doing a google search on "SOAP_API.add_parameter" to see what comes back? I see a lot of hits come back so hopefully one of those will help you. I've never used soap_api as I used utl_http to make WS calls. This required me to build the SOAP message (aka XML of a specific nature) by hand and then pass it to the WS using utl_http. How this approach is done via SOAP_API, I can't say.

  • Regarding how to pass values to the fields of a screen.

    Hi  all :
         there is a field called approver on screen. I'd like to pass value to it ,
         may I use the statement  like      approver-text = 'xxx'. ?
         is this ok?
         Thanks for any of your reply.

    Hi,
    Parameters: p_name type char20 default 'XXX'.
    you can give like this.
    or
    parameters: p_name type char20.
    Initialization.
    p_name = 'XXX'.
    both these will work
    regards
    Sarves

  • Create HTML in Document Maintenance (SE61)

    Hi there,
      I am having difficulty trying to create URL link in my document using SE61. If i type "http://.....", it will display as hypertext url link in my document. But if i have a long url, the hypertext will not be correctly displayed, as the text will be broken up.
      Anyone knows how to create a url link or create HTML tags using SE61 (Document Maintenance)? Thx
    Zul

    Hi Mohamed,
    I think your question is not ITS related and the chances to get an answer in this forum are not high.
    I don't know the answer to your question and would suggest that you consult the BC-Documentation in Knowledge Warehouse. If you want I can move this thread to another forum.
    Best regards,
    Henning

  • Passing values to standard screen from  an my internal

    Hi Experts,
    I want to pass values to the mb51 screen from my own internal table.
    in the program for mb51 there is include programLMIGOTV4 where what is use of following
    PBO module before start of LOOP.
    METHOD pbo.
    CALL METHOD super->pbo.
    tv_goitem-lines = lcl_migo_globals=>kernel->s_status-lines.
    ENDMETHOD.
    Also how can see the method Kernel and what is the use of that....
    Also when is the S_Status-lines update in the method Kernel.
    Please help me to understand ASAP.
    Thanks &Regards
    Tejaswini

    hi.
    You can pass values by two ways:
    1. use BDC option CALL TRANSACTION of the transaction MB51. But first you will have to see how it behaves during recording in SHDB.
    2 . Another is use
    SET PARAMETER ID 'MAT' FIELD WA_DATA-MATNR.
    CALL TRANSACTION 'MB51'.
    This would call the transaction with MB51 screen with material number initialised.
    check out   screen 1000 of prog 'RM07DOCS' for parameter id's of different fields.
    WRK- for werks
    LAG-storage location
    CHA for batch and so on.

Maybe you are looking for

  • Pass Parameter KUAGV-KUNNR to VA01 in WebGUI

    Dear all! We have just migrated from R/3 4.5B to ECC 6.0. We used to have an ITS transaction call for TX VA01, where we passed several parameters and skipped the first screen. This looked something like this: https://<host>:<port>/sap/bc/gui/sap/its/

  • Audio on thunderbolt

     recently my htc thunderbolt i got less than a month ago started acting up and i got a new one and its doing the same thing right out of box. is anyone else having this issue. when i call somone or if somone calls me they cant hear me talk,  or if im

  • Problem Printing Templates -- Formatting is Jagged, Blocky

    This is such a mystery. On the screen the Template looks great. When I go to the print menu and make a pdf it looks great. But when I print -- whether I print from Pages, or print the pdf -- the quality of the edges of the template is awful. To be sp

  • Validate from List property of dynamically attached LOV

    Dear Oracle Gurus, I have multi record block , the fields are Argument_name,Argument_Code ,argument_lov displaying two fields . data is populated at run time user has to input for the argument_value according to the argument_name displayed it may loo

  • Mail.app on Snow Leopard won't retrieve messages through POP3

    Hi. I've just recently upgraded to Snow Leopard. I managed to setup a Gmail IMAP account which worked fine. Then I tried to setup POP accounts of my GoDaddy hosting/email plan. The setup seemed to finish without problems but when I hit the "Get mail"