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.

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

  • [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

  • 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

  • Auto-Submit On Change in DropDown List not working properly!

    Hi all,
    I�ve got a problem with a drop down list an a table with some rows on my page. The property "Auto-Submit on Change" is set for the drop down because the valueChange-method has to do some work when the user selects another value from the drop down.
    The problem is that after selecting another item from the drop down, the table fields don�t keep their values, which I had entered before I selected another item in the drop down. But: When I select an item again, suddenly exactly these values are set.
    Here my code:
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <ui:page binding="#{Page1.page1}" id="page1">
    <ui:html binding="#{Page1.html1}" id="html1">
    <ui:head binding="#{Page1.head1}" id="head1">
    <ui:link binding="#{Page1.link1}" id="link1" url="/resources/stylesheet.css"/>
    </ui:head>
    <ui:body binding="#{Page1.body1}" id="body1" style="-rave-layout: grid">
    <ui:form binding="#{Page1.form1}" id="form1">
    <ui:table binding="#{Page1.table1}" id="table1" style="height: 488px; left: 24px; top: 120px; position: absolute; width: 1376px"
    title="Table" width="1376">
    <ui:tableRowGroup binding="#{Page1.tableRowGroup1}" id="tableRowGroup1" rows="10" sourceData="#{SessionBean1.columnProvider}" sourceVar="currentRow">
    <ui:tableColumn binding="#{Page1.tableColumn1}" headerText="field1" id="tableColumn1" sort="field1">
    <ui:textField binding="#{Page1.textField1}" id="textField1" text="#{currentRow.value['field1']}"/>
    </ui:tableColumn>
    <ui:tableColumn binding="#{Page1.tableColumn2}" headerText="field2" id="tableColumn2" sort="field2">
    <ui:textField binding="#{Page1.textField2}" id="textField2" text="#{currentRow.value['field2']}"/>
    </ui:tableColumn>
    <ui:tableColumn binding="#{Page1.tableColumn3}" headerText="field3" id="tableColumn3" sort="field3">
    <ui:textField binding="#{Page1.textField3}" id="textField3" text="#{currentRow.value['field3']}"/>
    </ui:tableColumn>
    <ui:tableColumn binding="#{Page1.tableColumn4}" headerText="field4" id="tableColumn4" sort="field4">
    <ui:textField binding="#{Page1.textField4}" id="textField4" text="#{currentRow.value['field4']}"/>
    </ui:tableColumn>
    <ui:tableColumn binding="#{Page1.tableColumn5}" headerText="field5" id="tableColumn5" sort="field5">
    <ui:textField binding="#{Page1.textField5}" id="textField5" text="#{currentRow.value['field5']}"/>
    </ui:tableColumn>
    <ui:tableColumn binding="#{Page1.tableColumn6}" headerText="field6" id="tableColumn6" sort="field6">
    <ui:textField binding="#{Page1.textField6}" id="textField6" text="#{currentRow.value['field6']}"/>
    </ui:tableColumn>
    </ui:tableRowGroup>
    </ui:table>
    <ui:dropDown binding="#{Page1.dropDown1}" id="dropDown1" items="#{Page1.dropDown1DefaultOptions.options}"
    onChange="common_timeoutSubmitForm(this.form, 'dropDown1');"
    style="position: absolute; left: 48px; top: 24px; width: 240px; height: 24px" valueChangeListener="#{Page1.dropDown1_processValueChange}"/>
    </ui:form>
    </ui:body>
    </ui:html>
    </ui:page>
    </f:view>
    </jsp:root>
    and the code of the valueChange-Method:
    public void dropDown1_processValueChange(ValueChangeEvent event) {
    getSessionBean1().getColumnProvider().commitChanges();
    List positions = getSessionBean1().getColumnProvider().getColumnList();
    Is there some explanation for this behavior or it�s really a bug in the way how the drop down is submitting the form? I would understand it when commitChanges is not working here because of auto submit on change (==immediate?). but once it works und once it doesn�t work!

    Hi There,
    Not sure what you mean. Have you tried Netbeans 6 yet. Do you see same behaviour in it as well?
    This might be of help to you
    http://www.netbeans.org/kb/55/dropdowncomp.html
    Thanks
    K

  • Dynamic Distribution List not working!

    H all,
    I have been struggling with Dynamic DLs...
    I have a domain with 3 sub-domains. Only some users on my top domain have mailboxes on exchange (we use another primary email system) and all users on the sub-domains are added to Exchange as Mail contacts and Mailusers.
    So the idea is to create a DL for all users on each site. I want to be able to send email to all users on a particular office.
    So, following the TechNet articles I do:
    [PS] C:\Windows\system32>New-DynamicDistributionGroup "Test1" -RecipientFilter {(RecipientType -eq 'MailUser') -and (Office -eq 'Office2')}
    All users have the Office field filled.
    The DL appears on my ECP. Now to see what members the list has (should pull all members with "Office2" on AD) I do:
    $members = Get-DynamicDistributionGroup -Identity "Test1"
    [PS] C:\Windows\system32>Get-Recipient -RecipientPreviewFilter $members.RecipientFilter | select Displayname,PrimarySmtp
    Address
    When I press return, it just returns (nada, nothing, nicles):
    [PS] C:\Windows\system32>
    On other Distribution lists, it works...
    For this particular location I converted the mailcontacts to mailusers because I was having problems on sending emails to this DL. Basically the email was purely not sent but it didn't return any error message.. just discarded. If I run a message tracking
    on ECP all I can see is: "Delivery report information for this message is no longer available."

    Hi,
    This would help you... Add RecipientContainer with the full domain name where recipients are and check...
    RecipientContainer
    Optional
    Microsoft.Exchange.Configuration.Tasks.OrganizationalUnitIdParameter
    The RecipientContainer parameter filters the recipients used to build the dynamic distribution group based on their location in Active Directory. The value of theRecipientContainer parameter
    can be the canonical name of an organizational unit (OU) or a domain. If you don't specify a value for the RecipientContainerparameter, the cmdlet will default to use the local container. This location is specified by using the OrganizationalUnit parameter.
    From: http://technet.microsoft.com/en-us/library/bb125127(v=exchg.150).aspx
    Blog |
    Get Your Exchange Powershell Tip of the Day from here
    Still doesn't work!
    I have done:
    [PS] C:\Windows\system32>New-DynamicDistributionGroup "Test3"-recipientcontainer "subdomain.domain.local" -RecipientFilter {((R
    ecipientType -eq 'MailUser') -and (Office -eq Office2))}
    Creates the DL, but no members...

  • 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

  • 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.

  • Users Safe/Block list not working

    Hi guys,
    I'm using a Management ironport appliance as external quarantine for two Ironport email security devices (clustering), i have enabled Users Safe/Blocks and simply it is not working.
    When the user add email address as white/block to his own list under his quarantine page, nothing change & Safe/Block list is not working.
    Any ideas how to solve/troublshoot the issue?
    Regards
    Rami

    Hello Rami,
    did you enable the Safelist/Blocklist on the management apliance and the ESAs as well?  If only on the management appliance, then also switch it on on the email appliances under the setting for the external spam quarantine.
    Hope that helps,
    Andreas

  • Contact List not working properly

    Today, my iPad 2 contact list stopped working properly. It opens but does not remain open. It stays open for one or two seconds and then closes. No opportunity to add/delete contacts. Anyone seen this before? I've never had a problem. Any hints or tips are appreciated. Thanks.

    You did restore your iPad from that backup that was taken just prior to upgrading to iOS 5, right?
    All apps and settings are included inthe backup.

  • Muse site on BC - URL Redirects list not working

    Hello. A Muse site has just gone live on BC host.
    The URL redirects don't appear to be working.
    Doing a Google  search on 'parkerandassociates.co.nz Amy Williamson' gives a result leading to http://www.parkerandassociates.co.nz/people/amy-williamson/ From the screen grab below the Redirect is showing that this should be working, but in reality the page is not being found. I tried several times to edit the Action and also imported the Import Redirect Urls method and it imported successfully.
    My import file was CSV and had one row for consisting of the following columns  Old Url (= /people/amy-williamson/) New URL (/amy-williamson.html)  Enabled (True). I wasn't quite sure what to put in the columns for Enabled, so I put 'True' as shown below. But still the redirection is not working.
    Can anybody tell me where I could be going wrong?
    Cheers
    Grant

    Hi Grant Senior,
    Update the source of the redirect from /people/amy-williamson/ to /people/amy-williamson/index.html and the URL http://www.parkerandassociates.co.nz/people/amy-williamson/ should then redirect successfully. This is because BC sees the source as a directory and not an actual page.
    I have done this for http://www.parkerandassociates.co.nz/people/amy-williamson/ on your behalf, and can confirm that it is now working.
    Cheers.

  • Generated lists not working in HTML conversion

    Using FM 8.0p277
    I have been asked to convert a book to HTML for the first time. When I do this, FM crashes with an error log that I cannot locate in the Program Files folder, as indicated in the error message. I believe it is the generated files that have caused the error(s). Originally, my List of Figures seemed to be the issue, so I tried generating HTML files of just the TOC and the main document in the book. They produced files fine except the links that work in FM from the TOC to the locations in the main file seem broken. If I open the TOC HTML file and click on one of the links, it does open the main document, but always the beginning of the document. I assume that is because I didn't create the HTML from the book file, but from individual files, so I created a book of just the TOC and main document and tried to save as HTML. FM crashed again. Has anyone had a similar experience, both of FM crashes as a result of creating HTML files and of not being able to locate the error logs in the directory indicated?
    Janice

    Janice,
    The standard answer to questions about HTML export is that the feature is not very robust and likely will not produce the result that you want. It might be useful for certain rudimentary applications but generally FrameMaker users use a third-party application such as Mif2Go, RoboHelp, or a Quadralay product for this purpose. You might get lucky and receive an answer to your specific question, but I think it would be unlikely.
    Russ

  • Webdynpro for ABAP - interactive Adobe form - drop down lists not working

    Hi all,
    I'm trying to create an interactive form for a client using webdynpro for ABAP and I've viewed the demo "Create SAP Interactive Forms by Adobe with Web Dynpro for ABAP" by Thomas Jung, but when I implement it the form following similar steps the form is not interactive.
    In the properties of the "InterativeForm", I've tried clicking the "enabled" flag both on and off.  I've also tried setting the "displayType" property to both "ActiveX" and "Native".  But none of this worked.
    I though my problem might be with Adobe reader so I switched from 8.0 back to 7.0 but this didn't make any difference either.
    The system we are using is NW04s WAS 700.  Any hints would be greatly appreciated!
    Thanks,
    -tom

    Thanks for the suggestion Dezso.  I've downloaded a newer version of ACF as indicated by the OSS note and installed it.  I'm still having the same issue.
    My basic question is what options should I be using in the form and on the InteractiveForm component?  It looks like because of the evolution of the product there are multiple options available.  I recall reading somewhere that as of a certain SP level we should have ZCI (zero client install) available.  The would be our preference.  It will be a support nightmare if each user needed a manual download of ACF.exe installed.
    Should I click the "enabled" flag on the InteractiveForm object?  When I create the form should I use the "Native" drop down list or the one from the "Active X" tab?  I would like to use the "List Box" control on the form as well but it is only available in the "Standard" tab.  So does that mean I can't get the selections from a "List Box"?
    Thanks,-tom

  • Hyperion Workforce Smart list not working correctly

    We are customizing the Employee Type Smart list and added few more enties to it. But in the Web form when tried to select an entry its is showing the Label values and not the Name for newly added entries but the original options are working correctly. e.g.
    Name Value
    Regular LABEL_REGULAR
    Contractor LABEL_CONTRACTOR
    Temporary LABEL_TEMPORARY
    Board LABEL_BOARD
    EBA LABEL_EBA..
    now in the form drop down I get values as below,
    Regular
    Contractor
    Temporary
    LABEL_BOARD
    LABEL_EBA
    Not sure why its working wierd for new entries. Version is 11.2.2

    Are smartlists assigned to members?

  • Address Book "Edit Distribution List" not working in Lion 10.7.2

    I have been told by people in my "Groups" that I am sending to the wrong e-mail addresses.  I checked and sure enough so I went to edit the distribution list for that group and it's greyed out. It worked prior to this update. My wifes is still using 10.7.1 and edit didtribution list is not greyed out.....anyone having the same issue or any ideas where it is now or how to re-enable it....or is it just broken?  Also I am contented into iCloud.

    To add to my original post.... My wifes OS was 10.7.1 and I just finished the update to 10.7.2 and signed into iCloud.  I first transfered iCal but left Address Book.  When I went into Address Book and checked the Distribution List it was not greyed out.  Next I transfered Address Book to iCloud and checked Dist List and it was greyed out.  Next I removed Address Book from iCloud (leaving a copy of it on the computer), restarted AB and checked to see if DL was still greyed and it was not.  So no fixes here but if you want the functionality of the DL you could turn off Address Book in iCloud temp until they come up with a fix.  Important: if you turn off Address Book from iCloud be sure to leave a copy on your puter and of course before doing any of this make a Archive Backup of Address Book.  I guess at this point it'll just be a waiting game until a fix comes out.  Cheers, Neil

  • Expand (deploy) distribution lists not working Outlook 2013 + Outlook Mac 15.9

    I try to figure out how to expand (deploy) the distribution lists in both Outlook 2013 (Windows) and Outlook for Mac 15 (Apple). Actually it's extremely weird because it work randomly... We mainly uses Outlook for Mac 15.9 in the Office and some people (only
    a few ones) actually see a blue down-pointing arrow in from of the Distribution Lists when they are it to the "TO" field in Outlook for Mac 15.9. Then if they click on it, the list are deploying and been replaced by employees in the list. On Outlook
    2013 for Windows, there's NO WAY to get the small "+" sign in front of the distribution list... FYI, the same person who can deploy on Outlook for Mac 15, can't deploy on Outlook 2013 for Windows.
    I already eliminate a lack of permission somewhere in my Exchange Online manager, because I am the "owner" of distribution list and I can't expand (deploy) it anyway in Outlook 2013 and I tried to promote somewhere else as the "owner" and
    it doesn't make him/her able to expand any more.
    FYI I created few distribution lists in my Exchange Online admin into the "GROUP" section, they are all Dynamics Distribution Lists and as I told you, some people can deploy (well, 99.9% of peoples CAN'T deploy lists, but a few CAN do it, 0.01% of
    employees).
    I checked carefully in the distribution list settings on Exchange Online admin portal, but there's not much settings I can change...
    The point is I MUST get the deploy feature to work with the distribution list because SEVERAL TIMES a week administration teams need to send email to all employees but while excluding a few of them, so they need to be able to deploy the dynamic list, then remove
    manually the 2-3 peoples from the recipients list. As you can see on my screenshot, there's a few people where the blue arrows are working (Outlook for Mac 15.9)...

    Hi,
    Please follow these steps: -
    If
    RoomFinderShow = 0 under registry path: HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\15.0\Outlook\Preferences
    The Room Finder behaves the following ways when you start Outlook: -
    The Room Finder is not shown by default on the
    Appointment tab.
    You can manually enable the Room Finder on the
    Appointment tab.
    If you open a new meeting from after enabling the Room Finder in another meeting room, the Room Finder is not shown by default on the
    Appointment tab of the new meeting form.
    If you manually enables and then disable the Room Finder on the
    Appointment tab, nothing is written into the registry.
    When you have the required update installed and
    RoomFinderForceDisabled=1, Outlook will not display the Room Finder pane on either the Scheduling Assistant tab or the Appointment tab in a meeting form.
    Regards
    Ashish@V

Maybe you are looking for

  • FIXed:T400 Lenovo can not log in when wake up from suspend or sleep time FIXed ( but not sure 100%)

    Hi everyone who is having this isse, I got this issue for months, I spent alot of time to search for the solutions, I found a lot of here but can not fix my issue, I think you did, too. but today, when I decided to remove all of the FingerPrint softw

  • JVM memory allocation

    Hello, I am writing a program that requires me to read large files into memory. Since the JVM has a heap limitation, I am setting the max memory with the -Xmx"number"m command line command. I then create an exe wuing JBuilder. For some reason, I can'

  • Where is the dads.conf for Apex

    I have installed 11.0.2 on windows 32bit. I have installed the APEX software. I can get to the instace admin pages using the URL http://localhost:8080/apex But I cannot find the dads.conf on my c drive .. I did a search on the whole drive. From what

  • Assistance needed gurus

    1 .How can i Anonymise the business partner data (names, bank accounts), for this some reports do exist how can i  deal  with this???any  suggestiosn gurus??? 2.how to   Transport customisation changes from 450 to 453 for example??? 3.how to  compile

  • Creating Compound lay out with two different pivot tables OBIEE 11g?

    Hello, I am trying to add two different pivot tables in one compound lay out and add a view selector to it, so that i can choose one at a time. Please advice how can i do this. Thanks