NULL value in LOV not displaying in Viewer as NULL

Discoverer Viewer: 10.1.2.54.25 CP4
I have a list of values ('A','B','C',NULL).
In desktop the drop down shows
A
B
C
NULL
However in viewer I get
A
B
C
When I select the area just under C, which I presume to be NULL, it allows me to move it over. However when I'm ready to run the query, it informs me that I have not selected a value. I can manually key in NULL and the query will execute without a hitch.
What am I doing wrong?
Thanks,
Jamie

I'm not sure I understand exactly what you need.
But your LOV show the DNAME and return the DEPTNO, so of course the LOV will return the DEPTNO even if the DNAME is null.
To return null if the DNAME is null, indeed you can use decode but in the return value :
select dname d, decode(dname,null,null,deptno) r
from test_dept
order by 1

Similar Messages

  • Can I filter by value which is not displayed in grid columns?

    In excel it is possible to filter by value of measure which is not displayed in the report.
    How can I possibly do this in Performance Point Grid? (in filter by value there I only see the measures in columns).
    Please advise
    Namnami

    I found it is possible to filter by value by changing the MDX in the query tab.
    (I filtered by certain existing value in design, then switched to Query and changed to the measure which is not displayed). I shows up correctly.
    The problem is, once I change the query, I get an error when tring to connect a filter on a grid column:
    "consumer parameter no-longer exists in the consumer webpart"
    The grid looks "frozen"- cannot drill up / down etc.
    How can I filter by value which is not displayed without loosing the ability to attach a filter to the grid?
    Namnami

  • External Monitor will not display full view MS apps.

    I have a HDMI monitor that was previously working fine.  The other day I went to use Word and Excel and the applications would only appear in the lower toolbar.  When I would select them they would not enlarge.  They remained in a thumbnail view.  My email and Internet work as expected.  Any ideas what's causing this?

    Hello @Bjenkins,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I have read your post on how your external monitor will not display full view Microsoft applications on your system, and that certain functions will not work on your desktop. How long ago did your applications work properly? I would be happy to help you, but first I would encourage you to post your product number for your computer. Below is a is an HP Support document that will demonstrate how to find your computer's product number. In addition, it will also help if you indicate which operating system you are using; and whether your operating system is 32 or 64 bit. The more information you can provide, the better!
    How Do I Find My Model Number or Product Number?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please re-post with the necessary information, this way I will be able to research this further for you. I look forward to your reply!
    Cheers!
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • Total value for PO not displayed

    Hi,
    While creating a SSP PO, the total value is not displayed. Please suggest.
    Regards,
    Anand.

    Dear Poster
    Your thread has had no response since it's creation over
    2 weeks ago, therefore, I recommend that you either:
    - Rephrase the question.
    - Provide additional Information to prompt a response.
    - Close the thread if the answer is already known.
    Thank you for your compliance in this regard.
    Jason Boggans
    SAP SRM SDN Moderator

  • Credit/debit values in report not displaying properly

    HI friends,
                    In one of my report i need to get credit and debit and credit/debit values for the key due date>365 days. I have given the restriction on net due date as <key due date-365.But all the customers in the range above 365 days are not displaying. Only credit values are being displayed that too some are missing.but the inprovider has data more than the report.I need to get all the data into report.Any suggestions

    HI,
    please apply local filter if you have applied global filter and check if it works or not.
    I hope you are aware about local and global filters at query level.
    Regards,
    AL

  • Opening PopUp window not displaying 1st view in background

    Hello,
    I developed WDA with Tree UI element. now on click of childnode (UI elemment TreeItemType), i am opening window. below is the code that i put in method.
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      lo_window         = lo_window_manager->create_window(
                         window_name            = 'W_JOBCODE'
                         title                  = l_string
                     close_in_any_case      = abap_true
                         message_display_mode   = if_wd_window=>co_msg_display_mode_selected
                     close_button           = abap_true
                         button_kind            = if_wd_window=>co_buttons_close
                         message_type           = if_wd_window=>co_msg_type_none
                         default_button         = if_wd_window=>co_button_close
      l_api = wd_this->wd_get_api( ).
      lo_window->set_window_position( position = if_wd_window=>co_center ).
    lo_window->set_window_size( width = '900px' height = '900px' ).
      lo_window->open( ).
    also i embeded view V_JOBCODE inside window W_JOBCODE.
    my requirement is that when this window gets opened, my earlier view should be displayed in background. Now when the window is getting opened, the ealier view is not displayed at all. earlier i developed another WDA where i am displaying window on click of URL to Action UI element and there i am able to see the 1st view in background. I checked all things but not sure why for my current WDA, i am not able to see 1st view in background.
    Please let me know if anyone has any clue.
    Regards,
    Chandra

    Hi Chandra,
    Use the below code to open a new window in the same component.
    data: str type string,
              l_window1 type ref to if_wd_window_manager,
              l_cmp_api type ref to if_wd_component,
              result1 type ref to if_wd_window.
        call method cl_wd_utilities=>construct_wd_url
        exporting
          application_name = 'Component Name'
          importing
          out_absolute_url = str.
        l_cmp_api = wd_comp_controller->wd_get_api( ).
        l_window1 = l_cmp_api->get_window_manager( ).
        result1 = l_window1->create_external_window(
        url = str ).
        result1->open( ).
    Regards,
    Simi A M

  • Dynamic Lov not Displaying

    Hi
    I am having trouble in displaying my dynamic record group. I created a default record group and LOV called RG_TRY and LOV_TRY. I based LOV_TRY on RG_TRY which is a SQL query with one column. I call this LOV by pressing a button. However, I want to change the SQL when the button is pressed. I tried this code in my KEY-LISTVAL but the LOV doesn't display anything. What am I doing wrong? I put message to see if the Recorg group is being created. It is but not displaying the LOV. Please help.
    x number;
    rg_name VARCHAR2(40) := 'RG_TEST';
    rg_id RecordGroup;
    lov_id LOV;
    a_value_chosen BOOLEAN;
    code_col GROUPCOLUMN;
    qry varchar2(4000);
    BEGIN
         rg_id := FIND_GROUP('RG_TEST');
         qry := 'SELECT NAME FROM TEST';
         IF NOT ID_NULL(RG_ID) then
              delete_group(RG_id);
         END IF;
         rg_id := CREATE_GROUP_FROM_QUERY(rg_name, qry);
         x := POPULATE_GROUP(rg_id);
         message(x);
         lov_id := FIND_LOV('LOV_TRY');
         SET_LOV_PROPERTY('LOV_TRY', GROUP_NAME, rg_name);
         message(get_lov_property('LOV_TRY', GROUP_NAME));
    a_value_chosen := Show_Lov('LOV_TRY', 40, 40);
    END;

    Hi,
    Your code works fine in a form I just made.
    declare
       x                                            number;
       rg_name                                      varchar2( 40 ) := 'RG_TEST';
       rg_id                                        recordgroup;
       lov_id                                       lov;
       a_value_chosen                               boolean;
       code_col                                     groupcolumn;
       qry                                          varchar2( 4000 );
    begin
       rg_id := find_group( 'RG_TEST' );
       qry := 'SELECT NAME FROM TEST';
       if not id_null( rg_id )
       then
          delete_group( rg_id );
       end if;
       rg_id := create_group_from_query( rg_name, qry );
       x := populate_group( rg_id );
       message( x );
       lov_id := find_lov( 'LOV_TRY' );
       set_lov_property(
          'LOV_TRY'
        , group_name
        , rg_name );
       message( get_lov_property( 'LOV_TRY', group_name ) );
       a_value_chosen := show_lov(
                           'LOV_TRY'
                         , 40
                         , 40 );
    end;And you get no error messages? And you see all messages appear on the message bar?
    In that case I have no clue.
    Grtx,
    Remco

  • Photo albums not displayed when viewing my website

    I have a website for my band www.lastarrow.combut the photos page isn't displaying properly.
    It should look like this:
    http://i68.photobucket.com/albums/i27/eastwoodandy/Picture5.png
    But it is displaying like this:
    http://i68.photobucket.com/albums/i27/eastwoodandy/Picture7.png
    The page was fine a couple of weeks ago, the only recent change is that I've had to remove the domain name from mobileme (because I now have two websites & domain names) and just have www.lastarrow.com redirect to http://web.me.com/andywoodhouse/Last_Arrow/Home.html
    The direct link to the photos page is http://web.me.com/andywoodhouse/Last_Arrow/Photos/Photos.html
    Can anyone offer any help on this?
    I tried changing some of the attributes of the photos page (changing the photo album borders) and republished but they are still not displaying.
    I have also done a test by publishing to folder and opening it in a browser and it works perfectly fine.

    Andy:
    Try using the File->*Publish All to MobileMe* menu option to republish your site. See if that will work. I see you're at the latest iWeb version, 2.0.4, so that's not a factor.
    OT

  • Preview not displaying List View Data past first row

    I guess this is a simple question.  I have my Excel model working the way I wish it to.  The components before preview are functioning accordingly.  When Preview is run, the data in the two spreadheet tables is not displayed past the first row.
    Basically, is there some gremlin within Flash that is ignoring or deleting the functions (VLOOKUP) in the targeted display area?  By all rights, this should be working, and I am kind of surprised that it isn't

    If the data is static, it will display.  My research turned up that VLOOKUP and HLOOKUP functions will not display after the first row of data.
    Source:  Xcelsius 2008 Dashboard best Practices by Loren Abdulezer, pages 407-408
    My problem is that in making the data dynamically selectable, and using multiple functions to bring results to the top of the spreadsheet instead of their respective locations; it has created a situation where I have an Excel model that works, but an Xcelsius model that does not.
    Doesn't look like there really is a solution to what I am trying to do, short of completely rebuilding the model, which I do not have the ability to replicate.

  • Enum value not displaying in view - correct method to display in column?

    Hello again Experts,
    Having trouble with certain columns not populating in my custom class. I know I must have entered them incorrectly, hoping someone can shed some light on it.
    Its a custom work item class, so I borrowed the Work Item Status property but am obviously referencing it wrong...
    under my class properties its listed as follows:
    <Property ID="Status" Type="enum" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="56" MinLength="0" Required="false" Scale="0" EnumType="WorkItem!IncidentStatusEnum" />
    In my Columns definition its entered like this (this is where I made the mistake I think):
    <mux:Column Name="Status.DisplayName" DisplayMemberBinding="{Binding Path=IncidentStatusEnum.DisplayName, Mode=OneWay}" Width="100" DisplayName="Status" Property="Status.DisplayName" DataType="s:String" />
    Next is a custom enum called Source_List, here is the property again followed by the column definition:
    <Property ID="Source" Type="enum" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" EnumType="Source_List" />
    <mux:Column Name="Source.DisplayName" DisplayMemberBinding="{Binding Path=Source_List.DisplayName, Mode=OneWay}" Width="100" DisplayName="Source List" Property="Source.DisplayName" DataType="s:String" />
    The last one is "Destination FSL", below are the property and column definitions:
    <Property ID="Target_FSL" Type="enum" AutoIncrement="false" Key="false" CaseSensitive="false" MaxLength="256" MinLength="0" Required="false" Scale="0" EnumType="Destination_FSL_List" />
    <mux:Column Name="Destination_FSL_List" DisplayMemberBinding="{Binding Path=Destination_FSL_List, Mode=OneWay}" Width="100" DisplayName="Destination FSL" Property="Target_FSL" DataType="s:String" />
    I know I've mucked them up pretty bad... I kept trying to change things around hoping I could get it to work so pls forgive my newbiness! Thanks in advance.

    Look at other views in Service Manager's management packs to get insight into how enum columns are configured.
    Change your binding paths to Status.DisplayName, Source.DisplayName, and Target_FSL.DisplayName respectively. You have to bind your columns to your object properties, not your lists.

  • PDF files not displayed on View Output via Citrix

    Running OraFin via Citrix, we are generating custom AR invoices as XML converted to PDFs via XML Publisher then are attemping to view the invoices as PDFs in Adobe Reader. The process works fine for the most part, but some users find that the ability to view the PDFs stops suddenly. IE displays a blank window without any indication that Adobe Reader is being called. The problem persists until we kill the Adobe Reader process for that user (AcroRd32.exe) using the Citrix server's Windows task list utility. The problem has not occured outside of Citrix. Anyone have this experience? Any advice on what might overcome the problem?

    Does this happen with other PDFs on the server? You might check out the Adobe forums.
    Regards, Tim

  • Column value & heading is not displaying in xml publisher report

    Hi All,
    All Inventories Value Report - Average Costing Standard report copied to cusoom report. Now in rdf I need to add few column like PO Number, Receipt Number, Supplier Number etc.. for this I need Inventory_item_id & organization_id so that I can create the new data modal. But not able to get the Inventory_item_id & organization_id column display in .xml file. Please look and let me koow the solution.
    SELECT cost_group,
           item,
           category,
           description,
           uom,
           SUM(STKQTY) STKQTY,
           SUM(INTQTY) INTQTY,
           SUM(RCVQTY) RCVQTY,
           SUM(STKVAL) STKVAL,
           SUM(INTVAL) INTVAL,
           SUM(RCVVAL) RCVVAL,
            inventory_item_id,
           organization_id
    FROM(        
    SELECT CCG.cost_group COST_GROUP,
           &P_ITEM_SEG ITEM,
           &P_CAT_SEG CATEGORY,
           MSI.description DESCRIPTION,
           MSI.primary_uom_code UOM,
           ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) STKQTY,
           0 INTQTY,
           0 RCVQTY,
           ROUND(
             SUM(CIQT.rollback_qty) *
             DECODE(SUB.asset_inventory,1,CICT.item_cost,0) *
             :pv_exchange_rate/
             :pv_round_unit
           :pv_round_unit STKVAL,
           0 INTVAL,
           0 RCVVAL,
          CIQT.inventory_item_id,
           CIQT.organization_id
    FROM   cst_inv_qty_temp CIQT,
           cst_inv_cost_temp CICT,
           mtl_parameters MP,
           mtl_system_items_vl MSI,
           mtl_categories MC,
           mtl_secondary_inventories SUB,
           cst_cost_groups CCG
    WHERE  CIQT.qty_source in (3,4)
    AND    CICT.cost_source = 1
    AND    CICT.organization_id = CIQT.organization_id
    AND    CICT.inventory_item_id = CIQT.inventory_item_id
    AND    (   MP.primary_cost_method = 1
           OR  CICT.cost_group_id = CIQT.cost_group_id) -- should we split?
    AND    MP.organization_id = CIQT.organization_id
    AND    SUB.organization_id = CIQT.organization_id
    AND    SUB.secondary_inventory_name = CIQT.subinventory_code
    AND    MSI.organization_id = CIQT.organization_id
    AND    MSI.inventory_item_id = CIQT.inventory_item_id
    AND    MC.category_id  = CIQT.category_id
    AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
    GROUP
    BY     CCG.cost_group,
           &P_ITEM_SEG,
           &P_CAT_SEG,
           MSI.description,
           MSI.primary_uom_code,
           DECODE(SUB.asset_inventory,1,CICT.item_cost,0),
            CIQT.inventory_item_id,
           CIQT.organization_id
    UNION ALL
    SELECT CCG.cost_group COST_GROUP,
           &P_ITEM_SEG ITEM,
           &P_CAT_SEG CATEGORY,
           MSI.description DESCRIPTION,
           MSI.primary_uom_code UOM,
           0 STKQTY,
           ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) INTQTY,
           0 RCVQTY,
           0 STKVAL,
           ROUND(
             SUM(CIQT.rollback_qty) *
             CICT.item_cost *
             :pv_exchange_rate/
             :pv_round_unit
           :pv_round_unit INTVAL,
           0 RCVVAL,
            CIQT.inventory_item_id,
           CIQT.organization_id
    FROM   cst_inv_qty_temp CIQT,
           cst_inv_cost_temp CICT,
           mtl_parameters MP,
           mtl_system_items_vl MSI,
           mtl_categories MC,
           cst_cost_groups CCG      
    WHERE  CIQT.qty_source in (6,7)
    AND    CIQT.organization_ID = :P_ORG_ID
    AND    CICT.cost_source = 1
    AND    CICT.organization_id = CIQT.organization_id
    AND    CICT.inventory_item_id = CIQT.inventory_item_id
    AND    (   MP.primary_cost_method = 1
           OR  CICT.cost_group_id = CIQT.cost_group_id) -- should we split?
    AND    MP.organization_id = CIQT.organization_id
    AND    MSI.organization_id = CIQT.organization_id
    AND    MSI.inventory_item_id = CIQT.inventory_item_id
    AND    MC.category_id  = CIQT.category_id
    AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
    GROUP
    BY     CCG.cost_group,
           &P_ITEM_SEG,
           &P_CAT_SEG,
           MSI.description,
           MSI.primary_uom_code,
           CICT.item_cost,
            CIQT.inventory_item_id,
           CIQT.organization_id
    UNION ALL
    SELECT CCG.cost_group COST_GROUP,
           &P_ITEM_SEG ITEM,
           &P_CAT_SEG CATEGORY,
           MSI.description DESCRIPTION,
           MSI.primary_uom_code UOM,
           0 STKQTY,
           0 INTQTY,
           ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) RCVQTY,
           0 STKVAL,
           0 INTVAL,
           ROUND(
             SUM(CIQT.rollback_qty)*
             CICT.item_cost *
             :pv_exchange_rate /
             :pv_round_unit
           :pv_round_unit RCVVAL,
          CIQT.inventory_item_id,
           CIQT.organization_id
    FROM   cst_inv_qty_temp CIQT,
           cst_inv_cost_temp CICT,
           mtl_system_items_vl MSI,
           mtl_categories MC,
           mtl_parameters MP,
           cst_cost_groups CCG
    WHERE  CIQT.qty_source = 9
    AND    CICT.cost_source = 3
    AND    CICT.organization_id = CIQT.organization_id
    AND    CICT.inventory_item_id = CIQT.inventory_item_id
    AND    CICT.rcv_transaction_id = CIQT.rcv_transaction_id
    AND    MSI.organization_id = CIQT.organization_id
    AND    MSI.inventory_item_id = CIQT.inventory_item_id
    AND    MC.category_id  = CIQT.category_id
    AND    MP.organization_id = CIQT.organization_id
    AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
    GROUP
    BY     CCG.cost_group,
           &P_ITEM_SEG,
           &P_CAT_SEG,
           MSI.description,
           MSI.primary_uom_code,
           CICT.item_cost,
             CIQT.inventory_item_id,
           CIQT.organization_id
    ) TEMP
    GROUP BY cost_group,
           item,
           category,
           description,
           uom,
            inventory_item_id,
           organization_id
    - <CSTRAIVA> 
    - <LIST_G_COST_GROUP> 
    - <G_COST_GROUP> 
    <COST_GROUP>100191</COST_GROUP>  
    - <LIST_G_CATEGORY> 
    - <G_CATEGORY> 
    <CATEGORY>Not Assigned</CATEGORY>  
    - <LIST_G_ITEM> 
    - <G_ITEM> 
    <ITEM>82557653</ITEM>  
    <DESCRIPTION>BEARING LINING (GLACIER 100KSA075)</DESCRIPTION>  
    <UOM>EA</UOM>  
    <STKQTY>6</STKQTY>  
    <STKVAL>38934.7</STKVAL>  
    <RCVQTY>0</RCVQTY>  
    <RCVVAL>0</RCVVAL>  
    <INTQTY>0</INTQTY>  
    <INTVAL>0</INTVAL>  
    <CF_ITEM>82557653</CF_ITEM>  
    <TOTQTY>6</TOTQTY>  
    <TOTVAL>38934.7</TOTVAL>  
    <CF_STKVAL_DSP>38,934.70</CF_STKVAL_DSP>  
    <CF_INTVAL_DSP>0.00</CF_INTVAL_DSP>  
    <CF_RCVVAL_DSP>0.00</CF_RCVVAL_DSP>  
    <CF_TOTVAL_DSP>38,934.70</CF_TOTVAL_DSP>  
    </G_ITEM>
    </LIST_G_ITEM>
    <CF_ORDER />  
    <CF_CATEGORY>Not Assigned.</CF_CATEGORY>  
    <SUMSTKVALPERCATEGORY>38934.7</SUMSTKVALPERCATEGORY>  
    <SUMINTVALPERCATEGORY>0</SUMINTVALPERCATEGORY>  
    <SUMRCVVALPERCATEGORY>0</SUMRCVVALPERCATEGORY>  
    <SUMTOTVALPERCATEGORY>38934.7</SUMTOTVALPERCATEGORY>  
    <CF_SUM_STKVAL_CAT_DSP>38,934.70</CF_SUM_STKVAL_CAT_DSP>  
    <CF_SUM_INTVAL_CAT_DSP>0.00</CF_SUM_INTVAL_CAT_DSP>  
    <CF_SUM_RCVVAL_CAT_DSP>0.00</CF_SUM_RCVVAL_CAT_DSP>  
    <CF_SUM_TOTVAL_CAT_DSP>38,934.70</CF_SUM_TOTVAL_CAT_DSP>  
    </G_CATEGORY>
    </LIST_G_CATEGORY>
    <SUMSTKVALPERCOST_GROUP>38934.7</SUMSTKVALPERCOST_GROUP>  
    <SUMINTVALPERCOST_GROUP>0</SUMINTVALPERCOST_GROUP>  
    <SUMRCVVALPERCOST_GROUP>0</SUMRCVVALPERCOST_GROUP>  
    <SUMTOTVALPERCOST_GROUP>38934.7</SUMTOTVALPERCOST_GROUP>  
    <CF_SUM_STKVAL_CG_DSP>38,934.70</CF_SUM_STKVAL_CG_DSP>  
    <CF_SUM_INTVAL_CG_DSP>0.00</CF_SUM_INTVAL_CG_DSP>  
    <CF_SUM_RCVVAL_CG_DSP>0.00</CF_SUM_RCVVAL_CG_DSP>  
    <CF_SUM_TOTVAL_CG_DSP>38,934.70</CF_SUM_TOTVAL_CG_DSP>  
    </G_COST_GROUP>
    </LIST_G_COST_GROUP>
    <SUMSTKVALPERREPORT>38934.7</SUMSTKVALPERREPORT>  
    <SUMINTVALPERREPORT>0</SUMINTVALPERREPORT>  
    <SUMRCVVALPERREPORT>0</SUMRCVVALPERREPORT>  
    <CS_DUMMY>1</CS_DUMMY>  
    <SUMTOTVALPERREPORT>38934.7</SUMTOTVALPERREPORT>  
    <CF_SUM_STKVAL_REP_DSP>38,934.70</CF_SUM_STKVAL_REP_DSP>  
    <CF_SUM_INTVAL_REP_DSP>0.00</CF_SUM_INTVAL_REP_DSP>  
    <CF_SUM_RCVVAL_REP_DSP>0.00</CF_SUM_RCVVAL_REP_DSP>  
    <CF_SUM_TOTVAL_REP_DSP>38,934.70</CF_SUM_TOTVAL_REP_DSP>  
    </CSTRAIVA>

    Thanks for your reply.
    I did below changes in the CQWP but no luck. Please let me know if any further modification needed.
    Thank you!
            <property name="DataMappingViewFields" type="string">{b9e6f3ae-5632-4b13-b636-9d1a2bd67120},Computed;{543bc2cf-1f30-488e-8f25-6fe3b689d9ac},Image;{94f89715-e097-4e8b-ba79-ea02aa8b7adb},Lookup;{fa564e0f-0c70-4ab9-b863-0177e6ddd247},Text;{33f34208-1553-4361-b3ff-26f5da1ae591},Text;{b7ff04a4-a33a-429a-99bd-0ac5367bd189},User;{37cb0520-3169-4bca-9941-1886a5a73f92},DateTime;{6b2c772c-a130-4814-bfd0-d84efb061e3b},TaxonomyFieldType;{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},User;{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f},DateTime;</property>
            <property name="DataMappings" type="string">Editor:{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},Editor,User;|Actors:|Modified:{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f},Modified,DateTime;|Input:|Title:{fa564e0f-0c70-4ab9-b863-0177e6ddd247},Title,Text;|LinkUrl:{94f89715-e097-4e8b-ba79-ea02aa8b7adb},FileRef,Lookup;|ExpiryDate:{37cb0520-3169-4bca-9941-1886a5a73f92},ExpiryDate,DateTime;|Author:{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},Editor,User;|Approver:{f30275e3-0638-451f-bb1f-b5c74ac432ef},Approver,User;|PreRequisites:|DocumentOwner:{b7ff04a4-a33a-429a-99bd-0ac5367bd189},DocumentOwner,User;|Trigger:|RelatedtoGeneralTopic:{6b2c772c-a130-4814-bfd0-d84efb061e3b},RelatedtoGeneralTopic,TaxonomyFieldType;|OpenInNewWindow:|Frequency:|Image:|Output:|Body:|Locallyvalidfor:{31a5c887-10a3-49ca-afa0-97c5679bbda9},Locallyvalidfor,TaxonomyFieldType;|ProcessOwner:|ShortDescription:{33f34208-1553-4361-b3ff-26f5da1ae591},ShortDescription,Text;|Description:{691b9a4b-512e-4341-b3f1-68914130d5b2},ShortComment,Text;|Created:|LinkToolTip:|Mandatory:|ProcessManager:|ImageUrl:{b9e6f3ae-5632-4b13-b636-9d1a2bd67120},EncodedAbsThumbnailUrl,Computed;{543bc2cf-1f30-488e-8f25-6fe3b689d9ac},PublishingRollupImage,Image;|</property>

  • VALUE CREATED, but not DISPLAYED IN QUERY

    Hi dear all,
    I have created a value under InfoObject A by going to RSA1.
    Now while creating a Query, i have to use this value.
    But this created value is not seen under that Navigational attribute,
    B__A
    What shud i do???
    Need Help..
    Thanks,
    Sowrabh

    When you right click on the Charachteristic and say restrict. You are not able to find the new value. Is this your issue??? try the folloiwng.
    In 3.5
    Right Click on the Characteristic and say restrict and go to fixed values.
    At the Bottom you can see a Display Other Valu Option(Yellow-green Colour Arrow)
    Click on that. this opens a new window.
    In this Window uncheck the Only Values From infoprovider
    Also uncheck the Authorized Values Only Checkbox
    Also Set the Number of Displayed Values to All
    Now Click OK. This will show you all the values for that particular Characteristic.
    In 7.0
    When u restrict a Charachteristic, u will see an option called Setting which is on top
    When u click on that it will open a new Window . In that window, select value restrictions.
    in that select the Radio Button All values And Read Mode Setting as Values in Master data.
    Thsi will give you all the values

  • Mail not displaying Message Viewer window

    Hi,
    Just installed Lion on a 2.8GHz Intel Core 2 Duo Mac. After installing Lion, Mail refuses to display the message viewer window. I can open 'file > new message' and 'file > new note' windows but when selecting 'new viewer window' nothing happens, the same if I select 'Mail > Preferences'. Mail seems to be connecting and downloading messages okay but I can't view them!
    Any help appreciated!
    Chris

    Simular problem:
    Its iMail Version 6.3 (1503) which comes with a fresh install of 10.8.3.
    Any email base64 encoded is corrupted or not shown.
    eg Any message from and Exchange Client that has both plain text and html in the same message where the plain text section is Base64 encoded.
    eg
    Content-Type: multipart/alternative;
         boundary="_000_CD848A046C8D3_"
    MIME-Version: 1.0
    --_000_CD848A046C8D3_
    Content-Type: text/plain; charset="utf-8"
    Content-Transfer-Encoding: base64
    base 64 encoded block
    -_000_CD848A046C8D3_
    Content-Type: text/html; charset="utf-8"
    Content-Transfer-Encoding: base64
    base 64 encoded block
    The work arround it to switch to the classic view, open the message there, then switch back to the modern view and the text of the message magically appears. Its probably something to do with the way in which the new iMail processes message bodies, that the older style viewer had fixed. (You can switch between classic view and modern view under the Vieweing preferences tab)
    It also seems to impact sent messages or anything thats been base64 encoded.
    Hopefully its such a major bug it will be fixed soon. (lol, like some of the bugs in iMail on 10.6.8 were fixed ?)

  • Not Displaying Canvas/Viewer

    I cannot see the video/graphics in the viewer!! I've tried multiple options, from changing it to RGB only, Color, etc....but there is nothing displaying. I've even opened up a premade Motion template to make sure, and still nothing!? It may be something very basic (I am still learning the program) but I haven't figured it out yet! Help.
    Thank you in advance,
    Brittney

    I'm not at my FCP machine right now but all of those are windows and they can be opened or closed from the VIEW (or is it WINDOW) menu. There are keyboard shortcuts, too.
    You may need to invoke one of the stock LAYOUTS to get everything back on your screen if you had moved some of the windows off your monitor and forgot to bring them back into position before shutting down last time.
    bogiesan

Maybe you are looking for