Where is fileDownload attribute?

Friends, I've repeated all steps from "Combining File Display Options" of the JHSDevGuide
pp 3-86, 3-87. Regenerate ... .
But I can't see any fileDownload attribute value:
In the Table view the column DownloadPhoto is EMPTY.
In the Form view there is no Attribute DownloadPhoto at all.
Where is my mistake?
Vladimir Zimin

Vladimir,
Could you provide some more information please, other than that it doesnt work? Like, are you using JSP or UIX, what is the column time (ordsys.ordimage, orddoc, blob), what code is implemented on the getDownloadPhoto() transient attribute, what are the 'Display' and 'Display Table' settings etc.?
Kind regards,
Peter Ebell
JHeadstart Team

Similar Messages

  • Where to maintain Attribute of the results record (Valid, Invalid,....)

    Dear Guru
    Where to maintain Attribute of the results record (Valid, Invalid,....)
    <  The true value is less or equal to; valid  result
    >  The true value is greater or equal to; valid  result
    my requrement is when i record the result system shows <=  value is less or equal to in specification (e.g. <= 5.0%), but client requirement is only "< value is less" (e.g. < 5.0%)to be display.
    Please help.
    Thanks in advance
    Yuvraj Dhotre....

    Hi then based on the no of decimal places you can define the limit like for decimal places 3 your upper limit will be 4.999
    And if it is lower limit the it is 5.001
    regards,
    Smruti

  • Where is Class Attributes in "Inspector" window

    I am just trying to create simple slider app in Xcode but after adding an object (from library) to interface builder and defining an object using Inspector, not able to see Class Attribute in Inspector window.

    When you say Class Attribute, do you mean that you want to examine your class's outlets and actions? If so, the outlets and actions are in the Library window. Click the Classes tab in the Library window and select a class to view its outlets and actions.

  • Where are dimension attributes in AWM - cube viewer?

    Hi -
    Built my first cube and I am looking at the data with AWM's cube viewer.
    I can drill down a hierarchy, but I cannot get at the attributes that were created for the product dimension. The attributes were defined at all levels of the hierarchy.
    Does the AWM cube viewer allow you to access the attributes of a dimension?
    Thanks,
    Frank.

    Attribute is something related to dimension. They are purely the property of the dimension and not the fact. Now you said the data is not visible in the cube and you are getting 0.00 even with a simplier case(one dimensional cube). There are many causes of the value not shown in the cube and some are mentioned below
    1. All records are rejcted in the cube maintaince process. For this you can check olapsys.xml_log_log table and see if you can find any rejected records.
    2. There is some breakage in the hierarchy of the dimension. It also prevents data from summing up.
    Did you tried with the global sample available on OTN? That should be good starting point for you.
    You can check the cube as below to find out it is loaded or not. Consider your one dimensional cube. Find out a member which is existing in the dimension and also has some fact value associated with it.
    1. Now limit your dimension to that value like this
    lmt <dim name> to '<value>'
    For compressed composite cube
    2. Now check data in the cube like this
    rpr cubename_prt_topvar
    for uncompressed cube you should do
    rpr cubename_stored
    #2 should show the same value which is available in the fact.
    Thanks,
    Brijesh

  • Nav attribute in where-statement

    Hi Experts,
    I have a routine in which I want to select 0MAT_SALES where my navigation attribute ZACCASGRP equals some values. I have written the code below but I get a syntax error when trying to compile it. I do not get any suggestions and I have not been able to figure out the problem.
    data: BEGIN OF Z_FUNDGROUP occurs 0,
        /BI0/OIMAT_SALES TYPE /BIC/AZBILCOPA00-MAT_SALES,
    END OF Z_FUNDGROUP.
    SELECT * FROM /BIC/AZBILCOPA00
        Into corresponding fields of table Z_FUNDGROUP
            where MAT_SALES-ZACCASGRP IN ('a', 'b', 'c').
    My problem is the where-statement and I have also tried with the following combinations but non of them works:
    /BI0/OIMAT_SALES-ZACCASGRP
    /BI0/OIMAT_SALES-0MAT_SALES__ZACCASGRP
    MAT_SALES-0MAT_SALES__ZACCASGRP
    if I change it to only say: where MAT_SALES IN ('a', 'b', 'c'). I do not get the error (but this is of course useless since I am not restricting on my navigation attrivute).
    Can somebody please help me with this.
    Thank you in advance,
    Mikael

    Hi,
    You are probably right regarding the Select-statement above. I therefore reasoned that I should be able to re-structure my problem and use the following select-statements instead:
    SELECT MAT_SALES
        FROM /BI0/PMAT_SALES
        INTO TABLE Z_FUNDGROUP
        WHERE
            MAT_SALES IN (
                SELECT DISTINCT MAT_SALES
                    FROM /BIC/AZBILCOPA00
            AND /BIC/ZACCASGRP IN ('a', 'b', 'c').
    but when I do this I still get errors. If I skip the "AND /BIC/ZACCASGRP IN ('a', 'b', 'c')" part it gives me valid results, but I have to be able to use this attribute. When I look at the master data table /BI0/PMAT_SALES in SE16 it shows me that there is a field named /BIC/ZACCASGRP and then I do not understand why I cannot use the above select.
    Best regards,
    Mikael

  • Linq to XML query where clause excluding null attribute in child

    I'm quite new to linq/XML and although I'm making progress I'm stuck at combining two levels of elements in a where clause. The XML is something like this
    <employees type="cashier">
    <employee hired="Jun 1 2000" fired="Jun 1 2013">
    <stats name="jane doe">
    ... other stuff ...
    <stats />
    <employee/> <employee hired="Jun 1 2000">
            <stats name="john doe">
                ... other stuff ...
            <stats />
        <employee/>
    <employees/>
    I'm trying to retrieve all employees of type "cashier" that haven't been fired.
    I tried this
    IEnumerable<XElement> CashierElements = from el in xDoc.Root.Descendants("employees")
    where (string)el.Attribute("type")=="cashier"
    && (string)el.Element("stats").Attribute("fired") != null
    select el;
    But that returns entries where the fired attribute doesn't exist. I'm not even sure I can reference the stats element attribute in this way but VS2013 doesn't complain about it.
    I have managed to muddle past by using two linq selections, the one above without the stats comparison followed by a second on the results that checks for "fired" being null.
    How would I achieve this with one select statement?
    Thanks!

    Hi,
    1) Your XML contains the attribute "fired" on "employee" element. Your query search this attribute on the "stats" element.
    2) you say "that haven't been fired" by you search an attribute fired != null ? I'm not sure about your logic.
    If I understand your request, your LINQ Query is more than :
    IEnumerable<XElement> CashierElements =
    // Loop on <employees>
    from emps in xDoc.Root.Descendants("employees")
    // only 'cashier' type
    where (string)emps.Attribute("type") == "cashier"
    // Loop on <employee> in filtered <employees>
    from emp in emps.Elements("employee")
    // only the employee not fired
    where emp.Attribute("fired") == null
    // select the employee element
    select emp;
    Regards
    Yan Grenier
    Merci de bien vouloir "Marquer comme réponse", les réponses qui ont répondues à votre question, et de noter les réponses que vous avez trouvé utiles.

  • Where does a session store attributes?

    I have a question. When I call
    Vector v = new Vector();
    request.setAttribute("attr", v);Where is the attribute stored? Is it stored at the server or at the user's browser? If it is store on the server, won't it consume lots of memory?

    session information is stored in a hashtable with session id as the key. This hastable contains hashtable objects for each session , which contain the session object.
    This hashtable of hashtables is stored in the heap memory of the server machine allocated to the JVM
    Shubhrajit

  • How to get  all rows of an attribute data from a table?

    Hello.. I´m using Jdev 10.1.3.2
    I have a table with 5 columns and N rows.
    I need to create a backing bean method to count the value of all rows of a specifc column.
    I use
    JUCtrlValueBindingRef selectedRowData= (JUCtrlValueBindingRef)myTable().getSelectedRowData();
    to get an attribute from a selected row. but How can get from all rows?
    Thank you
    Vandré

    Hi Vandré
    I think this example of Steve Muench will help you.
    "Recalc Sum of Salary at the View Object Level
    This example illustrates a technique where a transient attribute of a view object is updated to reflect the total sum of some attribute of all the rows in the view object's default row set. The code to recalculate the sum of the salary is in the getSumOfSal() method in the EmpViewImpl.java class. The custom EmpViewRowImpl.java class for the view row implements the getter method for the SumOfSal attribute by delegating to this view object method. The EmpViewImpl class extends a base DeclarativeRecalculatingViewObjectImpl class that contains some generic code to enable declaratively indicating that one attribute's change should recalculate one or more other attributes. The EmpView defines the "Recalc_Sal" property to leverage this mechanism to recalculate the "SumOfSal" attribute. If you restrict the VO's results using the BC Tester tool, you'll see the sum of the salaries reflects the subset. If you add a new row or delete an existing row, the sum of sal is updated, too."
    http://otn.oracle.com/products/jdev/tips/muench/recalctotalvo/RecalcTotalOfRowsInVO.zip
    Good Luck

  • I can't found my request attributes in FlexContext.getHttpRequest()

    I´m including an swf (the compiled version of my mxml
    page) in a jsp which is part of my Struts application, like this:
    <embed pluginspage='
    http://www.macromedia.com/go/getflashplayer'
    width='750'
    height='200'
    src='
    http://pc8251e:7001/samples/pruebasAle/chooser.swf'/>
    This is the chooser.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute"
    creationComplete="{myClientillo.getList()}">
    <mx:RemoteObject id="myClientillo"
    destination="chooserProvider"
    showBusyCursor="true" />
    <mx:DataGrid height="200" width="750"
    dataProvider="{myClientillo.getList.lastResult}" >
    <mx:columns>
    <mx:Array>
    <mx:DataGridColumn dataField="id" headerText="Id"/>
    <mx:DataGridColumn dataField="campo1"
    headerText="Nombre"/>
    <mx:DataGridColumn dataField="campo2"
    headerText="Apellido"/>
    </mx:Array>
    </mx:columns>
    </mx:DataGrid>
    </mx:Application>
    I' ve configured in the remoting-config.xml the Remote Object
    chooserProvider like this:
    <destination id="chooserProvider" >
    <properties>
    <source>samples.providers.ChooserProvider</source>
    <scope>application</scope>
    </properties>
    </destination>
    In the samples.providers.ChooserProvider.java, I want to
    acces the attributes that are setted in the HTTP request. I tried
    using the FlexContext.getHttpRequest() and the
    FlexContext.getFlexSession(), but the attributes doesn´t
    exist. Here is the code of the ChooserProvider.java
    public Object[] getList()
    System.out.println("OTRA VEZ EN ChooserProvider.getList()");
    HttpServletRequest req = FlexContext.getHttpRequest();
    FlexSession flxSession = FlexContext.getFlexSession();
    System.out.println("FlexContext.getHttpRequest(): "+req);
    System.out.println("FlexContext.getFlexSession() :
    "+flxSession);
    Enumeration enum = req.getAttributeNames();
    while (enum.hasMoreElements()) {
    String element = (String) enum.nextElement();
    System.out.println(element+" <>
    "+req.getAttribute(element));
    Enumeration en = flxSession.getAttributeNames();
    while (en.hasMoreElements()) {
    String element = (String) en.nextElement();
    System.out.println(element+" -->
    "+flxSession.getAttribute(element));
    ArrayList list=new ArrayList();
    return list.toArray();
    but this is the output in the console
    OTRA VEZ EN ChooserProvider.getList()
    FlexContext.getHttpRequest(): Http Request:
    /samples/messagebroker/amf
    FlexContext.getFlexSession() :
    flex.messaging.HttpFlexSession@1a0d111
    weblogic.servlet.network_channel.port <> 7001
    __flexSession --> flex.messaging.HttpFlexSession@1a0d111
    Where are the attributes that i have setted in the request in
    the previous page? How can I access them ?
    I'm using weblogic 8.1 and Flex 2 with Flex Data
    Services

    Have you signed up for a personal hotspot with your cell provider?

  • How to union results from 3 different dimensions in where clause with or - Mdx query

    Hi 
    I have a MDX Query and i need to pass the variable values to it by dynamically.
    Each time it will get any one attribute from three dimensions.
    Select 
    {} ON Columns,
    {} ON Rows 
    From
    Cube
    Where
    [Dimension1].[Attribut].&[Value]
    or
    [Dimension2].[Attribut2].&[Value]
    or
    [Dimension3].[Attribut3].&[Value]
    So It is working for two different values by using union and cross join.
    Can you please provide the solution ..
    Thanks in advance

    Hi Philip
    Thanks for replying me.
    I tried on that way, In my mdx query i am using one slice attribute (i.e [Customer].[Gender].allmembers) in rows so getting error "The  Hierarchy already appears in Axis1".
    SELECT
    {[Measures].[Internet Sales Amount] } ON 0,
    NON EMPTY
    {[Customer].[Gender].allmembers } ON 1 -- Used
    FROM
    [Adventure Works]
    WHERE
    [Customer].[Gender].&[M]
    ,[Product].[Size Range].[(All)]
    ,[Customer].[Country].[All Customers]
    [Customer].[Gender].[All Customers]
    ,[Product].[Size Range].&[XL]
    ,[Customer].[Country].[All Customers]
    [Customer].[Gender].[All Customers]
    ,[Product].[Size Range].[(All)]
    ,[Customer].[Country].&[Australia]
    Can you provide alternate ways to get resolved.
    Thanks in advance

  • Custom attributes in Service Registry

    Hi!
    Is it possible to use custom attributes in Service Registry?
    And if Yes, where can these attributes be displayed in Business Service Control or Registry Control?
    Thanks

    Hi,
    Please see the below link. This might help you.
    http://weblogs.sdn.sap.com/cs/blank/view/wlg/20379
    http://wiki.sdn.sap.com/wiki/display/BPX/Chapter+3
    Thanks and regards,
    SNJY

  • Rich Text Editor with Custom Text Attribute

    Hello All,
    We are using the latest version of Oracle Portal 10G. I have a need to create custom Attributes of the type text to let people enter a lot of text. But when User are in edit mode of an item where this custom attribute is used, the Rich Text Editor is not shown for entering the Text for the Custom Text Attribute. It shows a normal html text area. Has anyone ever used RTE with Custom Attribute?
    I request you guys for help.
    Thanks.

    The Problem with the Custom Attribute is not solved, but I have now compromised with the Situation and now I am not using a Custom attribute.
    Rather, Now I am creating a Custom Item Type using Base Text Type (earlier i wanted to create custom item type at my own without any base item type). In this case now I will not be able to change the Lable of the RTE (that is "Text", when the Custom Item is in Edit Mode), but I hope that my users can understand that much.
    I have created a template for portal pages. In the Template I can edit the Region Properties. When I edit the Region property of the region where I want to display my Custom Items. I get two Tabs on the top, Main and Attributes/Style. ON the main tab I can tell what type of region it should be, width etc, in my case it is item type region. And on the Attributes/Style tab, I can select from the availabe Attributes as which all Attributes I want to display. Here if i select only "Associated Functions" Attribute then normally portal should not render anything by default on the Page. It should rather make a call to the procedure which is associated with the Custom Item and as when I was creating the custom item type, I had clicked on "Display Procedure Results With Item", so portal should now display the result of my Procedure. So far it works without problem.
    But the problem is that the Portal displays the text at its own also. As i have written that Portal should not display anything at its own, this doesn't work in this version of Portal for a Custom Item Type that is made using Base Text Item Type. For all others it has worked till now (I have create 50s of Custom item types).
    You can better understand by going to the following URL. Just have a look between the two dotted lines (Dotted line is also a seperate Custom Item Type). Between the two Dotted Lines is a custom item, in general it would be a Custom News Item having title, image and so on.
    http://sunnode1.edvz.sbg.ac.at:7778/portal/page?_pageid=79,56047&_dad=portal&_schema=PORTAL
    I have really programmed a lot with portal but now at this stage where I am near to end, I am getting problems which are coming from Product. I request you for help.

  • Custom Dynamic Attributes

    Hello Experts:
    Does anyone knows if it is possible to create a Custom Dynamic Attribute for Bid Comparison where this custom Attribute can be automatically filled through a function module or program with some calculated value?
    My requirement is to provide an automatic supplier qualification which can be used as a comparison attribute, the qualification could be calculated using supplier information from previous POs, Confirmations, etc.
    Hope you can help me out
    Hugo

    Hi,
      Dynamic Attributes for Bid Invitation can be created using customization.
    SPRO-> SRM Server->Bid Invidation - > Dynamic Attributes.
    Generally the response to  the dynamic attributes are given by Bidder when submitting the Bid.
    For automaic population of response to the bidder do you want to do through report ?
    you can implement "BBP_DOC_CHANGE" BADI metod "BBP_QUOT_CHANGE" for pupulating the response of dynamic attribute while submitting BId.
    Regards
    Kalandi
    PS : Reward points if it helps you.

  • Oracle UCM distinct values for attribute in GET_SEARCH_RESULTS ResultSet

    hi, can anyone, please, tell if there is a way to get a distinct values of resultset of GET_SEARCH_RESULTS?
    I mean, is it possible to obtain distinct values with custom where values of attribute through api?
    I need to build somewhat like autosuggest feature, but afaik there is no such service.
    Alternatives are
    - build my own service which can accept query text, pass it to GET_SEARCH_RESULTS, get results, calculate distinct and output it in hda - i dont like this idea, becouse it means getting whole result set into java while it is efficient to handle in DB
    - customize CHECK_IN/UPDATE services to update cached distincts (that means no grouping on custom queries)
    May be there was some sort of discussion or blog note?
    Thanks in advance.

    If you do not declare "SearchEngineName" as part of the request, whatever value is defined in config.cfg is used. This behavior is by design.
    Setting it in your request allows you to override the system setting in order to use another search engine, provided that the rest of the underlying parts are in place for the engine you are trying to use. For example, if your system setting is "DATABASE.METADATA", setting your individual request to "ORACLETEXTSEARCH" will probably fail, since the Oracle full text indexes would not exist. But if you are doing just metadata searching based on a couple of columns, and don't need the full text part for the request, it's a good way to craft a very specific search. Combined with a couple of database indexes on the columns in the where clause, it's also a good performer.
    I do "SearchEngineName=DATABASE" usually in conjunction with the parameter "SearchQueryFormat=Native" so I can create some database specific queries in native SQL (and thus avoiding the need to figure out the exact internet or universal syntax.) Your mileage may vary.

  • Which table stores Marketing attribute values...

    Hi guys,
                   Can someone tell me where the marketing attributes for an BP is stored. which table holds the data..
    Regards,
    Sundar

    Sunder,
    Hope this helps.
    FUNCTION MODULES RELATED TO BP MARKETING ATTRIBUTES
    CRM_MKTBP_READ_OW OR CRM_MKTBP_READ_OB
    returns the status whether the attribute set is assigned to the BP. Further it also returns the attribute set, attribute and its values for the given BP
    INput parameter: BPguid (from BUT000)
               Attribute set ID
    CRM_MKTBP_READ_CHAR - > get record from db
    returns the attribute set, attribute and its values for a given BP
    INput parameter: BPguid (from BUT000)
               Attribute set ID
    CRM_MKTPFTPL_READ_CHR
    This FM takes the attribute set as the input parameter and returns the following:
    Attribute set
    Check tables if any
    Attribute applicable to the attribute set and its descriptions
    CRM_MKTPFCHR_READ *  read character descriptions
    Gives the values and the descriptions of the values
    INput parameter: Attribute name
    CABN - stores attribute and the checktable linked to the attribute
    CABNT - attribute descriptions
    CAWN - attributes and the corresponding values
    CAWNT - attributes and the corresponding values n their descriptions
    KLAH and SWOR - stores (classes containing the) attribute sets
    AUSP - stores the attribute values assigned to the BP. It also contains the BP guid. the search for the attribute value is based on some AUSP-objek which can be retrieved from table inob-cuobj using
         WHERE objek = lv_objectkey '0001437160 BP no
          AND obtab = gc_objecttable 'BUT000
          AND klart = gc_class_type. 'BUP
    Alternately, you may use the partner_guid in the AUSP table and get the attribute values assigned to the partner.
    Julius

Maybe you are looking for

  • Report FS Item debit and credit separated

    Dear Gurus, In FI Financial Statement Variant is usual to separate debit and credit balance in diferent nodes for some accounts. This is done because debit is taken as asset and credit as liability. I'm triying to do this in FS Item Hierarchy, but un

  • XI 7.0 ABAP-Mapping in Design Builder (Interface Mapping)

    Hi, in XI 3.0 there was the possibility to specify a ABAP-Mapping-Class in the Interface Mapping. In XI 7.0 the entry ABAP-Mapping is somehow missing in the drop-down-Box, there is a Message-Mapping, JAVA-Mapping and XSLT-Mapping but no ABAP-Mapping

  • Web adi documentation

    Hi, I have a few questions about web adi , and I would much appreciate your help. 1. Is there an Oracle Web Adi Developer's Guide, or any other official documentation besides the "Oracle Web Applications Desktop Integrator Implementation and Administ

  • Form Resize Affect Column width?

    Hi Folks, I have a very strange problem. I try to add a new matrix to Production Order form. The matrix will have 2 columns which are: 1. No - Non Editable (for numbering) 2. Description (information). My code is like the following:         oItem = o

  • Accessing Form context fields in javascript in Adobe forms

    Hi, I want to hide some elements in the Adobe form with respect to the value of a Form context field. If this field is mapped to an element in the Form layout then we can access it using data.<field>.rawValue, but this field is not mapped to any elem