WAD : Changing Web Item Property

Hi
I have a requirement to change the Web item Info Field in WAD 7.0 (earlier Text Element in BW 3.5). Presentlt there are two property that is Width in Pixel & Height in Pixel i want to have Width in Pixel , Full Width , Height in Pixel & Full Height as present in Analysis  Web Item .
How to achieve this is it possible for us to do this or not?
Thanks & Regards
Rajesh Kumar

Hi gurus,
I have found a way to update my title via Javascript using url command :
I add this line in my url : &item=Table_1&caption=NewTitle
But it works only if I use this line alone ... if I try to do this with another cmd (merge the two cmd together)
&DATA_PROVIDER=DATAPROVIDER_1&CMD=CURRENCY_CONVERSION&CUR_CONV_METHOD=ACAVCTRT&CUR_CONV_TYPE=2&DATA_PROVIDER=DATAPROVIDER_1&TARGET_CURRENCY=EUR<b>&item=Table_1&caption=NewTitle</b>
it doesn't work (only the first cmd is executed) ! Anybody knows something about that ???
Thanks in advance
Aleksi

Similar Messages

  • WAD - customize web item attribute values

    Hi,
    did somebody know if it is possible to define or customize web item attribute values ?
    I would like to define a new attribute value for the attribute IMAGEMAP_PATTERN. At the moment there are just two possible values to select: NONE or FILTER_VAL.
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/3b/7c97de1bed374ee0000800091c1b0e/frameset.htm">IMAGEMAP_PATTERN</a>
    Thank you.
    Daniel Junkovic

    Hello Elena,
    I am working on navigation with maps at the moment. Can you tell me, where to set the parameters "Imagemap_Pattern" or "Influenced_DP_1", please?
    I tried it with the html- code of the documentation, but this did not work so well.
    Regards
    marcus

  • How to change a item property just for one record

    Hi,
    My Requirement is, when a new record is inserted i want item1 to be enabled(which is disabled by default) only for this new record. when I implement the following code, entire column is enabled intead of just for one record.
    The code I have written in WHEN-NEW-RECORD-INSTANCE trigger is
    app_item_property.set_property('block1.item1', ALTERABLE_PLUS, PROPERTY_ON);
    app_item_property.set_property('block1.item1', ENTERABLE, PROPERTY_ON);
    please help!
    Thanks
    Sunny

    The code I have written in WHEN-NEW-RECORD-INSTANCE trigger is
    app_item_property.set_property('block1.item1', ALTERABLE_PLUS, PROPERTY_ON);
    app_item_property.set_property('block1.item1', ENTERABLE, PROPERTY_ON);What is APP_ITEM_PROPERTY? This is not a Valid Oracle Forms Built-in. I don't see how your When-New-Record-Instance (WNRI) trigger will compile.
    To change the properties of a specific instance of an item you would use the Set_Item_Instance_Property built-in and then there are only a few properties you can change; which are: BORDER_BEVEL, INSERT_ALLOWED, NAVIGABLE, REQUIRED, UPDATE_ALLOWED and VISUAL_ATTRIBUTE. To make a specific instance of "ITEM1" Insertable and Updateable you would use the following:
    Set_Item_Instance_Property('YOUR_BLOCK.ITEM1', CURRENT_RECORD, INSERT_ALLOWED, PROPERTY_TRUE);
    Set_Item_Instance_Property('YOUR_BLOCK.ITEM1', CURRENT_RECORD, UPDATE_ALLOWED, PROPERTY_TRUE);However, if you have set the ENABLED property of ITEM1 to NO in the Forms Builder, you will not be able to "Enable" the item using Set_Item_Instance_Property. You will need to make the item Enabled and set the INSERT/UPDATE properties to NO.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Hiding a web item through the command line URL

    We use the Web API and command line processing heavily to pass in different filter values, variable values, data providers, etc. to our web reports.  I had a requirement within a given area to launch our web reports with the Navigation block visible on the web template.  In our commonly used 'default' web template, we currently allow the users to switch this item on/off once they are in the report, but we always have it come up Hidden initially.
    My question is this: is there some trick to getting a web item property changed dynamically at execution time from Hidden=X to Hidden= ?  I have tried numerous attempts to format a URL to change this behavior, but have been unsuccessful.  A sample would be: &ITEM=GR6&MULTI=X&HIDDEN=  --> this is intended to make all items with 'GR6' in the name unhidden.  But in my case, it ends up making more web items visible than I want.  Even specifying the Item name directly does not help.
    I have also tried applying it in conjunction with a command sequence from the Web API docs. Is there a particular command that this has to go with (i.e. LDOC? RESET_WEB_ITEM? etc.)?  We have a button on the web template that issues the command <SAP_BW_URL ITEM='GR6' MULTI='X' HIDDEN=''> when clicked -- this works fine.  How do I apply the same type of logic to the initial URL within the command processing?
    Any help would be appreciated.  I know that I can resolve this by just creating a copy template with this web item set to Visible instead of Hidden at the launch.  I was just thinking I could reuse the main web template and control it through the URL.
    Thanks...
    Jody Chassereau

    Heike,
    maybe you can help me out on this one:
    I'm trying to implement Tobias Kaufmann's How To Paper <i>Web Printing with Excel</i>.
    Before calling the respective Abap classes from my web template, I want to hide the web item <i>Hierarchical Filter Selection</i> as this one comes out ugly when downloaded to Excel. So what I'm doing is, I first hide the Filter Selection and then call the Abap classes.
    Here is the coding that I am using:
    <!-- Web Print with Excel-->
    <td class="SAPBEXNavLine"><A href="<SAP_BW_URL
    CMD_1='Item=HIERCONTEXTMENU_1&HIDDEN=X'
    CMD_2='CMD=PROCESS_HELP_WINDOW&HELP_SERVICE=HELP_SERVICE_PRINT&ITEM=Table_1&SUBCMD=PRINT_EXCEL'>">
    <IMG  alt="Web Print with Excel" src="/sap/bw/Mime/bex/icons/print.gif" border=0></A></td>
    This coding is working fine.
    The problem is however, that the <i>Hierarchical Filter Selection</i> is now hidden in my web template. To unhide it, I thought I'd use the coding as above, but add a third command (CMD_3) to make that item visible again.
    Here is the coding:
    <!-- Web Print with Excel-->
    <td class="SAPBEXNavLine"><A href="<SAP_BW_URL CMD_1='Item=HIERCONTEXTMENU_1&HIDDEN=X'
    CMD_2='CMD=PROCESS_HELP_WINDOW&HELP_SERVICE=HELP_SERVICE_PRINT&ITEM=Table_1&SUBCMD=PRINT_EXCEL'
    CMD_3='Item=HIERCONTEXTMENU_1&HIDDEN='>">
    <IMG  alt="Web Print with Excel" src="/sap/bw/Mime/bex/icons/print.gif" border=0></A></td>
    Unfortunately, only the commands CMD_1 and CMD_3 are being executed (which is kind of useless), the main command CMD_2 however is not.
    Do you have any idea why this is happening and how to avoid this?
    Really appreciating your help,
    Regards,
    Yogen

  • How to change the size of the web item text in WAD 7.0

    Dear All
    I am quite new to WAD and I am having a problem with changing the font size of a web text item
    I have searched already and someone suggested changing the Design property to  HEADER1 or HEADER2 etc and then I should be able to change the font / size.
    I have done this but to no avail
    I want to have large heading across the top of the web template
    am I using the wrong web item ?
    I know I can key the text directly into the web template and change the font from the menu bar  but I need it in an item as I want to export them through to PDF later
    Would be grateful of any help
    thanks
    Sandra

    Thank you all for your quick responses (I will award points once this is sorted)
    On the information you have supplied this has opened up yet another new part of WAD that I have not experienced ...TAGs
    Shubhranshu - I have done what you said but as I have never used tags I have just had a look around and found that I can insert Any Tag but not sure if I should be doing that.  If it is inert any tag , I chose FONT from the drop down and cbmAttributes defaulted into the custom tab for the class name but not sure what it wants in the Attributes and CSS Style tab, it won't accept what I am putting which is leading me to believe that I shouldn't be doing it that way.
    Venkat - thanks for the links they will prove very useful.  I've had a look and although they talk alot about the XHTML code for tags they don't actually say how you do it in the editor - I would like to produce one that way first and then see the code it generates for it.  I'm a bit apprehensive with changing the code direct as I don't want to mess anything up.
    Thanks again for your help

  • WAD: Push button not displaying some Web Items

    Hi All,
    I have a web template 7.x in which there is a push button for "Export to PDF". There are some changes carried out to this web template, to include one radio button web item. My requirement is to display this Web Item on the export to PDF page.
    I have included this radio button web item in "Export to PDF" button list. However still it is not displayed on Export to PDF page.
    Is there any other setting which i am missing?
    Appreciate your quick response.
    Thanks.

    Hi Samruddhi,
    As per SAP Note 1069368 which talks about the limitations of Export to PDF functionality in WAD 7, the following webitems alone are supported on Export to PDF:-
    Supported Web items
    Analysis item
    Report item (see also the section 'Web application export with report items')
    Chart item
    Map item
    Information item
    Text item
    List of conditions
    List of exceptions
    Images (only from the MIME repository, see Note 484390)
    Thus Radio Button cannot be included in the exported PDF.
    --Priya

  • Web item for formula variable in WAD

    Hi,
        I have a formula variable in my IP application where user can input the percentage for a function, which web item I should used in WAD to bind the user's input data with the formula variable? The input field item does not have the data binding property.I did it in my last project but can not remember it anymore.

    Basically, in IP you do not need to configure  web item for formula variable, it will automatically pop-up when you run the function, at that time you can input the value for the variable. while in BPS, we need to input the numerical value before we run the function.
    Since the input field web item does not have data binding property, I am not sure it is useful, the data you input has no effect on your processing data set. Anybody has some other idea?

  • Can I change the standard text for web item 'INFO_FIELD_ITEM'?

    Hello experts.
    I made a WAD template using web item 'INFO_FIELD_ITEM'.  In data binding, I used the 'Last refresh' of general text elements.   As a result, in the web browser I can see the last update date & time. (e.g. 'Last refresh: 2007.01.17 17:34:44') Then our customer want to change the default text "Last refresh" as "Working time".
    How can I change this?
    I tried to change the text symbols for program SAPLRRSV. But it worked only in Bex Analyzer not in the web.
    Our server version is Netweaver 2004s and SP10.
    Best regards.
    JY Park.

    Hello,
    I had the same problem - just wanted to display the values of a variable in an info-field, but not the caption.
    I found out, that there's a tag for Info-Field Item called ONLY_VALUES (it's the checkbox under the headers visible checkbox in the properties dialog of the Info-Field Item; in my WAD version, there's no label assigned to this checkbox, so it was not easy to find out what it should be),
    You have to set it to 'X' (check it) ; then you get the unformatted value of the variable (no caption anymore).
    <bi:INFO_FIELD_ITEM name="INFO_FIELD_ITEM_1" designheight="500" designwidth="350" >  <bi:WIDTH value="350" />
    <bi:HEIGHT value="500" />
    <bi:DATA_PROVIDER_REF value="DP_1" />
    <bi:HEADERS_VISIBLE value="" />
    <bi:ONLY_VALUES value="X" />
    You have to insert the info-field item between span tags so that you can define your own formatting values.
    The ONLY_VALUES tag works the same as the tag 'RENDER_AS_TEXT' you have with the text item , see
    http://help.sap.com/saphelp_nw70/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    There's only one disadvantage: If you have chosen a lot of variable values (multiple selection), the variable string gets very long and no line break is performed, because all blanks in the string are replaced by nbsp's. I solved this with a little Java Script, replacing the appropriate nbsp-s with br tags.
    Hope it helps
    Beate

  • Web Item Properties cannot be displayed in WAD

    Hi,
    I cannot see the web item or template properties in the WAD. I have ticked the flag for the web item properties to be displayed.
    This seems to be user specific, if I login as another user, the properties work area is visible and as well can be selected or deselected for display.
    I am new to Web reporting so am not sure where to change the parameters to get back the properties work area for me.
    Thanks and regards,
    AW

    Thanks a Lot guys,
    Its really strange that the issue seems fixed on itself. Today I  have logged into the system and found everything in order.
    Now I can see the properties pane in WAD and as well select/deselect it from the toolbar.
    It seems to be one more SAP mystery!!!!
    Once again thanks a lot for your contributions. Have assigned points each one of them.

  • How to place tile web items with WAD

    Hi,
    I work with WAD 2004s SP12, Patch 1 Rev 314.
    I place web items side by side in WAD layout tab. But if I execute the template, IE 6 shows the items one below the the other.
    Witch html would solve the problem?
    Thanks and regards,
    Wolfgang

    You could try surrounding the content in
    <div>
    tags, setting the .css property 'white-space to 'nowrap'.  As follows:
    <div style="white-space:nowrap">
    Web Items Go Here
    </div>

  • Still possible to create  custom web items in WAD 7.0?

    Hi,
    in WAD 3.5 I was able to create custom web items and use them in the WAD after making the correct entries in the RSRRENDERER tables. Today I tried to do the same in an 7.0 environment, however, I didn't find my web item in the left hand side in the WAD. Is it still possible to create you own web items in 7.0?
    Kind regards,
    Tom

    Hi,
    Pls chk this;
    [https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/spat/index.htm?sp1=SAPKW70012]
    SAPKW70012 - change the last 2digits to the SPlevel you need to see all the included notes in that SP
    Hope this helps,
    regards
    CSM Reddy

  • Changing the  item categories of Sales order in web IC

    Hi experts,
    We are working on CRM 5.0 with Web IC
    We have a scenario where we need to change the item categories of some of the items in sales order.
    But in a standard sales order I cant see the item categories of line items in WebIC.
    Now the issue are
    1. How to make the item categories available in web ic?
    2. Is there any standard config to do this or we have to go for development ?
    3.Is it possible to change the itemcategories in Web IC?
    Can any body suggest me with suitable solution
    Points shall be rewarded for sure
    Regards,
    Madhu

    Hi,
    you dont change the item category at the header level. The item category will be changed at the item level and the code to do this is
    lv_entity_items->set_property( EXPORTING iv_attr_name = 'ITM_TYPE' iv_value = lv_itemcat ).
    here lv_entity_items is one of the entity in the collection for AdminI . lv_itemcat is the value you want your item category to be set to.
    hope this helps.
    Reward useful answers.
    Regards,
    S Sarma.

  • Web Item Portfolio in WAD 7.0

    Hi,
    I would like to realize the following with the portfolio Web Item in the WAD 7.0:
    I got a Query which delivers me 3 columns:
    Section1 : x,y, size
    Section2 : x,y, size
    x for x axis y for y axis and size for the size of the bubbles in the chart.
    The Chart presents this correct.
    As a label for every bubble it shows me Section1, Section 2....
    As Label I would like to have the value of the third column(size) presented and not
    Section 1, Section 2...
    Is there a possibility to this?
    Thanks for any help!!

    Hi Holger,
    this is possible with the latest IGS version when using $size in the Format attribute of the Series customzing.
    See note <a href="http://service.sap.com/sap/support/notes/1064448">1064448</a> for more information on the number formats.
    Best regards
    Matthias

  • How to design selection screen with WAD 3.x Web Items

    Hi Guruu2019s,
    I have a requirement where I need to design a selection screen by using WAD 3.x web items. In the selection screen we have to include the Query Description - in the left corner of the selection screen, Name of Sales Person u2013 left side of the screen, Date from and Date to u2013 right side of the selection screen, User ID and User Name u2013 on the top right of the selection screen etc., after this on the bottom of the selection screen I have to include the pushbutton RUN REPORT.
    After filling all the above parameters and click on Run Report it has to trigger another URL link which contains consolidated Sales CRM Report.
    Could any one suggest me and provide me the idea on developing the selection screen with WAD 3.x Web items and is there any other interface to trigger the other URL link when I click on Run Report.
    Regards
    Venkat

    no replies. Closing the incident

  • BI 7 properties of web item to change background,...

    Hi,
    I try to find how to change the background color or no backgoround color of web item (for example text element) in BI 7
    I don't find any properties as in previous version like background color,...
    Do you know how can i manage it except in CSS style.
    Thanks
    Cyril

    Hi,
    You can always write HTML tags for a web item and assign properties to that object within that tag.
    For example if you have put your web items in a table structure. You can change the background of the cell in which the item is placed.
    For eg:
    <html>
    <body>
    <table>
    </table>
    <tr>
    <td bgcolor="#30688" width="80%">
    Place your web item here
    </td>
    </tr>
    </body>
    </html>
    Regards,
    Kishore

Maybe you are looking for