J2EE_Admin Unable to Add iView Permissions (Connecting BEx and Portal)

Hi guys,
I'm trying to set up a connection between BEx Web and Portal in a Netweaver 2004s environment.
Following notes 917950, I have made the configuration using Template Installer and RSPOR_SETUP.
Perhaps unsurprisingly, there are some issues.
Diagnostics & Support Desktop Tool (note 937697) shows 6 red lights:
1. BI iView Permissions
2. BI Mastersystem
3. BI Portal System Permissions
4. URLs Prefixes Customized on Both J2EE and ABAP Side
5. User Mapping of User DDIC
6. WebAS ABAP Certificate and Login Modules Configuration
Here, let's just look at
1. BI iView permissions.
<b>Error: </b>
The BI Report-Report Interface iView does not have the necessary permissions for being called directly.
My question is
Why can't the J2EE_Admin user do the following fix (Note 983683)?
1) In the portal, follow the path
"Content Administration -> Portal Content"
"Portal Content -> Content Provided by SAP -> Platform Add Ons ->
"Business Intelligence -> iViews -> BEx Launcher (transactions for RRI)"
(pcd:portal_content/com.sap.pct/platform_add_ons/com.sap.ip.bi/iViews/com.sap.ip.bi.rritransaction).
2) From the context menu for this entry, choose "Open" -> "Permissions".
3) "Search" for the "User Group" (Caution: not the "role") "Everyone" and add this to the list of assigned authorizations.
Set the value "None" in the selection field of the "Administrator" column and set the indicator "User". Save your changes.
The "ADD" button is not clickable!! Is it because the J2EE_ADMIN user is not authorized to add permissions?
I hope the experts here can provide some light into the situation. Points will be awarded for helpful answers. Thank you!!
Regards,
SJ

