Enabling Failover While creating the vNIC Template

Hello all,
As per my understanding enabling fail-over will create the secondary virtual path, which gives me the failover of vNIC automatically with the secondary virtual path that got created & the traffic will be routed towards another FI.
While creating the vNIC templates & in most of the deployments i have seen.
No one is considering the enable failover checkbox & I would like to know the pro's & corn's.
In which situation do i need consider it ? What is the recommended practice?
Looking forward for the suggestions.
Regards,
Gopi G

Hi Gopi
This failover flag made a lot of sense in the past, e.g. when Window server only supported one vnic.
For VMware ESXi whether its vswitch, DVS, N1000v, it is recommended to not use this hardware failover flag, and let the OS switch handle it.
see eg
https://supportforums.cisco.com/discussion/12211096/vnic-enable-failover-or-use-vmware
https://supportforums.cisco.com/discussion/12257101/cisco-ucs-network-uplink-aggregation-layer
https://supportforums.cisco.com/document/72501/understanding-fabric-failure-and-failover-ucs
https://supportforums.cisco.com/discussion/12387816/lan-or-san-pin-group-ucsm
Walter.

Similar Messages

  • Project Template is not in the selection list while creating the Project

    Hello
    We have created a template for a project type in cProjects. When i try to create a project by copying the template and choose "Template Type" as 'Project Template' and 'Project Type' then in the field of 'Template' i cannot see the templates which are created for the selected project type.
    what could be the reason?
    thanks in advance
    Ashish K

    Hi
    1. While creating the template, you should maintain the project type for which this template would be used. I believe you would have done this.
    2. The template has to be released. only after this, it can be used as a template to create projects.
    Regards,
    Maniraj

  • Error while creating the AW

    Hi,
    While creating the analytic workspace I am getting following message..
    Can anyone please tell what might have gone wrong? Any help will be appriciated.
    Preparing
    Creating analytic workspace...
    Processing cube AW_SALES_CUBE
    Processing Creating Dimension : AW_CUST_DIM
    Processing Creating Dimension : AW_PROD_DIM
    Processing Creating Cube : AW_SALES_CUBE
    Processing Defining Load for Cube: AW_SALES_CUBE
    SqlException = ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 469
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 983
    ORA-06512: at "OLAPSYS.DBMS_AWM", line 428
    ORA-06512: at line 1
    Error Code = 6510
    Sql State = 65000
    All the cubes could not be added to the Analytic Workspace AWSALE;
    The following cubes could not be added : SALES_CUBE
    Could not generate SQL for Views and ADTS for OLAP API and beans enabling.
    java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 469
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 983
    ORA-06512: at "OLAPSYS.DBMS_AWM", line 428
    ORA-06512: at line 1
    Tidying Up
    Failed to create the analytic workspace

    The versions are follows..
    Also, I tried with another set of tables. But, I still got the same errors. I am attaching all those details..
    Please help..
    --SOFTWARES....
    --Oracle Database:
    Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production
    With the Partitioning and OLAP options
    JServer Release 9.2.0.5.0 - Production
    --OEM
    9.2.0.1.0 Production
    --AWM
    9.2.0.4.1D
    --TABLE CREATION SCRIPTS
    Note: I created the following tables in user RMS_PROTOTYPE
    create table meter (
    meter_id number(10),
    meter_name varchar2(40),
    make_id number(10),
    make_name varchar2(40)
    alter table meter
    add constraints meter_pk
    PRIMARY KEY (meter_id)
    NORELY DISABLE NOVALIDATE;
    create table month (
    month_id number(10),
    month_name varchar2(40)
    alter table month
    add constraints month_pk
    PRIMARY KEY (month_id)
    NORELY DISABLE NOVALIDATE;
    create table invoice (
    invoice_id number(10),
    month_id number(10),
    meter_id number(10),
    invoice_amount number(16,2)
    alter table invoice
    add constraints invoice_pk
    PRIMARY KEY (invoice_id)
    NORELY DISABLE NOVALIDATE;
    alter table invoice
    add constraints invoice_meter_fk
    FOREIGN KEY (meter_id)
    REFERENCES meter (meter_id)
    NORELY DISABLE NOVALIDATE;
    alter table invoice
    add constraints invoice_month_fk
    FOREIGN KEY (month_id)
    REFERENCES month (month_id)
    NORELY DISABLE NOVALIDATE;
    Note: I created the following dimensions/cube in user RMS_PROTOTYPE
    --METER DIMENSION
    CREATE DIMENSION RMS_PROTOTYPE.METER_DIM
    LEVEL LVL_METER IS METER.METER_ID
    ATTRIBUTE LVL_METER DETERMINES (METER.MAKE_ID, METER.METER_NAME, METER.MAKE_NAME)
    begin
    cwm_classify.remove_entity_descriptor_use(28, cwm_utility.DIMENSION_TYPE, 'RMS_PROTOTYPE', 'METER_DIM');
    cwm_olap_dimension.set_plural_name('RMS_PROTOTYPE', 'METER_DIM', 'METER_DIM');
    cwm_olap_dimension.set_display_name('RMS_PROTOTYPE', 'METER_DIM', 'METER_DIM');
    cwm_olap_dimension.set_description('RMS_PROTOTYPE', 'METER_DIM', 'Meter Dimension');
    cwm_olap_level.set_display_name('RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'LVL_METER');
    cwm_olap_level.set_description('RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'Level Meter');
    cwm_olap_level_attribute.set_name('RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'MAKE_ID', 'MAKE_ID');
    cwm_olap_level_attribute.set_name('RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'METER_NAME', 'METER_NAME');
    cwm_olap_level_attribute.set_name('RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'MAKE_NAME', 'MAKE_NAME');
    cwm_olap_dim_attribute.create_dimension_attribute('RMS_PROTOTYPE', 'METER_DIM', 'MTR_Name', 'MTR_Name', 'Meter Name');
    cwm_classify.add_entity_descriptor_use(41, cwm_utility.DIMENSION_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'METER_DIM', 'MTR_Name');
    cwm_olap_dim_attribute.create_dimension_attribute('RMS_PROTOTYPE', 'METER_DIM', 'Mk_Id', 'Mk_Id', 'Maker Id');
    cwm_classify.add_entity_descriptor_use(42, cwm_utility.DIMENSION_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'METER_DIM', 'Mk_Id');
    cwm_olap_dim_attribute.create_dimension_attribute('RMS_PROTOTYPE', 'METER_DIM', 'Mk_Name', 'Mk_Name', 'Maker Name');
    cwm_olap_dim_attribute.add_level_attribute('RMS_PROTOTYPE', 'METER_DIM', 'MTR_Name', 'LVL_METER', 'METER_NAME');
    cwm_olap_dim_attribute.add_level_attribute('RMS_PROTOTYPE', 'METER_DIM', 'Mk_Id', 'LVL_METER', 'MAKE_ID');
    cwm_olap_dim_attribute.add_level_attribute('RMS_PROTOTYPE', 'METER_DIM', 'Mk_Name', 'LVL_METER', 'MAKE_NAME');
    cwm_classify.add_entity_descriptor_use(41, cwm_utility.LEVEL_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'METER_NAME');
    cwm_classify.add_entity_descriptor_use(42, cwm_utility.LEVEL_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'MAKE_ID');
    commit;
    end;
    --Month DIMENSION
    CREATE DIMENSION RMS_PROTOTYPE.MONTH_DIM
    LEVEL LVL_MONTH IS MONTH.MONTH_ID
    ATTRIBUTE LVL_MONTH DETERMINES MONTH.MONTH_NAME
    begin
    cwm_classify.remove_entity_descriptor_use(28, cwm_utility.DIMENSION_TYPE, 'RMS_PROTOTYPE', 'MONTH_DIM');
    cwm_olap_dimension.set_plural_name('RMS_PROTOTYPE', 'MONTH_DIM', 'MONTH_DIM');
    cwm_olap_dimension.set_display_name('RMS_PROTOTYPE', 'MONTH_DIM', 'MONTH_DIM');
    cwm_olap_dimension.set_description('RMS_PROTOTYPE', 'MONTH_DIM', 'Month Dimension');
    cwm_olap_level.set_display_name('RMS_PROTOTYPE', 'MONTH_DIM', 'LVL_MONTH', 'LVL_MONTH');
    cwm_olap_level.set_description('RMS_PROTOTYPE', 'MONTH_DIM', 'LVL_MONTH', 'Month Level');
    cwm_olap_level_attribute.set_name('RMS_PROTOTYPE', 'MONTH_DIM', 'LVL_MONTH', 'MONTH_NAME', 'MONTH_NAME');
    cwm_olap_dim_attribute.create_dimension_attribute('RMS_PROTOTYPE', 'MONTH_DIM', 'MNTH_NAME', 'MNTH_NAME', 'Month Name');
    cwm_classify.add_entity_descriptor_use(41, cwm_utility.DIMENSION_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'MONTH_DIM', 'MNTH_NAME');
    cwm_olap_dim_attribute.add_level_attribute('RMS_PROTOTYPE', 'MONTH_DIM', 'MNTH_NAME', 'LVL_MONTH', 'MONTH_NAME');
    cwm_classify.add_entity_descriptor_use(41, cwm_utility.LEVEL_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'MONTH_DIM', 'LVL_MONTH', 'MONTH_NAME');
    commit;
    end;
    --SALE CUBE
    declare MTR_DIM number;
    MTH_DIM number;
    tmp number;
    begin
    CWM_OLAP_CUBE.Create_Cube('RMS_PROTOTYPE', 'INV_CUBE', 'Invoice Cube', '');
    MTR_DIM := CWM_OLAP_CUBE.Add_Dimension('RMS_PROTOTYPE', 'INV_CUBE', 'RMS_PROTOTYPE', 'METER_DIM', 'MTR_DIM');
    CWM_OLAP_CUBE.Map_Cube('RMS_PROTOTYPE', 'INV_CUBE', 'RMS_PROTOTYPE', 'INVOICE', 'INVOICE_METER_FK', 'LVL_METER', 'RMS_PROTOTYPE', 'METER_DIM', 'MTR_DIM');
    MTH_DIM := CWM_OLAP_CUBE.Add_Dimension('RMS_PROTOTYPE', 'INV_CUBE', 'RMS_PROTOTYPE', 'MONTH_DIM', 'MTH_DIM');
    CWM_OLAP_CUBE.Map_Cube('RMS_PROTOTYPE', 'INV_CUBE', 'RMS_PROTOTYPE', 'INVOICE', 'INVOICE_MONTH_FK', 'LVL_MONTH', 'RMS_PROTOTYPE', 'MONTH_DIM', 'MTH_DIM');
    CWM_OLAP_MEASURE.Create_Measure('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_AMOUNT', 'Invoice Amount', '');
    CWM_OLAP_MEASURE.Set_Column_Map('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_AMOUNT', 'RMS_PROTOTYPE', 'INVOICE', 'INVOICE_AMOUNT');
    CWM_OLAP_MEASURE.Create_Measure('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_ID', 'Invoice Id', '');
    CWM_OLAP_MEASURE.Set_Column_Map('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_ID', 'RMS_PROTOTYPE', 'INVOICE', 'INVOICE_ID');
    tmp:= cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_AMOUNT', tmp, 'RMS_PROTOTYPE', 'METER_DIM', 'MTR_DIM');
    tmp:= cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_AMOUNT', tmp, 'RMS_PROTOTYPE', 'MONTH_DIM', 'MTH_DIM');
    tmp:= cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_ID', tmp, 'RMS_PROTOTYPE', 'METER_DIM', 'MTR_DIM');
    tmp:= cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_ID', tmp, 'RMS_PROTOTYPE', 'MONTH_DIM', 'MTH_DIM');
    commit;
    end;
    Note: I tried to create the analytic workspace in user RMS_PROTOTYPE_AW. But I got the following error.
    --ERROR in AWM
    Preparing
    Creating analytic workspace...
    Processing cube P_INV_CUBE
    Processing Creating Dimension : P_METER_DIM
    Processing Creating Dimension : P_MONTH_DIM
    Processing Creating Cube : P_INV_CUBE
    Processing Defining Load for Cube: P_INV_CUBE
    SqlException = ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 469
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 983
    ORA-06512: at "OLAPSYS.DBMS_AWM", line 428
    ORA-06512: at line 1
    Error Code = 6510
    Sql State = 65000
    All the cubes could not be added to the Analytic Workspace AW_INV_01;
    The following cubes could not be added : INV_CUBE
    java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 469
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 983
    ORA-06512: at "OLAPSYS.DBMS_AWM", line 428
    ORA-06512: at line 1
    Tidying Up
    Failed to create the analytic workspace
    Thanks in advance.

  • Error while creating the build definitation

    while creating the new build definition below error occurred:
     1 error(s), 0 warning(s)
     Exception Message: The build controller VWAGWOSOB515 does not contain an enabled build agent with name * and no tags. (type SoapException)SoapException Details: <soap:Detail xmlns:soap="http://www.w3.org/2003/05/soap-envelope" />
    Exception Stack Trace:    at Microsoft.TeamFoundation.Build.Hosting.AgentReservationExtension.EndReserveAgent(IList`1& possibleAgents, IAsyncResult result)
       at Microsoft.TeamFoundation.Build.Workflow.ReserveBuildAgent.RequestActivity.EndExecute(AsyncCodeActivityContext context, IAsyncResult result)
       at System.Activities.AsyncCodeActivity`1.System.Activities.IAsyncCodeActivity.FinishExecution(AsyncCodeActivityContext context, IAsyncResult result)
       at System.Activities.AsyncCodeActivity.CompleteAsyncCodeActivityData.CompleteAsyncCodeActivityWorkItem.Execute(ActivityExecutor executor, BookmarkManager bookmarkManager)
    How toresolve this issue?
    Thanks & Regards,
    Kanchan More
    Kanchan

    Hi Kanchan,  
    Thanks for your post.
    What’s the version of your TFS?
    Please ensure the build agent(s) created and enabled under your build controller. You can check the TFS Build Service information in your TFS Admin Console>>Build Configuration tab. For more information about TFS Build Server, please refer to this
    document: https://msdn.microsoft.com/en-us/library/ms181712.aspx.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Issue while Creating the records in OAF by disabling one field.

    Hi Experts,
    I am having the scenario like this.
    From the OAF page I want to create the record by omitting one field(it is disable for OAF).
    Consider the folowing scenario..
    I am having the following fields Empno,Empname,Salary,Job in the OAF page where I made the Job field alone as disable and the style i am using for job field is message text input and i have set the initial value as 'Manger'.
    I am facing issue while creating the records in OAF page without the job filed value ie 'Manager' then the records were not inserted into my tables. Whereas if I enable the job field in OAF page(meaning I gave the job as 'Manager' in OAF page) I am able to create the records from OAF page and able get inserted in the database.
    Could Anyone can suggest where I fail as it is my Priority issue.
    Any Suggestion will be a great help for me.
    Thanks,
    Murugesh.

    or you can default it in the controller by handling add row event
    if(vo.hasNext())
    vorow = vo.next();
    vorow.setAttribute("xxxx",3838);
    --Prasanna                                                                                                                                                                                                                                                                                                                                   

  • VLAN issues when creating/modifying vNIC Templates

    Sort of an odd issue, all of the VLANs that have been created do not show up when creating/modifying a vNIC Template.  All of the VLANs have been created globally under the LAN Cloud as well as Appliances.
    I have 9 VLANs total, yet UCS Manager will only display 5 when modifying or creating a vNIC Template.
    I'm running UCS Manager 1.4(1m) and am experiencing the same issue on another suite of UCS gear that is running 1.4(1i).  Anyone else experiencing the same?

    I have seen odd issues with templates as they do not verify the values you are giving it.
    Real world example:
    You have 3 major deployment sites.  If someone scripts the configuration at site 1, folks in site 2 may have used a different ascii name on their vlan naming.  When you deploy the template, you give it VLAN_MGMT.  However, the device running that script for the templates has the same vlan BUT was named VLAN-MGMT.  Therefore, the templates will not show all the vlans.
    To correct this, you could create the vlan necessary based on the naming convention and the template MAY reference it correctly.
    Let us know if all the T's are crossed and I's are dotted. :-)

  • While editing the document template from library settings

    
    I am facing this warning while editing the document template from library settings. Actually i have changed the password 2 days before. I need solution to clear this 

    Hello
    Please check this
    http://support.microsoft.com/kb/286282/en-us
    Open the Office template in the original Office program where it was created.
    On the File menu, click Save As.
    In the Save as Type list, click Word Document (*.doc) if you are in Microsoft Word, Microsoft Excel Workbook (*.xls)if you are in Microsoft Excel,
    or Presentation (*.ppt) if you are in Microsoft PowerPoint.
    Give the file a name, and then save it in the Web that contains the Document Library.
    Click Save.
    Browse to your Document Library, and then click Modify columns and settings.
    Click Change general settings.
    In the Template URL edit box, type the full path and file name to the file that you saved in step 4.
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Getting error while creating the variable of Schema Element type

    Hi everybody,
    For creating a variable of schema element type I am doing the following steps...
    Select 'Variables' after right clicking on bpel process. IN this window, go to 'Create VAriable' then select 'Element' type. Now in Type Choose, I expanded the my imported schema files. And selected a element type, then click ok to create this variable... I am getting the message...
    IN ORDER TO SAVE IMPORTED WSDL/SCHEMA FILES, YOU MUST HAVE A PARTNER LINK LOCATED UNDER THE CURRENT PROJECT DIRECTORY.
    What is mean by that.
    I have imported the schema files in project. AFter that I have imported them into the WSDL also. Now why I am getting error while creating the variable. However I can create variable directly in .BPEL file then everything is fine. And it is working also. But what is mean with the above error? Why I am not able to create variable through GUI?
    Thanks.

    Hi,
    I have this same problem this morning, and I was going crazy, until I found this webpage on the internet:
    [http://technology.amis.nl/blog/1803/problem-importing-xml-schema-in-bpel-process|http://technology.amis.nl/blog/1803/problem-importing-xml-schema-in-bpel-process]
    The idea is that the jdeveloper is not very good working with directories with spaces on the directory name. If you move all your work to a directory without spaces, it will work smoothly. At least, it had worked for me.
    Regards,
    Nacho

  • Error while creating the DWH tables using DAC

    Hi,
    I am getting error while creating the DWH tables using DAC. I have created a ODBC DSN using merant driver with DAC repository DB credentials and the test connection is successful. And while creating the tables i gave the olap dw credentials and the DSN name which i created earlier. But it throws the error as below:
    Please find the below mentioned error message
    =====================================
    STD OUTPUT
    =====================================
    CREATING SIEBEL DATABASE OBJECTS
    F:\DAC\bifoundation\dac\UTILITIES\BIN\DDLIMP /I N /s N /u infdomain /p ******* /c DB_DAC /G "SSE_ROLE" /f F:\DAC\bifoundation\dac/conf/sqlgen/ctl-file/oracle_bi_dw.ctl /b "" /K "" /X "" /W N
    Error while importing Siebel database schema.
    =====================================
    ERROR OUTPUT
    =====================================
    Siebel Enterprise Applications ODBC DDL Import Utility, Version 7.7 [18030] ENU
    Copyright (c) 2001 Siebel Systems, Inc. All rights reserved.
    This software is the property of Siebel Systems, Inc., 2207 Bridgepointe Parkway,
    San Mateo, CA 94404.
    User agrees that any use of this software is governed by: (1) the applicable
    user limitations and other terms and conditions of the license agreement which
    has been entered into with Siebel Systems or its authorized distributors; and
    (2) the proprietary and restricted rights notices included in this software.
    WARNING: THIS COMPUTER PROGRAM IS PROTECTED BY U.S. AND INTERNATIONAL LAW.
    UNAUTHORIZED REPRODUCTION, DISTRIBUTION OR USE OF THIS PROGRAM, OR ANY PORTION
    OF IT, MAY RESULT IN SEVERE CIVIL AND CRIMINAL PENALTIES, AND WILL BE
    PROSECUTED TO THE MAXIMUM EXTENT POSSIBLE UNDER THE LAW.
    If you have received this software in error, please notify Siebel Systems
    immediately at (650) 295-5000.
    F:\DAC\bifoundation\dac\UTILITIES\BIN\DDLIMP /I N /s N /u infdomain /p ***** /c DB_DAC /G SSE_ROLE /f F:\DAC\bifoundation\dac/conf/sqlgen/ctl-file/oracle_bi_dw.ctl /b /K /X /W N
    Connecting to the database...
    28000: [DataDirect][ODBC Oracle driver][Oracle]ORA-01017: invalid username/password; logon denied
    Unable to connect to the database...
    any help is appreciated.
    Thanks,
    RM

    The fact that you are getting an "ORA-01017: invalid username/password; logon denied" message indicates that you are at least talking to the database.
    The log shows that username "infdomain" is being used. Can you double check the username and password you have in DAC in a SQL*Plus/SQL Developer session?
    Please mark if useful/helpful,
    Andy.

  • Getting *Not all values are bound* error while creating the VO

    Hi
    When i create a VO with the following query i am getting ORA-01008: not all variables bound error after giving apply.
    The Query is:
    SELECT
    emp.full_name CSA,
    COUNT(*) "Total # disputes",
    SUM(rac.total_amount) "Total Dispute Amt",
    (SELECT
    COUNT(jtb4.task_id)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) = trunc(SYSDATE)
    AND rac4.org_id = *:1*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.owner_id=emp.resource_id
    AND jtb4.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "#D's on Today",
    (SELECT
    NVL (SUM (rac4.total_amount), 0)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) = trunc(SYSDATE)
    AND rac4.org_id = *:2*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.owner_id=emp.resource_id
    AND jtb4.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "$Val Disp on Today",
    (SELECT
    COUNT (jtb4.task_id)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) < trunc(SYSDATE)
    AND rac4.org_id = *:3*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.owner_id=emp.resource_id
    AND jtb4.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "#D's <Today",
    (SELECT
    NVL (SUM (rac4.total_amount), 0)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) < trunc(SYSDATE)
    AND rac4.org_id = *:4*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.owner_id=emp.resource_id
    AND jtb4.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "$Val Disp<Today",
    (SELECT
    COUNT (jtb4.task_id)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) > trunc(SYSDATE)
    AND rac4.org_id = *:5*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.owner_id=emp.resource_id
    AND jtb4.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "#D's >Today",
    (select
    nvl(SUM (rac4.total_amount), 0)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) > trunc(SYSDATE)
    AND rac4.org_id = *:6*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.open_flag = 'Y'
    AND jtb4.owner_id=emp.resource_id
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "$Val Disp>Today",
    MIN(jtb.scheduled_end_date) "EARLIEST_END_DATE",
    MAX(jtb.scheduled_end_date) "LATEST_END_DATE"
    FROM
    jtf_tasks_b jtb,
    ra_cm_requests_all rac,
    jtf_rs_emp_dtls_vl emp
    WHERE
    rac.request_id=jtb.attribute8
    AND jtb.owner_id=emp.resource_id
    AND jtb.attribute_category='Dispute'
    AND rac.org_id =*:7*
    AND jtb.scheduled_end_date IS NOT NULL
    AND rac.status = 'PENDING_APPROVAL'
    AND jtb.owner_type_code = 'RS_EMPLOYEE'
    AND jtb.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM apps.dnb_ac_orc_coll_csa_map_s orc
    WHERE orc.csa_id = jtb.owner_id
    AND NVL(orc.attribute1,107) = *:8*
    AND orc.customer_segment = *:9*
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp
    WHERE rac.customer_trx_id = arp.customer_trx_id
    AND arp.amount_in_dispute IS NOT NULL
    GROUP BY emp.full_name
    ,emp.resource_id
    I dont have any cue why the error is prompting while creating the VO itself. Kindly let me know the issue with the above query.
    Thanks,
    Praveen

    Praveen,
    In the Query , you are given alias name like "#D's on Today" . Avoid to use special charaters in coulmn alias in the view query, as the alias name is failed to conver it into view attributes.
    During creating view object, in the query screen, there is dropdown which is below the query region. By default it is style of "oracle named" , changed it to "Oracle Positional".
    Thanks,
    Kumar

  • How to create the web template

    Hi BW Experts,
       how to create the web template.....!
       I just want to know what is the use of Web template. i want to display the report
    in WEB-UI screen ( sap-crm 7.0 portal ) can any one help me please how to proceed ...!
    Thanks
    shahina..!

    Hiu2026
    Steps to follow to create WAD in WEB Template in 3.5 or 7.0 u2026u2026..
    Go to All programs and select your web application designer
    Select the button to create a new page in WAD
    Select the chart and place in the layout
    Next goto Data provider Target and select your query
    Give your report name in the given data provider screen
    Select your query in History/find/Favourites/Infoareas button
    Select your query in this screen and click OPEN
    Now we can see the data provider is assigned to the chart.
    To edit the chart you have to right click on the chart
    After right click on it we will find another screen where we can edit all the settings
    In this screen we can find NEXT click button to change our settings
    In this screen we can state the tasks (Title, units, values, range)
    In this screen we can change our background /validity/color
    In this screen we can add values to the chart
    In this screen we can add validity/positions/order/axis types to the chart
    In this screen we can change the global settings/and overview of the chart.
    This screen shows that we have customized the chart successfully
    After successful creation of the chart we have to save the chart
    Save your chart in your favorites by giving the description and technical name in the given block.
    Now execute your WAD by selecting the execute button
    The BEx Web Application Designer is a desktop application for creating Web applications with BW-specific contents. Using the BEx Web Application Designer, you can create an HTML page that contains contents such as various tables, charts or maps. This HTML page (Web application) provides the basis for not only Web applications with complex interaction, but also for Web cockpits and iViews.
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/456a3badc1b315e10000000a114084/content.htm
    Web Application Designer for Beginners
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/749a4622-0a01-0010-36bf-b6b30a2a3a22
    Web Application Solutions: A Designer's Guide
    http://www.lukew.com/resources/webapplicationsolutions.pdf
    http://sap.ittoolbox.com/groups/technical-functional/sap-solution-manager/bw-web-application-designer-1955944
    Feautures of WAD in 7.0
    http://help.sap.com/saphelp_nw70/helpdata/en/88/4d354277dcb26be10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5c46376d-0601-0010-83bf-c4f5f140e3d6

  • How to update the condition price in sales order while creating the invoice

    Hi,
    How to update the condition price in the sales order to carry out the new price while creating the invoice?
    While creating the invoice it should update the condition price in sales order.
    Thanks,
    Balaram

    No, pricing is not there in delivery.
    I found an exit for VF01transaction where we can update the price in order.
    Can you please tell me how to update the price if I have the order, material numbers and conditions number?
    Thanks,
    Balaram

  • While creating the Transfer Order system is not picking Sale order stock?

    Hi All,
    In the B2B  process the system is not picking the stock from from sale order stock while creating the transfer order? Please suggest.
    Summary : Here we are creating the PR in the sale order and STO is created using the same PR to procure the materials from the WM plant to sale order plant. Since here intialy we are moving the stock to our sale order in WM plant and then picking the same. But while creating the Transfer order system is not picking the sale order stock in WM plant.
    Regards.

    C S Javali
    Check in schedule line in transaction flow whether Transfer Req /assembly is checked or not
    Regards
    Pradeep

  • Error while creating the HTTP client with destination GB_DPSRetrieve

    Hi All,
    It is an interface R/3 -->XI --> HTTP ( proxy to HTTP ).
    Please find the error log below and throw some light why the HTTP adapter is getting error -
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SAP="http://sap.com/xi/XI/Message/30">
    - <SOAP:Header>
    - <SAP:Main xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsu="http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" versionMajor="003" versionMinor="000" SOAP:mustUnderstand="1" wsu:Id="wsuid-main-92ABE13F5C59AB7FE10000000A1551F7">
      <SAP:MessageClass>SystemError</SAP:MessageClass>
      <SAP:ProcessingMode>synchronous</SAP:ProcessingMode>
      <SAP:MessageId>DC98499F-7E42-74F1-A41F-0017A4107EE6</SAP:MessageId>
      <SAP:RefToMessageId>DC98499C-A1EA-BEF1-B4DD-00110A63BF06</SAP:RefToMessageId>
      <SAP:TimeSent>2007-11-21T15:51:30Z</SAP:TimeSent>
    - <SAP:Sender>
      <SAP:Party agency="http://sap.com/xi/XI" scheme="XIParty">GovernmentGateway</SAP:Party>
      <SAP:Service>GGMailbox</SAP:Service>
      <SAP:Interface namespace="http://sap.com/xi/E-FILING_GB/2005">DPSretrieve</SAP:Interface>
      </SAP:Sender>
    - <SAP:Receiver>
      <SAP:Party agency="" scheme="" />
      <SAP:Service>SAP_DEV_ERP2005</SAP:Service>
      <SAP:Interface namespace="http://sap.com/xi/HR">HR_GB_EFI_DPSretrieve</SAP:Interface>
      </SAP:Receiver>
      <SAP:Interface namespace="http://sap.com/xi/E-FILING_GB/2005">DPSretrieve</SAP:Interface>
      </SAP:Main>
    - <SAP:ReliableMessaging xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:QualityOfService>BestEffort</SAP:QualityOfService>
      </SAP:ReliableMessaging>
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="PLAINHTTP_ADAPTER">ATTRIBUTE_CLIENT_DEST</SAP:Code>
      <SAP:P1>GB_DPSRetrieve</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error while creating the HTTP client with destination GB_DPSRetrieve</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    - <SAP:HopList xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
    - <SAP:Hop timeStamp="2007-11-21T15:51:30Z" wasRead="false">
      <SAP:Engine type="BS">SAP_DEV_ERP2005</SAP:Engine>
      <SAP:Adapter namespace="http://sap.com/xi/XI/System">XI</SAP:Adapter>
      <SAP:MessageId>DC98499C-A1EA-BEF1-B4DD-00110A63BF06</SAP:MessageId>
      <SAP:Info>3.0</SAP:Info>
      </SAP:Hop>
    - <SAP:Hop timeStamp="2007-11-21T15:51:30Z" wasRead="false">
      <SAP:Engine type="IS">is.00.lbsth-tb1ci</SAP:Engine>
      <SAP:Adapter namespace="http://sap.com/xi/XI/System">XI</SAP:Adapter>
      <SAP:MessageId>DC98499C-A1EA-BEF1-B4DD-00110A63BF06</SAP:MessageId>
      <SAP:Info>3.0</SAP:Info>
      </SAP:Hop>
    - <SAP:Hop timeStamp="2007-11-21T15:51:30Z" wasRead="false">
      <SAP:Engine type="IS" />
      <SAP:Adapter namespace="http://sap.com/xi/XI/System">HTTP</SAP:Adapter>
      <SAP:MessageId>DC98499C-A1EA-BEF1-B4DD-00110A63BF06</SAP:MessageId>
      <SAP:Info />
      </SAP:Hop>
      </SAP:HopList>
    - <SAP:RunTime xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
      <SAP:Date>20071121</SAP:Date>
      <SAP:Time>155130</SAP:Time>
      <SAP:Host>lbsth-tb1ci</SAP:Host>
      <SAP:SystemId>XIS</SAP:SystemId>
      <SAP:SystemNr>00</SAP:SystemNr>
      <SAP:OS>Windows NT</SAP:OS>
      <SAP:DB>ORACLE</SAP:DB>
      <SAP:Language />
      <SAP:ProcStatus>023</SAP:ProcStatus>
      <SAP:AdapterStatus>000</SAP:AdapterStatus>
      <SAP:User>PISUPER</SAP:User>
      <SAP:TraceLevel>1</SAP:TraceLevel>
      <SAP:LogSeqNbr>000</SAP:LogSeqNbr>
      <SAP:RetryLogSeqNbr>000</SAP:RetryLogSeqNbr>
      <SAP:PipelineIdInternal>SAP_CENTRAL</SAP:PipelineIdInternal>
      <SAP:PipelineIdExternal>CENTRAL</SAP:PipelineIdExternal>
      <SAP:PipelineElementId>60C3C53B4BB7B62DE10000000A1148F5</SAP:PipelineElementId>
      <SAP:PipelineService>PLSRV_CALL_ADAPTER</SAP:PipelineService>
      <SAP:QIdInternal />
      <SAP:CommitActor>X</SAP:CommitActor>
      <SAP:SplitNumber>0</SAP:SplitNumber>
      <SAP:NumberOfRetries>0</SAP:NumberOfRetries>
      <SAP:NumberOfManualRetries>0</SAP:NumberOfManualRetries>
      <SAP:TypeOfEngine client="200">CENTRAL</SAP:TypeOfEngine>
      <SAP:PlsrvExceptionCode />
      <SAP:EOReferenceRuntime type="TID" />
      <SAP:EOReferenceInbound type="TID" />
      <SAP:EOReferenceOutbound type="TID" />
      <SAP:MessageSizePayload>0</SAP:MessageSizePayload>
      <SAP:MessageSizeTotal>2918</SAP:MessageSizeTotal>
      <SAP:PayloadSizeRequest>0</SAP:PayloadSizeRequest>
      <SAP:PayloadSizeRequestMap>0</SAP:PayloadSizeRequestMap>
      <SAP:PayloadSizeResponse>0</SAP:PayloadSizeResponse>
      <SAP:PayloadSizeResponseMap>0</SAP:PayloadSizeResponseMap>
      <SAP:Reorganization>INI</SAP:Reorganization>
      <SAP:AdapterInbound>PLAINHTTP</SAP:AdapterInbound>
      <SAP:AdapterOutbound>IENGINE</SAP:AdapterOutbound>
      <SAP:InterfaceAction>INIT</SAP:InterfaceAction>
      <SAP:RandomNumber>15</SAP:RandomNumber>
      <SAP:AckStatus>000</SAP:AckStatus>
      <SAP:SkipReceiverDetermination />
      <SAP:Receiver_Agreement_GUID>24422A5646443F8E9D975D57A3EE8162</SAP:Receiver_Agreement_GUID>
      </SAP:RunTime>
    - <SAP:PerformanceHeader xmlns:SAP="http://sap.com/xi/XI/Message/30">
    - <SAP:RunTimeItem>
      <SAP:Name type="ADAPTER_IN">INTEGRATION_ENGINE_HTTP_ENTRY</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.5</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="ADAPTER_IN">INTEGRATION_ENGINE_HTTP_ENTRY</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="CORE">INTEGRATION_ENGINE</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="CORE">INTEGRATION_ENGINE</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_RECEIVER_DETERMINATION</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_RECEIVER_DETERMINATION</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_INTERFACE_DETERMINATION</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_INTERFACE_DETERMINATION</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_RECEIVER_MESSAGE_SPLIT</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_RECEIVER_MESSAGE_SPLIT</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_MAPPING_REQUEST</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.515</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_MAPPING_REQUEST</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.531</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_OUTBOUND_BINDING</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.531</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_OUTBOUND_BINDING</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.531</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="PLSRV">PLSRV_CALL_ADAPTER</SAP:Name>
      <SAP:Timestamp type="begin" host="lbsth-tb1ci">20071121155130.531</SAP:Timestamp>
      </SAP:RunTimeItem>
    - <SAP:RunTimeItem>
      <SAP:Name type="CORE">INTEGRATION_ENGINE</SAP:Name>
      <SAP:Timestamp type="end" host="lbsth-tb1ci">20071121155130.656</SAP:Timestamp>
      </SAP:RunTimeItem>
      </SAP:PerformanceHeader>
    - <SAP:Diagnostic xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:TraceLevel>Information</SAP:TraceLevel>
      <SAP:Logging>Off</SAP:Logging>
      </SAP:Diagnostic>
    - <SAP:Trace xmlns:SAP="http://sap.com/xi/XI/Message/30">
      <Trace level="1" type="T">SystemError message generated. Guid: DC98499F7E4274F1A41F0017A4107EE6</Trace>
      <Trace level="1" type="T">Error during execution of message : DC98499CA1EABEF1B4DD00110A63BF06</Trace>
      <Trace level="1" type="T">ApplicationMessage was (=RefToMsgId): DC98499CA1EABEF1B4DD00110A63BF06</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
    - <!--  ************************************
      -->
      </SAP:Trace>
      </SOAP:Header>
    - <SOAP:Body>
      <SAP:Manifest xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:wsu="http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="wsuid-manifest-5CABE13F5C59AB7FE10000000A1551F7" />
      </SOAP:Body>
      </SOAP:Envelope>
    Regards,
    Kishore

    Hi,
    In the HTTP Receiver what is the Addressing Type used ? (URL Address or HTTP Destination).
    If its URL Addressing Type, check if right Authentication Type is used with valid values and for HTTP Addressing Type check this HTTP Client Create Error, it could be helpful.
    Also check if the Target system can be reached from the XI server to validate the configuration parameters.
    Regards,
    S.Santhosh Kumar

  • Time capsule won't back up - Unable to complete backup. An error occurred while creating the backup folder. Any ideas?

    I have tried all the resets, the firmware is the latest version, the green light is on.
    But I get this message "Unable to complete backup. An error occurred while creating the backup folder."
    Any ideas?

    Do setup again.. but make sure both your wireless and your ethernet have ipv6 turned on to local link.
    Done this OK, but no idea about IPv6 - something new to me and rather Appley I think?
    Unplug the WAN for the moment.. Just LAN port TC to the MBPr ethernet via thunderbolt.. (thunderbird was the kids puppet series.. Thunderbirds are go!!). Done - New real people Thunderbirds movie coming out soon I believe!!!
    Reset the TC again.. sorry.. !! You're welcome ... done.
    Make sure the ethernet now has an IP address.. 10.0.1.2 - Yep - done that - on ethernet anyway ...
    You need to open the network preferences to find out. Yep - that's good ...
    ****** I then reconnect the TC WAN to the router - is this right?
    And then I think I start going round in circles ... boot, reboot, restart, reboot again ...
    The final result is green light on TC, but error message when trying TM is "Backup disk is not available".
    Then open the airport utility and you should be able to setup the TC.
    Do as little setup as possible and then run the TM backup and see how it goes.
    I have managed to get Thunderbird to LAN on TC to create a folder on TC and copy a file onto it.
    So I guess the drive is working - it must be the software, settings or perhaps even the operator that isn't quite so clever ...
    I named network RFG, named device RFGTC.  RFG network shown as IP 192.168.0.72
    Wireless router is BT Homehub 3 with IP of 192.168.0.254 - is this issuing new IP addresses when rebooting TC?
    I have three wireless networks here - the BT Homehub3 wireless, the TC wireless, and also a D-link power socket ethernet thingy for an ethernet connection to the telly - DHP-W310AV which is also wireless link.  All are effectively connected to the BT Homehub - is there a conflict there?
    Have several times achieved in Airport Utility schematic with internet shown as green, RFGTC shown as green, light on TC green, but no TM backup run ... "backup disc not available."
    And there are no tall building around here to hurl myself off ... at least you can go to Sydney Harbour bridge - not too far away ... it was my son in Sydney that persuaded me to scrap Windows and go Apple ... it's all his fault ...

Maybe you are looking for

  • Possible bug with the registration verification code, some follow up

    About this post I made earily, https://bbs.archlinux.org/viewtopic.php?id=187286 > I ran into this problem several times before. I mean that I finally made a successful registration after dozens of trying in the last two or three years time span. I j

  • I can't get a TV Show manually moved onto my iPod!

    Okay, so my computer's hard drive doesnt' have enough space for me to back up the entirety of what I have on my iPod (I have the 80GB Classic). I just bought a season of a TV Show (accidentally twice but I contacted support about that) but when I try

  • Premiere Pro Update Failure: Adobe Premiere Pro CC 2014.0.1 Update Installation failed. Error Code: U44M2P7

    Hi, I can't seem to update Premiere Pro. I get the following message: Adobe Premiere Pro CC 2014.0.1 Update Installation failed. Error Code: U44M2P7 Have tried the patch, no dice. Need to avoid re-install. Would like an Adobe staff member to step up

  • Load External image

    I'm  trying to load an image for a Photos folder. The photo.swf is in the same file structor as the "photos "folder, using the code below is works great when I open photo.swf and then click the P_002 button. All of this in contained in a folder named

  • Billing Document fails on Transfer to Accounting

    Hi Gurus. I have created a Sales Order for a BP with Direct Billing. The Billling Document created is failing to Transfer, when I review the Billing Document I see it has an error on Middeware Connection Status: "C": "Error Constructing Tax Data for