Shift-Tab to decrease indent level in list not working.

I really can't say it any clearer: when I press Shift-Tab to decrease the indent level (for example in an outline-style list), it is not decreasing the indent level.
This is for Pages 5.1/Mavericks 10.9.1
This used to work in iWork '09 but I just tried it in Pages '09 and I get a error beep.
The only thing I can think of is that there is some accessibility or other command that is overriding this but I can't figure out what.
Any ideas?

PeterBreis0807 wrote:
It is working for me. I tried Numbered, Letter and Harvard lists.
The only place it doesn't work is in tables where it jumps cells.
What do you actually mean by "Outline style list"?
Peter
I'm using a Harvard list. It simply is not working.
Just called AppleCare and they had not seen this issue but I got bumped up to iWork support (or whatever they are calling it now). They are calling me back tomorrow.
Command-] works for indenting as well but Command-[ does not work for outdenting.
My guess is it is a conflict but I thought maybe someone had run into this before and there might be a quick fix.

Similar Messages

  • Cascading Select Lists - Not Working for me

    I am trying to implement Denes Kubicek's Ajax Cascading Select List solution.
    http://apex.oracle.com/pls/otn/f?p=31517:119
    But it is not working for me.
    I'm a newbie to APEX and checked the forum for advice on cascading select lists. I saw the thread for
    "Cascading Select Lists - Not Working" posted by sue and the replies by Varad Acharya, but I'm still
    having issues of not seeing the alerts, not able to run the pl/sql process in SQL Workshop, and not
    getting the expected results.
    I have a list of countries (US - USA, CA - CANADA, etc.) and a list of states for each country. When a
    user selects a country I would like to show the list of states within that country.
    This is what I've done so far:
    Defined an application process:
    Process Point: On Demand: Run ... by a page process.
    Name: CASCADING_SELECT_LIST1
    Process Text:
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<select>');
    HTP.prn ('<option value="' || 99 || '">' || '- All States -'
    || '</option>'
    FOR c IN (SELECT state_code || ' - ' || state_desc d, state_code r
    FROM tbk_state
    WHERE country_code = :cascading_selectlist_item_1)
    LOOP
    HTP.prn ('<option value="' || c.r || '">' || c.d || '</option>');
    END LOOP;
    HTP.prn ('</select>');
    END;
    defined and application item:
    Name: CASCADING_SELECTLIST_ITEM_1
    Build Option: - No Build Option -
    Created a 'Form on a table with report' as follows:
    Page 5: Report on TBK_HARDWARE_LOCATION
    Page 6: Form on TBK_HARDWARE_LOCATION
    in HTML Header of the page attributes for 'Form on TBK_HARDWARE_LOCATION' I have:
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='"DELETE_CONFIRM_MSG"';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue)
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    On Page 6: 'Form on TBK_HARDWARE_LOCATION' I have the following items (plus some others):
    Name: P6_COUNTRY_CODE
    Display as: Select List
    HTML Form Element Attributes: onchange="get_select_list_xml1(this,'P6_STATE_CODE');"
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: COUNTRY_CODE
    Named LOV: LIST OF COUNTRIES
    Name: P6_STATE_CODE
    Display as: Select List
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: STATE_CODE
    Named LOV: - Select named LOV -
    List of Values definition:
         select state_code || ' - ' || state_desc d, state_code r
         from tbk_state
         where country_code = :P6_COUNTRY_CODE
         order by 1
    LIST OF COUNTRIES is defined as:
    select country_code || ' - ' || country_desc d, country_code r
    from tbk_country
    order by 1
    Now to the problem:
    I run page 5 (the report) to see the list of locations and then I try to edit a record (page 6). When I
    try to select a different country I get the following error (on IE):
    "Problems with this web page might prevent it from being displayed properly or functioning properly.
    In the future, you can display this message by double-clicking the warning icon displayed in the status
    bar.
    Line: 17
    Char: 5
    Error: Object expected
    Code: 0
    URL: http//cmrac4.cm.timeinc.com:7777/pls/htmldb/f?
    p=114:6:1413254636072443110::::P6_HARDWARE_LOCATION_ID:2
    I don't see any of the alert messages.
    I also tried to run the application process code in the SQL - Command Processor (I replaced
    :cascading_selectlist_item_1 with 'CA' or 'US') and got the following:
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh
    button, or try again later.
    Only one top level element is allowed in an XML document. Error processing resource
    'http://cmrac4.cm.timeinc.com:7777/pls/...
    <select><option value="99">- All States -</option><option value="X1">X1 - X1</option><optio...
    Can someone help me please?

    Varad,
    First, thank you for taking the time to try to help me with this problem.
    When I view the page's source code (here are the first few lines):
    <html lang="en-us">
    <head>
    <script src="/i/javascript/core.js" type="text/javascript"></script>
    <link rel="stylesheet" href="/i/css/core.css" type="text/css" />
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='Would you like to perform this delete action?';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    //alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    //alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue);
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    It looks like line 17 is:
    var l_Select = html_GetElement(pSelect);
    I'm still not sure why I'm getting this error and why it's not working?
    Thanks,
    Eti

  • Multi Level BOm is not working in SAP afs

    Hi Experts,
             I am facing issue in MRP.For multi level bom's ,Requirements is not getting generates.Is there any settings is there to active multi level bom for afs materials.
    please suggest solution
    Thanks and Regards,
    Deepika.

    Hello Deepika,
    As we know AFS materials are planned at SKU level (Grid and stock categories)  you can use AFS MRP (/N/AFS/MD02) only.
    Please refer OSS note Note 981747 - FAQ - AFS Production Planning
    Question 5 Made-To-Order Planning -Multi-Level (MD50) does not work for AFS Materials and Sales Orders containing AFS materials.
    Answer: Made to Order Multi level planning functionality was never enhanced for AFS and hence transaction MD50 is not supported.
    Steps are as,
    1. Create a MTO/PTO sales order for an AFS material.
    2. Run AFS MRP using transaction code /AFS/MD02.
    3. Convert the planned order to production order.
    Best Regards,
    R.Brahmankar

  • For  MTO scenario,multi level bom is not working sap afs pp

    Hi Experts,
                  We are implementing MTO scenario for our client. I have maintained  strategy group for FERT is 40 and strategy group for HALB and ROH are 20.
                   For single level BOM , requirements is not getting generates properly.
                  I would like to know What are all the settings is required to create AFS BOM.(single and multi level)
                   Please suggest me.
    Thanks & Regards,
    Deepika.

    Hello Deepika,
    As we know AFS materials are planned at SKU level (Grid and stock categories)  you can use AFS MRP (/N/AFS/MD02) only.
    Please refer OSS note Note 981747 - FAQ - AFS Production Planning
    Question 5 Made-To-Order Planning -Multi-Level (MD50) does not work for AFS Materials and Sales Orders containing AFS materials.
    Answer: Made to Order Multi level planning functionality was never enhanced for AFS and hence transaction MD50 is not supported.
    Steps are as,
    1. Create a MTO/PTO sales order for an AFS material.
    2. Run AFS MRP using transaction code /AFS/MD02.
    3. Convert the planned order to production order.
    Best Regards,
    R.Brahmankar

  • BW Field level Autorizations are not working in the WEBI Reports

    Dear All,
    1. I have created Authorization roles with Infoobjects Authorization Objects.
    2. In Bex Query Authoizations are working on the Infoobjects like for
    Ex: For USER1 I have given Company code = 1000 &
    User 2 I have given authorization for 1100.....
    3. Import those roles into Business Objects-CMC.
    4.Users were Imported.
    But in the WEBI Reports BW Field level Authorizations are not working i.e for USER1 authorization for Company code is 1000 , in WEBI report it is showing all the Company codes data for USER1.
    For USER2 also showing all the data in the WEBI report.
    Plz help me on this issue.
    Thanks,
    Kiran Manyam

    Hi,
    For Authorization to work in BO you can check the following:
    1. You need to create authorization variables in your BEx query.
         Also these variables should not be input ready.
    2. While creating universe in BO you need to select "Single Sign On" option available in the parameters iwhile creating a new
        connection.
    Regards,
    Rohit

  • [svn:fx-trunk] 5445: Fix for - @ copy tag for two methods with different arg lists not working.

    Revision: 5445
    Author: [email protected]
    Date: 2009-03-19 17:47:57 -0700 (Thu, 19 Mar 2009)
    Log Message:
    Fix for - @copy tag for two methods with different arg lists not working.
    Some changes for refactoring.
    QE Notes: None.
    Doc Notes: None.
    Bugs: SDK-19975
    tests: checkintests, asdoc
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19975
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocUtil.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

    Revision: 5445
    Author: [email protected]
    Date: 2009-03-19 17:47:57 -0700 (Thu, 19 Mar 2009)
    Log Message:
    Fix for - @copy tag for two methods with different arg lists not working.
    Some changes for refactoring.
    QE Notes: None.
    Doc Notes: None.
    Bugs: SDK-19975
    tests: checkintests, asdoc
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19975
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocUtil.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

  • Listing not working

    Hello Gurus,
    I am new on SAP, around 4 months, and I am having some problems related to the assortment/listing methods, that suddenly stopped working.
         I did the mass load of the articles and then the assortment using the T-code WLWBN (later I learned that I could have used the WSM3). At first was all fine, I was able to create POs to all the plants listed in the assortment.
         When already in production the users begun to create the articles manually and now even if I do the Individual Listing using T-code WSP4 it wont work.
         I started the investigation and noticed that the two DC plants were not set to "B" on the table T001W-VLFKZ and I still haven´t found how to change it. I did some modifications on the WB02 for the plant but nothing changed. I do not know how this could influence on the listing process but yes, I also have to fix it, currently there is none DC set on the system.
         Now, every time the users want to use the article in a different plant I have to add manually in the Logistics:store view on the article master.
    Currently they are not using hierarchy on the articles, so I am using the generic listing.
    Also, I haven´t done anything on the t-code REFSITE, but I not sure if this could influence.
    Please, forgive the lack of information. But any idea where else I can check?
    Have to solve this asap and any information is welcome.
    Best regards.

    Hi Paul, let me try to answer it all.
    1 - How many Stores?
         Currently they have 45 stores
    2 - How many DC?
    They should have 2 DCs, but these two were created as stores by mistake and I still unable to change it      without causing a bigger problem. You might ask why we allowed this to go in Production, well, I don´t know.
    3 - Do you really need the granularity and control of listing conditions that is afforded by using Layout Workbench?  Or could you get by with a much less data maintenance intensive solution.
        What we done until fix the assortment is create a program that (like a LWMS) that the user insert the article and the program add all the stores (including the DCs) into the material, in the logistic tab and then Validity area.
    4 - What listing procedure is maintained for your DC (WB02, Listing Tab)?
    None, is it necessary since the assortment already have this information?
    5 - What listing procedure is maintained for your Stores (WB02, Listing Tab)?
    Also none
    6 - What listing procedure is maintained on the general assortment module for your Stores (WSOA2, Basic Data)?
    K1
    7 - For an article that will not list to the Stores, what listing procedure is maintained (MM42, Listing Tab, Store Listing - Listing Procedure)?   Usually this can be maintained at the basic data level; do not specify a sales org and distribution channel.
    K1
    8 - For an article that will not list to the DC, what listing procedure is maintained (MM42, Listing Tab, Listing DC - Listing Procedure)?  Usually this can be maintained at the basic data level; do not specify a sales org and distribution channel.
    K1
    Well, you are right. They will have the whole retail configuration in plane only next year, for now they will handle only non stock materials.
    For now it is "working" without the assortment, but I wanted at least the listing to the plants to be working.

  • ME21N Material group level authorization is not working in ECC 6.0

    Dear Security Experts,
    We have created a role Z_ME21N with one Tcode ME21N. The role has to restrict users in the material group level.
    For that, we added Authorization object M_MATE_WGR.
    1.     When we are trying to add field values for {M_MATE_WGR, BEGRU}, generally it should show me the list possible values to be used based on the MM configuration related to Material Authorization Group. We have correctly configured the authorization groups from V_TBRG for M_MATE_WGR. But itu2019s not showing any possible values.
    2.     However we are able to add values manually, but I guess these are not being considered during authorization check and our restriction on Authorization group level in ME21N is not working.
    Test Scenario: We have manually added values 005,007,009,010,013 (which is pointing to specific material group) to BEGRU of M_MATE_WGR. We already assigned this Authorization Object to role Z_ME21N and this role has been assigned to u2018testuseru2019, but the authorization check with the M_MATE_WGR authorization group is not happening. It allows operations on all the material groups.
    Anybody came accross same scenario?
    SAP Prodcut version : ECC 6.0
    Database : SQL Server 2005
    Support pack level : 15
    Please share your views, thanks in advance.
    Regards,
    Abu Sandeep

    Dear All,
    I got a reply just now from SAP regarding the same issue.
    I coudnt understand what SAP and you are saying.
    Dear Abu
    *Apologies for the delay. This message has been turned on to application*
    *area of MM from the Basis side just now.*
    *Unfortunately, authorization object "M_MATE_WGR " is not checked*
    *in the purchasing transactions (PR & PO), the system works as standard*
    *functional designed.*
    *Only the following objects are checked in PR/PO:*
    *M_BEST_BSA Document Type in PO M_BANF_BSA Document Type in PR*
    *M_BEST_EKG Purchasing Group in PO M_BANF_EKG Purchasing Group in PR*
    *M_BEST_EKO Purchasing Org. in PO M_BANF_EKO Purchasing Org. in PR*
    *M_BEST_WRK Plant in PO M_BANF_WRK Plant in PR*
    *Setting in check/maintain on in SU24 only means that the profile*
    *generator will propose the object when creating a user, however is*
    *does not mean that M-MATE_WGR will be checked.*
    *Please close this message by pressing the confirm button at your*
    *earliest convenience.*
    *Many thanks in advance for your understanding.*
    So, how can I resolve this problem? John, are you sure that, you implemented this successfully?
    SAP says, this cant be done.
    Regards,
    Abu Sandeep.

  • Dependent Choice List Not working in ECapture as Expected

    Hi Martin_A,
    In ECapture i am trying to create a dependent Chocie list which will show City name based on Country name.
    But in ECapture that configuration is not working since during the creation of Depedent list from Parent
    Source,configuration is taking only one value of Parent source for eg. Country- US
    Hence child choice list is showing cities related to only US.
    Which should not be the case since in actual scenarios depended list means filter on the basis of selected parent value.
    Please let me know if i configured it wrongly.
    Please send me the steps if you did it perfectly last time
    @Martin_A

    Looking at the documentation 3.7 of  Managing Oracle Webcenter Capture, that's how it is, you have to have a separate child list of cities for every country in the country list, only 196 parent items and 196 lists to configure then
    In a choice list dependency, a parent field is linked to two or more child choice lists,
    one of which is displayed after the user makes a selection in the parent field.
    Important Points About Choice List Dependencies
    ■ You can create choice list dependencies between Capture user defined choice lists,
    database choice lists, or between choice list types.
    ■ Create all choice lists you plan to link before creating a choice list dependency. At
    a minimum, you need a parent choice list, and two or more child choice lists.
    ■ Each item in a child list can be related to multiple parent items. For example,
    Supplies could be a child item to Household and Automotive subproducts.
    ■ You can create multi-level dependencies (for example, great grandparent,
    grandparent, parent, and child choice lists).
    ■ Only one choice list dependency may be assigned to a client profile. Multiple
    parent/child dependencies must be defined within a single choice list dependency.
    Martin

  • Indent code keyboard shortcut not working?

    Working on a new website, I started working on my old laptop (white macbook) with Dreamweaver 5.0 installed. When it got too complex for the small screen I took the project to my work computer (Mac Pro) and continued working in Dreamweaver CC. On both computers the shortcut for 'indent code' work as advertised in the help files.
    Tonight I took the project back home and continued working on my newer laptop (MacBookPro 17"). On this laptop I still had CS6 installed so I continued working in CS6. But for some reason the keyboard shortcuts for 'indent code' did not work. In the edit-menu there is no shortcut behind these commands. I found this very annoying, so I installed CC on this laptop too. After installing I took the prefs from the cloud and expected the keyboard shortcuts to work, but bo such luck...
    I then quit Dreamweaver, replaced the Keyboard Shortcut.js file with the one from my Mac Pro. Still no go.
    My work computer is running OSX 10.8, both my laptops are running OSX 10.9. So if the shortcuts a are somehow reseved by the system I guess they should not work on my old laptop either.
    Any suggestions?
    Thanks,
    A

    Tried that, there are no shortcuts associated with these commands. I tried adding the shortcuts but that did not work either. I select the command, click the + sign and press the desired key combination (Shift+Command+>). The window disappears. Most likely because the ">" is also the "." and "command-." is the shortcut for "cancel"...
    I did some further digging and found the shortcuts are stored in the Menus.xml file, burried deep in the Application Support/Abobe etc. folder. But this file is only there after you make a duplicate of the original keyboard settings. I opened this file (in Dreamwaver ) and found the shortcuts for indent/outdent code are there but for some reason it's ignored by Dreamweaver. I removed Dreamweaver from the computer and re-installed, no luck.
    So I made a new set, opened the new xml file and first removed the shortcuts, saved the file, added the shortcuts and saved again. Now they work.
    But I'd still like to know why it did not in the first place...

  • Switching browser using IE tab plus - the Norton Identity Safe does not work

    Using Firefox 4.0.1 and Norton 360 5.1.0.29 - which has recently been "fixed" to work together (by Norton).
    When using IE Tab Plus to switch rendering engines (Firefox to IE) the Norton Identity Safe does not work by not pre filling user names and passwords to sites that are registered in the Norton Safe and also for any new sites does not offer the option to add a new site to the Norton safe . . . . . is this a Norton or Firefox or IE Tab issue? And has anyone else had this problem?

    Symantec need to update their Firefox add-ons so that they are compatible with Firefox 4. They have indicated that for Norton 360 they plan to release an update to Norton 360 to support Firefox 4 in early May - http://us.norton.com/support/kb/web_view.jsp?wv_type=public_web&docurl=20100720113635EN&ln=en_US
    I do not know about the time scale for updates for other Norton products. Pending the update by Symantec, if you want to use the Norton add-ons you will need to downgrade to Firefox 3.6.
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • Binding gateway service with List not working properly with expand

    Hi all,
    We have an orderlist with details, we use the splitapp for it, it's working nicely with a gatewayservice. We have now added with expand 2 orderpartners. I see the 2 partners, only is it completly the same data. I checked the oData structure and I see indeed that the 2 partners are the same. This is weird, because when I execute the service, via my browser, I see 2 different partners.
    If I execute the service directly via the read function, I see in the oData that I also have 2 different partners. So my conclusion is that the direct read of the service is working and executing the service via the sap.m.List is not working with the expand.
    Now my question is, does somebody know what's going wrong here, or is it a bug in the sap.m.List? Below you find code snippets how I call the service.
    This call is working:
    oModel.read("/OrderListSet", null, ["$orderby=BegTstmp asc&$filter=Userid eq 'user' and DateFrom eq datetime'2014-04-20T00:00:00' and DateTo eq datetime'2014-04-27T00:00:00'&$expand=OrderPartners"], null, function(oData, oResponse){  
      }, null );
    The binding via the sap.m.list is:
    var oList = new sap.m.List("orderList", {
      mode: "{device>/listMode}",
                items: {
            path: "/OrderListSet",
               parameters: {expand: "OrderPartners"},
            template : new sap.m.StandardListItem({
            title: {
                   parts: [
                           {path: "BegTstmp", type: new sap.ui.model.type.DateTime({pattern: "H:mm"})},
                           {path: "DataCol2"}
                   formatter : function(strDate, strDescription) { return strDate + " - " + strDescription; }
            description: {
            parts: [
                          "DataCol3",
                          "DataCol4",
                          "DataCol5",
                          "DataCol6"
            type: sap.m.ListType.Navigation,
            icon: "{icon}",
            customData: [
            new sap.ui.core.CustomData({
            key: "orderId",
            value: "{Orderid}"
            new sap.ui.core.CustomData({
            key: "type",
            value: "{Type}"
            // Sort the list on date and group the list on day
                   sorter: new sap.ui.model.Sorter("BegTstmp", false, oGrouper),
                   // Filter the list, this directly refrenced to the gatewayservice
            filters: [
                     util.Filter.getUserId(),
                     util.Filter.getCurrentWeekFromFilter(),
                     util.Filter.getCurrentWeekToFilter(),

    Fine. If you're trying to bind any attributes of OrderPartners, bind it as OrderPartners/attribute-name. Say if "BegTstmp" an attribute of OrderPartners bind it as OrderPartners/BegTstmp.
    Regards
    Sakthivel

  • How I get firefox tab history even sessionstore.bak file is not working after renamed?

    My pc is restart due to power failer. I lost my important tabs. Session restore is not working. Then I renamed sessionrestore.bak file to sessionrestore.js. But still not working. I want get my all tab in sessionrestore.bak again. So please help me to do this.
    If any JavaScript function to filter url from sessionrestore.bak is also ok.
    Thanks

    Do you have clean backup copies of all the sessionstore files? Please do that first to avoid possibly having them deleted or overwritten.
    These threads have suggestions on how to "mine" the old files to extract the URLs:
    * Using Firefox's Browser Console (formerly known as Error Console): https://support.mozilla.org/en-US/questions/969046#answer-471950
    * Using Firefox developer tool "Scratchpad": http://forums.mozillazine.org/viewtopic.php?f=38&t=622036&start=60&p=12098147#p12098147
    * Using a third party website: https://firefox-session-restore.herokuapp.com/

  • Level Based Measures not working

    Hi,
    I've put an LBM at the second Level (Region) of a Dimension called GeographicDIM.
    the Dimension looks like:
    Total, Region, Country
    The LBM is called #Customer_ID_Region, created as new a Logical column of an existing logical Column of my Fact, aggregation.
    If I create a Report with Region, Country, the LBM is correct. then I add another logical Column from the FACT, eg. Revenue_SUM, or Customer_key_Count, the LBM isn't frozen any longer.
    This happens also if I switch place any LBM to an other Dimensions.
    What could it be?
    Thanks in advance
    Frank

    Hi,
    the Problem is still not fixed.
    A LBM at the Grand Total Level works great. If I set a LBM to a Level below its not longer frozen if I add any Fact.
    Here is the SQL-Statement generated if I do the following:
    I created one LBM and set it to the Grand Total and another one set it to a Level below (Region).
    select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3,
    D1.c4 as c4,
    D1.c5 as c5,
    D1.c6 as c6
    from
    (select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3,
    D1.c4 as c4,
    D1.c5 as c5,
    D1.c6 as c6
    from
    (select D1.c2 as c1,
    D1.c4 as c2,
    D2.c1 as c3,
    D1.c1 as c4,
    D1.c3 as c5,
    D1.c5 as c6,
    ROW_NUMBER() OVER (PARTITION BY D1.c2, D1.c4, D1.c5 ORDER BY D1.c2 ASC, D1.c4 ASC, D1.c5 ASC) as c7
    from
    (select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3,
    D1.c4 as c4,
    D1.c5 as c5
    from
    (select sum(D1.c1) over (partition by D1.c2) as c1,
    D1.c2 as c2,
    sum(D1.c3) over (partition by D1.c5, D1.c2) as c3,
    D1.c4 as c4,
    D1.c5 as c5,
    ROW_NUMBER() OVER (PARTITION BY D1.c5 ORDER BY D1.c5 ASC) as c6
    from
    (select count(distinct T196.MASTER_CUSTOMER_KEY) as c1,
    T1365.REGION as c2,
    count(distinct T196.MASTER_CUSTOMER_KEY) as c3,
    T1365.COUNTRY_NAME as c4,
    T1365.COUNTRY_CODE as c5
    from
    GEOGRAPHIC_DIM T1365,
    SALES_FACT T196
    where ( T196.COUNTRY_CODE = T1365.COUNTRY_CODE )
    group by T1365.COUNTRY_CODE, T1365.COUNTRY_NAME, T1365.REGION
    ) D1
    ) D1
    where ( D1.c6 = 1 )
    ) D1,
    (select count(distinct T196.MASTER_CUSTOMER_KEY) as c1
    from
    SALES_FACT T196
    ) D2
    The Grand Total LBM shows the correct Data, the Region-LBM not.
    The Region-LBM is not calculated in a separate statement.
    I don't know why?

  • PR Item Level Release WF not working after Release Strategy change

    Hi Experts,
               I did PR item Level Release Standard Work flow and it was working fine now due to client requirement we changed the release strategy and now when the PR workflow triggers it gives the Below mentioned error.
    I really don't understand y after changing the release strategy workflow is not working and giving the following error.
    Even if i restart the workflow in SWPR the same error is occuring.
    Exception occurred    - Error when starting work item 000000390118
    PROCESS_NODE     - Error when processing node '0000000003' (ParForEach index 000000)
    CREATE                   -  Error when creating a component of type 'Step'
    CREATE_VIA_WFM  -  Agent determination for step '0000000003' failed
    EVALUATE_AGENT_VIA_RULE - Error in resolution of rule 'AC00000148' for step '0000000003'
    AC00000148             -  Object type 'TS' not valid
    Executing flow work item   - Work item 000000390118: Object FLOWITEM method EXECUTE cannot        be executed
    Executing flow work item   - Error when processing node '0000000003' (ParForEach index 000000)
    Regards,
    Hari

    Hello Hari,
    please set a breakpoint at function module
    ME_REL_GET_RESPONSIBLE
    and see what happends in section
        CASE t16fc-frgwf.
    * keine Ermittlung
          WHEN space.
            RAISE nobody_found.
    * Ermittlung über T16fW
          WHEN '1'.
    If using the T16FW-table, it should go to '1', otherwise it may that a user exit under '9' is used. So please check this.
    Best wishes,
    Florin

Maybe you are looking for

  • Problem launching a jsp page with eclipse and tomcat

    Hi, I have just started using eclipse and tomcat for creating dynamic web pages. I tried to launch a jsp page after starting the tomcat server with the URL: http://locahost:8080/HelloWorld/, an error page was displayed as below: HTTP Status 404 -/ ty

  • WHAT IS GOING ON with Interactive PDFs ????

    I'm being hit with 2 terrible interactive PDF issues at the moment.  Everyone that receives the document experiences the same thing. I create my interactive PDFs with InDesign ver 7.5.1.  At this point I'm totally unclear as to whether or not this is

  • Can't find files using Finder

    MBP running OS X 10.8.4 2.5 GHz Intel Core i5 Starting about two weeks ago, Finder stopped finding files on my MBP.  Previously, if I were to look for a photo named "IMG_1234", I would simply search on "1234" and any and all files containing 1234 in

  • How to Set "delete from hub and server" for each account

    How can I set "delete from hub and server" differently for each account? I have 3 emails (2 shared, 1 personal). the personal is a 'hotmail' account which has device set to 'sync email', 'push', and 'Use SSL'. it will only sync one way (from desktop

  • Does SAP have any WBS report able to drill downdown detail to PO level

    Hi Expert, Would like to seek for your advise as below: a) Does SAP have any WBS report able to drill downdown detail to PO level for the assign cost?     What is the T-code? b) What is the table contain WBS information with related PO level for the