2. BI Mastersystem
it depends on the type of error, see the hint given by the disgnostics tool, if it is sothing to do with BW system alias, so you have to connect to your portal and in system configuration->systemlandscape-> right click on SAP_BW then choose system alias and add the one proposed earlier in the diagnostics tool
3. BI Portal System Permissions
add group everyone on you SAP_BW system on systemlandscape
4. URLs Prefixes Customized on Both J2EE and ABAP Side
the one declared in the portal should be the same as the one in RSPOR_T_PORTAL table. you can modify this table to include the domain name of your URL
5. User Mapping of User DDIC
open your java admin consol (http://server....:5sid00 and then click on user administration, choose ddic the in the mapping tabulation click on modify the enter j2ee_admin as a user for the mapping, it should solve this point, don't forget to save.
6. WebAS ABAP Certificate and Login Modules Configuration
for this one you have to give the error text so i can help.
if it helps give points.
Regards.
Lakhdar Mourad

Similar Messages

  • BI content to view reports in BEx and Portal

    Hi,
    I want to install all the BI content related to Query and Reporting.
    Can you pls help  how to proceed with this like what and all I need to activate.
    My requirement is to generate all the reports on 'Vendor Evaluation (from ERP) and 'Tender Evaluation (Bidding Engine) from SRM'..customers should see all the reports in the Netwever portal and as well as in BEx.
    Pls help ..
    Also I am quite confused with the words :Web Template & BEx web item and BEx web item and Web item..
    To view the reports (in BEx and portal) which are extracted from ERP what and all we need to activate?
    To view the reports (in BEx and portal) which are extracted from SRM what and all we need to activate?
    Please help in this regard..
    Regards
    Sharif.

    Hi Praveen,
    Thanks for your immediate response..
    My requirement is that I will have to develop reports on Vendor Evaluation from (SS is ERP) and Tender Evaluation (Bidding Engine : SS is SRM)..
    To develop the reports for both of the functionalities in BI and to view them in excel mode and in the potal,what is the BI content which I need to activate in BI? -- This is my question.
    Whether we need to activate Web template alone or Web template and Web Item both?
    In case we need to activate both then which of the following shoud I activate
    Either Web Item or BEx item
    Web Template or BEx web template
    Please provide me the necessary information..<REMOVED_BY_MODERATOR>
    thanks in advance..
    Regards
    Sharif.
    Edited by: Pravender on Sep 22, 2010 11:05 AM

  • Unable to add oracle driver connection

    In new database connection.
    name:oracle
    driver:oracle.jdbc.driver.OracleDriver
    dtabase url:jdbc:oracle:thin:10.10.20.20:1521:test
    username:test
    pasword:test
    after that, i have error message;
    unable to add connection, cannot establish a connection to jdbc:oracle:thin:10.10.20.20:1521:test using oracle .jdbc.driver.oracle driver.(Io exception:then network adapter could not establish the connection)
    it was working before. I try to recreate the connection and have a problem
    can you help me?

    The Network Adapter exception is caused because:
    1.     The database host name, port number, or database instance name is wrong.
    2.     The database TNSListener has not been started. The TNSListener may be started with the lsnrctl utility.
    C:\>lsnrctl start

  • Unable to add special characters such as # and ( in headers of Report in Text format

    Hi,
    I am working on developing a report that will be exported to tab delimited text format from SSRS. The Report has been developed and it is getting exported to tab delimited text format. However, special characters in the heading are getting trimmed. I would
    like to get these special characters in the heading of text file. Any help in this regard will be appreciated.

    Hi Abhijit,
    Per my understanding that you have add an extension which export the report as .txt format, now the issue is the special characters"#" not display after exportted, right?
    I have tested on my local environment and can reproduce the issue , this is by default, when you type some special characters "#" as the textbox name  in the properties window or as calculatted field name you will get error pop up window,
    if you type the text in the textbox as "#" it will also not display in the CSV or tab delimited text format report.
    But we have some alternative method to make them display some way, more details information below for your reference:
    Display "#" in the table header
    If we want to make them display in the table header, we need to create an new table an put all the table header as one record in the table, because the value in the table can display "#" correctly:
    I assumed you have four columns as the table header(Test1#,Test2#,Test3#,Test4#) please create an new table (HeaderTable )to store these value:
    Create two dataset2:
    Dataset1: display the record from step1
    DataSet2:display the record of the report
    Create two Tablixs as below and both remove the header column, Tablix1(Dataset1) diplay the value comes from the step1 as the new header column:
     Tablix1(Dataset2):Report Data
    In this way, when export to tab delimited txt, you will got the table header display correctly.
    Display "#" in the textbox outisde of the tablix
    If you just want to display "#" outside the tablix, you can just add an calculatted field(Test) and use expression like below to specify the value which you want to display in the calculatted field:
    ="test######test"
    Then you can use below expression in the textbox:
    =first(Fields!Test.Value, "DataSetName")
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • IFSMGR - Unable to add Extended Attributes to Folder and PublicObject in IFS 1.1.9

    Hi,
    I am using IFS-1.1.9 version and trying to add Extended attributes to PublicObject and Folder in IFSMGR.IFSMGR does not allow be to do this it turns the ADD button grey.
    Is there any way I can do this?
    Thanks,
    Hima

    Hi,
    Whatever steps you have done seems to be correct for adding an UDF in Create User page. If the UDF is not displayed, then refresh the content by clicking the refresh icon at the top right hand corner of the dialog box while selecting Add Content -> "Data component - catalog" -> userVO. Also I would suggest you to give an unique name while creating the UDF using form designer in sysadmin console. Try it again and it should work.
    In worst case try the below steps
    1. Create and activate a Sandbox.
    2. On the left nav pane, expand Upgrade and click on link Upgrade User Form.
    3. On the page that opens, the table will display all your UDFs. Click Upgrade Now and wait for completion.
    4. Export(recommended) and Publish the sandbox.
    After that create another sandbox in identity console,create sandbox, click on customize and after that try following the same process of adding from userVO

  • Add new lines in BEx and drilldown character simultaneously in BEx

    Hi All!
    I have a problem with drilldown character in "Columns".
    In constructing BEx-Query I need enter new lines.
    In "Rows": a number of characteristics. New line consist of these characteristics.
    In "Columns": wi have Key Figure (available for planning) in Strucrure AND character 0FISCPER.
    0FISCPER is restricted by interval. When I run query, new lines are not displayed.
    BUT when I "swap axes" - new line is available.
    In standart I cannot do how I want.
    The first solution is:
    Put new line with "#" and NULL. In query properties in tab "Rows/Columns" activate Supress Zeros.
    Can you help me to find another solution, when I do not have to initialize data?

    Hi Harjan,
    No, it is not possible to extend, but If you are using Excel (BEx Analyzer), you should be able to just enter new rows at the bottom of the Analysis Grid, and refresh to re-sort the rows.
    Regards,
    Anil

  • Windows Server 2008 R2: Unable to add a subnet to Site and Services

    Hi All,
    I'm trying to add a new subnet to Site and Services to allow new server in that specific subnet to access the proper DC.
    These are the actual subnet configured:
    - 192.168.28.0/22
    - 192.168.48.0/22
    - 192.168.80.0/22
    Now I want to add this subnet: 192.168.90.0/22
    Why I cannot confirm this new subnet in the GUI?
    Thanks

    Hi,
    Becasue the network prefix is improper.
    If we use "/22" as the mask, the network prefix should be 192.168.4n.0/22 (n=0,1,2... ...).
    Therefore the proper network prefix should be 192.168.88.0/22 or 192.168.92.0/22.
    For detailed information about subnetting, please refer to the link below,
    http://technet.microsoft.com/en-us/library/cc958834.aspx
    Best Regards.
    Steven Lee
    TechNet Community Support

  • HT1473 I got my MAC PRO installed with iOS lion and since then i'm unable to add music on my iTunes and i tried adding to library option but still it copies and at the end it stays empty, doesn't even open new songs on it. any suggestions ?

    hey,
    I've rebooted my mac before installing new ios lion, so after everything was done i copied my data back to my mac book pro, then simple clicked on adding to library option in itune and it only synced half of the track and rest simply didnt copy, i thought maybe some error occured and i tryed the same procedure again but its not adding more tracks in it. and i just notice when ever i try play a new song through my data it does not open in itune these are the same tracks and songs i been listening to since ages on different note books and pods..
    Help me i've tryed everything but nathing seems to be working. and my itune is uptodated =S

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • HP LaserJet Pro M1536dnf Multifunction Printer (unable to add print driver hpfax1, error code 87)

    Hi, my printer HP LaserJet Pro M1536dnf Mfp, suddenly didnt work so i remove the printer, and downloaded a new driver  http://support.hp.com/us-en/drivers/selfservice/HP-LaserJet-Pro-M1536-Multifunction-Printer-series/3974271/model/3974278#Z7_3054ICK0KGTE30AQO5O3KA30R1 once dowloaded, i run it and uninstall the printer, restart my pc, and proceed to installing. but in the process of installing a error occurr, saying that "Unable to add printer, error code 87", and that " HP Toolbox FX has encountered an error and can not recover. once i click ok. it tells me to restart my pc and reinstall it again. i did it for 8x, and still with the same error. please help really need a help right now. as my boss is going to kill me

    Hey , Welcome to the HP Support Forums!
    I understand that you're getting the error 'Unable to add print driver hpfax1, error code 87' when installing your HP LaserJet Pro M1536dnf Multifunction Printer on your Windows 7 computer. I would like to assist you today with resolving this install issue. Thank you for including all of the troubleshooting steps that you have completed prior to reaching out for support. At this time I am going to walk you through some additional software and driver troubleshooting steps. Please follow all of the steps below.  If you're using your HP Laserjet through a USB Cable connection, please disconnect that cable now.  Step one: Remove Driver: 1. Click on your Start menu 2. Select Control Panel 3. Select Programs and Features 4. When Programs and Features opens a list of programs installed on your computer will populate. Click on the 'Installed ON' tab at the top to change the date so the recently installed items show at the top. This will make it easier to manually locate the three HP Laserjet items you need to uninstall.  5. Next, look for the HP LJ M1530 MFP Series HP Scan, HPLaserJetHelp_LearnCenter, and HP LaserJet Professional M1530 MFP Series. If you see any 3 of these, or all 3 of these items, please click on them and select Uninstall.   Once you have confirmed that those three items have been uninstalled, please close Programs and Features and proceed to the next step.   Step 2: Clear Temp Files:  Click on your Start menuIn the 'search programs and files' box located right above Start after you click on it, type %temp% and hit enter on your keyboardWhen the Temp folder opens, select Ctrl + A at the same time on your keyboard. Everything in this folder will now highlight.Select the 'delete' button on your keyboard. The Temp folder contains temporary internet files. No actual files or folders on your computer will be affected by deleting the Temp files. Should a Temp file still be used than you will automatically get the pop up to 'skip' that item.Close the Temp folder once it is emptiedRight click the Recycling Bin on your desktop and select Empty Recycling BinPlease proceed to the next step.    Step 3: Download Installer Package:  Please click here to download the Full Feature Installer package. Once the download is complete, click on the download to allow it to 'Run'An extraction should now automatically occur. Once the extraction is complete an installer window will open. Please close the installation window.  You do not want to run the installation at this time.   Step 4: Run Scrubber:  To ensure that no trace of the HP Software and Driver package remain on your computer, I am going to have you run a Scrubber built into the installer package for your printer.  Click on your Start menuIn the 'search programs and files' box located right above Start after you click on it, type %temp% and hit enter on your keyboardWhen the Temp folder opens locate the 7z folder. Click on this folder to open it. This is the HP Laserjet Installer Click on the Utilities folder under the 7z folderDouble left click on Scrubber. It is an application which should launch the HP Uninstaller. Please follow the onscreen prompts to complete the uninstaller.    Once the uninstall has completed please proceed to the next step. Be sure to Restart your computer if the uninstall process prompts you to.    Step 5: Check Print Server Properties:  Click on your Start menuClick on Devices and PrintersIn the Devices and Printers window look for your HP Laserjet. If you see it listed please right click on it and choose 'Delete' or 'Remove Device'. Next, click on any device listed under 'Printers and Faxes' once just to highlight itClick Print Server Properties at the top of the windowClick on the Drivers tabLook for your HP Laserjet driver. If you see it click on it and click Remove at the bottomClick Remove Driver OnlySelect OKSelect Apply and OK on the Print Server Properties windowClose Devices and Printers. Please proceed to the next step.  Step 6: Run Disk Cleanup Utility: Click on your Start menuSelect All ProgramsSelect AccessoriesSelect System ToolsSelect Disk Cleanup Run a Disk Cleanup on the C DriveWhen prompted, check Downloaded Program files, Temporary Internet Files, Recycle Bin, Temporary Files, and Thumbnails Once the Disk Cleanup is complete, please proceed to the next step.    Step 7: Run CCLeaner:  To ensure that there are no malicious files on your computer or Registry conflicts on your computer I am going to have you run a CCLeaner before we install your printer. Please click here to download the CCLeaner Tool. Once the website opens select the link at the top for 'Free Download'. Once the download is complete please complete the Scan. Should multiple malicious files be found you may need to run the Scan multiple times to remove all malicious files. Once your system comes back as clean, please proceed to the last step.    Step 8: Install Device:  Please click here to download the Full Feature Installer package for your HP LaserjetOnce the download is complete please allow the download to RunPlease follow the onscreen prompts to install your HP LaserjetIf using a USB Cable connection please do not plug in the USB Cable until the installer window prompts you to  Once the installation has completed successfully please test your machine to confirm that everything is functioning properly. Please respond to this post with the result of your troubleshooting. I look forward to hearing from you. Good luck!

  • Unable to add network printers from Windows Server 2012 R2 to client running Windows 7 Pro x64

    New Windows Server 2012 R2 Standard in the environment.  Added print services to it and added five HP printers to it and shared them.  Also deployed the printers via group policy.
    Clients are running Windows 7 Pro x64.  The group policy fails to install the printers (error 0x00000002).  We get the same error when trying to manually add the printer from the client side.
    From Event Viewer: Group Policy was unable to add per computer connection <<printer share>>. Error code 0x2. This can occur if the name of the printer connection is incorrect, or if the print spooler cannot contact the print server.
    Any ideas on troubleshooting this?
    Thanks.
    -John

    John,
    You might try playing with the HP universal driver, that might help you.  Try installing a new shared printer on the server using the universal print driver, then try and connect to it to see if it is any better.
    Check these GPO settings to ensure local machines can install the drivers.
    1. Configure the following two Group Policy settings:
    Computer Configuration\Policies\Administrative Templates\System\Driver Installation\Allow non-administrators to install drivers for these devices setup classesEnabled
    2. Device class GUID of printers: {4d36e979-e325-11ce-bfc1-08002be10318}
    Computer Configuration/Policies/Administrative Templates/Printers/Point and Print RestrictionsEnabled
    Security Prompts: When Installing Drivers for a new connection = Do not show warning or elevation prompt
    This article might help you out also:
    http://www.eversity.nl/blog/2012/09/windows-cannot-connect-to-the-printer-operation-failed-with-error-0x00000002/
    Cheers,
    Curt Winter
    Certified Microsoft Professional
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied. If you found my post helpful, please mark it as the answer.

  • How to add iView to Page

    Hi experts,
    currently I have created an iView in the CE 7.1, SP3  environment with Enterprise Portal lite. How to add iView to the Page and subsequently add the Page to the workset?
    As now, there isn't a "add" when I right click on iView.
    thanks.

    Hi,
    Here is the help link:
    http://help.sap.com/saphelp_nwce10/helpdata/en/1d/ccdf3df2ad685ae10000000a11405a/content.htm
    Regards
    Srinivasan T

  • Cisco ASA 5505 VPN connection issue ("Unable to add route")

    I'm trying to get IPSec VPN working onto a new Cisco ASA5505. Pretty standard configuration.
    Setup:
    * Cisco VPN client on Windows 7 (v5.0.07.0290 x64 on Laptop1 and v5.0.07.0440 x64 on Laptop2)
    * PPPoE/NAT and internal DHCP on the ASA were configured with the Startup Wizard in ASDM
    NATting is working fine - internal PCs get an IP address in the 192.168.2.0/24 range and can all access the Internet.
    I wanted to be able to connect from anywhere to the ASA in order to reach one of the internal servers. Should be pretty basic.
    First I tried with the built-in ASDM IPSec Wizard, instructions found here.
    VPN clients can connect to the ASA, are connected (until they're manually disconnected), but cannot reach the internal network nor the Internet. Note VPN client can connect fine to a different VPN site (not administered by myself).
    Client logs show following error messages:
    1 15:53:09.363 02/11/12 Sev=Warning/3     IKE/0xA300005F
    Firewall, Cisco Intrusion Prevention Security Agent, is not running, the client will not send firewall information to concentrator.
    2 15:53:13.593 02/11/12 Sev=Warning/2     CVPND/0xE3400013
    AddRoute failed to add a route with metric of 0: code 160
    Destination     192.168.1.255
    Netmask     255.255.255.255
    Gateway     172.16.1.1
    Interface     172.16.1.101
    3 15:53:13.593 02/11/12 Sev=Warning/2     CM/0xA3100024
    Unable to add route. Network: c0a801ff, Netmask: ffffffff, Interface: ac100165, Gateway: ac100101.
    4 15:54:30.425 02/11/12 Sev=Warning/2     CVPND/0xA3400015
    Error with call to IpHlpApi.DLL: CheckUpVASettings: Found IPADDR entry addr=172.16.1.101, error 0
    5 15:54:31.433 02/11/12 Sev=Warning/2     CVPND/0xA3400015
    Error with call to IpHlpApi.DLL: CheckUpVASettings: Found IPADDR entry addr=172.16.1.101, error 0
    6 15:54:32.445 02/11/12 Sev=Warning/2     CVPND/0xA3400015
    Error with call to IpHlpApi.DLL: CleanUpVASettings: Was able to delete all VA settings after all, error 0
    7 20:50:45.355 02/11/12 Sev=Warning/3     IKE/0xA300005F
    Firewall, Cisco Intrusion Prevention Security Agent, is not running, the client will not send firewall information to concentrator.
    8 20:50:50.262 02/11/12 Sev=Warning/2     CVPND/0xE3400013
    AddRoute failed to add a route with metric of 0: code 160
    Destination     192.168.1.255
    Netmask     255.255.255.255
    Gateway     172.16.1.1
    Interface     172.16.1.100
    9 20:50:50.262 02/11/12 Sev=Warning/2     CM/0xA3100024
    Unable to add route. Network: c0a801ff, Netmask: ffffffff, Interface: ac100164, Gateway: ac100101.
    I've already tried the suggestions from this link, although the problem is different there (as the user can still access the internet, even without split tunneling, which I cannot).
    A show run shows the following output (note in the below I have tried a different VPN network: 192.168.3.0/24 instead of 172.16.1.0/24 seen in the Client log)
    Result of the command: "sh run"
    : Saved
    ASA Version 8.2(5)
    hostname AsaDWD
    enable password kLu0SYBETXUJHVHX encrypted
    passwd 2KFQnbNIdI.2KYOU encrypted
    names
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.2.254 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    pppoe client vpdn group DW-VPDN
    ip address pppoe setroute
    ftp mode passive
    access-list inside_nat0_outbound extended permit ip any 192.168.3.0 255.255.255.240
    pager lines 24
    logging enable
    logging asdm informational
    mtu outside 1500
    mtu inside 1500
    ip local pool DWD-VPN-Pool 192.168.3.5-192.168.3.15 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    global (outside) 1 interface
    nat (inside) 0 access-list inside_nat0_outbound
    nat (inside) 1 0.0.0.0 0.0.0.0
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    http server enable
    http 192.168.2.0 255.255.255.0 inside
    http 0.0.0.0 0.0.0.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto ipsec transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
    crypto ipsec transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
    crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
    crypto ipsec transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
    crypto ipsec security-association lifetime seconds 28800
    crypto ipsec security-association lifetime kilobytes 4608000
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set pfs group1
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
    crypto map outside_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map outside_map interface outside
    crypto isakmp enable outside
    crypto isakmp policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    vpdn group DW-VPDN request dialout pppoe
    vpdn group DW-VPDN localname fa******@SKYNET
    vpdn group DW-VPDN ppp authentication pap
    vpdn username fa******@SKYNET password *****
    dhcpd auto_config outside
    dhcpd address 192.168.2.5-192.168.2.36 inside
    dhcpd domain DOMAIN interface inside
    dhcpd enable inside
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    webvpn
    group-policy DWD internal
    group-policy DWD attributes
    vpn-tunnel-protocol IPSec
    username test password ******* encrypted privilege 0
    username test attributes
    vpn-group-policy DWD
    tunnel-group DWD type remote-access
    tunnel-group DWD general-attributes
    address-pool DWD-VPN-Pool
    default-group-policy DWD
    tunnel-group DWD ipsec-attributes
    pre-shared-key *****
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
    message-length maximum client auto
    message-length maximum 512
    policy-map global_policy
    class inspection_default
    inspect dns preset_dns_map
    inspect ftp
    inspect h323 h225
    inspect h323 ras
    inspect rsh
    inspect rtsp
    inspect esmtp
    inspect sqlnet
    inspect skinny
    inspect sunrpc
    inspect xdmcp
    inspect sip
    inspect netbios
    inspect tftp
    inspect ip-options
    service-policy global_policy global
    prompt hostname context
    no call-home reporting anonymous
    Cryptochecksum:3e6c9478a1ee04ab2e1e1cabbeddc7f4
    : end
    I've installed everything using the CLI as well (after a factory reset). This however yielded exactl the same issue.
    Following commands have been entered:
    ip local pool vpnpool 172.16.1.100-172.16.1.199 mask 255.255.255.0
    username *** password ****
    isakmp policy 1 authentication pre-share
    isakmp policy 1 encryption 3des
    isakmp policy 1 hash sha
    isakmp policy 1 group 2
    isakmp policy 1 lifetime 43200
    isakmp enable outside
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto dynamic-map outside_dyn_map 10 set transform-set ESP-3DES-SHA
    crypto dynamic-map outside_dyn_map 10 set reverse-route
    crypto dynamic-map outside_dyn_map 10 set security-association lifetime seconds 288000
    crypto map outside_map 10 ipsec-isakmp dynamic outside_dyn_map
    crypto map outside_map interface outside
    crypto isakmp nat-traversal
    sysopt connection permit-ipsec
    sysopt connection permit-vpn
    group-policy dwdvpn internal
    group-policy dwdvpn attributes
    vpn-tunnel-protocol IPSec
    default-domain value DWD
    tunnel-group dwdvpn type ipsec-ra
    tunnel-group dwdvpn ipsec-attributes
    pre-shared-key ****
    tunnel-group dwdvpn general-attributes
    authentication-server-group LOCAL
    default-group-policy dwdvpn
    Unfortunately I'm getting the same "AddRoute failed to add a route with metric of 0: code 160" error message.
    I'm very confused as this should be a pretty standard setup. I tried to follow the instructions on the Cisco site to the letter...
    The only "differences" in my setup are an internal network of 192.168.2.0 (with ASA IP address 192.168.2.254) and PPPoE with DHCP instead of no PPPoE at all.
    Does anyone know what's going on?

    Yes, I have tried from a different laptop - same results. Using that laptop I can connect to a different IPSec site without issues.
    Please find my renewed config below:
    DWD-ASA(config)# sh run: Saved:ASA Version 8.2(5) !hostname DWD-ASAenable password ******* encryptedpasswd ****** encryptednames!interface Ethernet0/0 switchport access vlan 2!interface Ethernet0/1!interface Ethernet0/2!interface Ethernet0/3!interface Ethernet0/4!interface Ethernet0/5!interface Ethernet0/6!interface Ethernet0/7!interface Vlan1 nameif inside security-level 100 ip address 192.168.2.254 255.255.255.0 !interface Vlan2 nameif outside security-level 0 pppoe client vpdn group DWD ip address pppoe setroute !ftp mode passiveaccess-list inside_nat0_outbound extended permit ip any 192.168.50.0 255.255.255.224 pager lines 24logging asdm informationalmtu inside 1500mtu outside 1500ip local pool vpnpool 192.168.50.10-192.168.50.20 mask 255.255.255.0icmp unreachable rate-limit 1 burst-size 1no asdm history enablearp timeout 14400global (outside) 1 interfacenat (inside) 0 access-list inside_nat0_outboundnat (inside) 1 0.0.0.0 0.0.0.0timeout xlate 3:00:00timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolutetimeout tcp-proxy-reassembly 0:01:00timeout floating-conn 0:00:00dynamic-access-policy-record DfltAccessPolicyhttp server enablehttp 192.168.2.0 255.255.255.0 insidehttp 0.0.0.0 0.0.0.0 outsideno snmp-server locationno snmp-server contactsnmp-server enable traps snmp authentication linkup linkdown coldstartcrypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac crypto ipsec transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac crypto ipsec transform-set ESP-DES-SHA esp-des esp-sha-hmac crypto ipsec transform-set ESP-DES-MD5 esp-des esp-md5-hmac crypto ipsec transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac crypto ipsec transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac crypto ipsec transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac crypto ipsec transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac crypto ipsec transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac crypto ipsec security-association lifetime seconds 28800crypto ipsec security-association lifetime kilobytes 4608000crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set pfs group1crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5crypto map outside_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAPcrypto map outside_map interface outsidecrypto isakmp enable outsidecrypto isakmp policy 10 authentication pre-share encryption 3des hash sha group 2 lifetime 86400telnet timeout 5ssh 0.0.0.0 0.0.0.0 outsidessh timeout 5console timeout 0vpdn group DWD request dialout pppoevpdn group DWD localname *****@SKYNETvpdn group DWD ppp authentication papvpdn username *****@SKYNET password ***** dhcpd auto_config outside!dhcpd address 192.168.2.10-192.168.2.40 insidedhcpd enable inside!threat-detection basic-threatthreat-detection statistics access-listno threat-detection statistics tcp-interceptwebvpn enable outside svc enablegroup-policy DfltGrpPolicy attributes vpn-tunnel-protocol IPSec l2tp-ipsec svc webvpngroup-policy dwdipsec internalgroup-policy dwdipsec attributes vpn-tunnel-protocol IPSec default-domain value DWDDOMusername user1 password ***** encrypted privilege 0username user1 attributes vpn-group-policy dwdipsectunnel-group dwdipsec type remote-accesstunnel-group dwdipsec general-attributes address-pool vpnpool default-group-policy dwdipsectunnel-group dwdipsec ipsec-attributes pre-shared-key *****tunnel-group dwdssl type remote-accesstunnel-group dwdssl general-attributes address-pool vpnpool!class-map inspection_default match default-inspection-traffic!!policy-map type inspect dns preset_dns_map parameters  message-length maximum client auto  message-length maximum 512policy-map global_policy class inspection_default  inspect dns preset_dns_map   inspect ftp   inspect h323 h225   inspect h323 ras   inspect rsh   inspect rtsp   inspect esmtp   inspect sqlnet   inspect skinny    inspect sunrpc   inspect xdmcp   inspect sip    inspect netbios   inspect tftp   inspect ip-options !service-policy global_policy globalprompt hostname context no call-home reporting anonymousCryptochecksum:f5c8dd644aa2a27374a923671da1c834: endDWD-ASA(config)#

  • Ever since my last update I have been unable to add songs from my i tunes library onto my i phone.  The "add to" button does not appear for me when I connect my i phone.  Can anyone shed some light on this for me?

    Ever since my last update I have been unable to add songs from my i tunes library onto my i phone.  The "add to" button does not appear for me when I connect my i phone.  Can anyone shed some light on this for me?

    Thanks for that 'sberman' - because my iPhone is backed-up to my work computer (only at this stage) I have had to call our IT Department in Adleaide. (4 times this morning). The last guy managed to get the phone into 'DFU Mode' - no more recovery mode screen - (kind of 'asleep' perhaps) from my understanding of same. I am awaiting a call again from IT so they can get my computer to actually recognise my iPhone on the C Drive. This also happened to  one of my colleagues in Newman (WA). She got so frustrated with the whole process that she bought another phone the next time she was in 'civilisation.' She hasn't had any problems since. (Cross fingers).
    Thanks again, Sandra2474.

  • TS3147 I have been unable to add an HP Photosmart C4480 printer to my existing printer list using a USB connection. My current operating system is OS X  version 10.9.1. It seems that software is available, but it doesn't work. Any suggestions?

    I have been unable to add an HP Photosmart C4480 printer to my existing printer list using a USB connection. Software seems to be available and thought I had downloaded it, but doesn't work. Any suggestions?

    Try deleting the printer, restarting, and trying software update again.
    If that doesn't work, you can download the entire HP package here:
    http://support.apple.com/kb/DL907

  • Unable to add or remove iView to role in user interface

    Hi,
    from last fews days, i am having problem with creation and deletion of ivIews on portal.
    I created one iView and added it to the role which already had some iViews before... But the new iView i had added is not shown to user.. it shows me in content administrator that iView is been added..
      After which i had restarted my server...after restart it shown the iView to user...now i tried to add one more new iView..but still it shown me the same problem..
    I am also unable to remove iView from portal.. i deleted the iView from content administrator..it shows the iView removed from role.... but on user interface this iView link is still seen in detail navigation..
    although on clicking it does not show any content for the removed iView..but link is still present...
    Hve any one faced this issue before...!!!
    regards,
    Jigar Oza.

    Hi,
    did u added the iviews as delta link or copy.
    This sometimes happens if you add as direct copy intstead of delata link.
    Delete the view and save. After that add as delta link and save.
    This may solve your problem.
    Raghu

Maybe you are looking for

  • Safari 5.1 keeps crashing - OSX 10.6.8

    Process:         Safari [192] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version:         5.1 (6534.50) Build Info:      WebBrowser-75345000~1 Code Type:       X86-64 (Native) Parent Process:  la

  • Mac Mini - Philips TV model 42pf9831d

    I just purchased a 2.5ghz Apple Mac Mini and when I connect it to my Philips TV model 42pf9831d via hdmi the television initially displays the apple rebooting for the first 30 seconds, then the television goes blank.  The Philips specs state hdcp is

  • SBO Mailer, message fails to be sent

    Hi, I try to send invoices via SBO Mailer... the message appears in my SENT ITEMS (in Messages/alerts overview), but with a red X, meaning that there is an error while trying to send the message.  When I try to send messages without attachments, it w

  • Sharing .dir/.cst files with mutiple users

    We're having problems moving to a thin client. I have a customer running a stub projector that loads the main dir file. The dir file has multiple, dynamically-linked casts (dozens that swap in and out depending on context). It has worked great for ye

  • Why should we use BRTOOLS for  oracle data backup?

    Hi there, Any one of you have any idea on specific advantages with using BRTOOLS for backup over using only Oracle RMAN? Are there any advantages using brbackup in databackups which we do not get with RMAN alone? thanks Arlin