Direct Access to Bam's reports

Hi
I try to call one report from other application (BI Analitics), i put the URL
in the page, when i clic in the link, the window-authentication ask for user and password, How i can send the user and password in the URL to avoid the window-authentication??
Regards
Jesus Torres

You might try crafting the URL as:
http(s)://username:password@server/yourwebpage.html
Did not test this myself, however.I´m trying with a IE 6 and the url doesn´t work, IE return a "Error: Syntax not valid".

Similar Messages

  • Direct access server reporting NAT64 Translation failure

    We are seeing strange issue , Direct Access server 2012 is reporting NAT64 warning.
    I am trying to isolate causing could not find any useful information.
    DA server is behind firewall having Ipv4 internal address.
    Error I see on dash board is
    NAT64 translation failures might be preventing remote clients from accessing IPv4-only servers in the corporate network.
    Any help appreciated.

    NAT64 is an internal component of DirectAccess and there really isn't anything that you configure manually for it. Seeing a message about NAT64 having trouble is more than likely being caused by some kind of external influence on that server. For example,
    many of the quirky error messages or problems that we see during DirectAccess implementations are caused by security policies being present in the domain. For example, if you plug in a new server to use as your DA server, if you do not block inheritance in
    Group Policy, as soon as you join that new server to your domain it may receive settings from existing GPOs in your network. Sometimes those GPOs conflict with the things that DirectAccess needs, and they have therefore broken DA before you even set it up.
    If you are setting this up as a new DA server, I recommend removing the Remote Access role, blocking inheritance in Group Policy so that none of your preexisting GPOs get applied to it, and starting the configuration again.

  • Logical database vs direct access of database table

    Hi
    I have created a FI report.    I am trying to get data from large FI tables like BSAK, BSEG, BKPF, RSEG.  eventhough there are 10 records as per my criteria, system is taking morethan an hour time even in background processing.  This may be becaz of lot of conditions that I am applying to filter the data.  But still trying to improve the performance
    For fetching data which is the better way for getting optimum performance of the report.
    a) directly fetching data from database tables
    b) using logical database collecting data into an itab
    regards,
    mallik

    Hi,
    If you are accessing the database tables more than once with different criteria then definetly it will take more time. In such case write only one Select statement on the table and get all the required data into an internal table and then process this internal table as per your logic.
    Use of LDBs is definetly faster but filter conditions might not match with your filter conditions. In such case direct access of database table is preferable but as i said in above paragraph.
    thanks,
    sksingh

  • Cannot open in Dreamweaver, to edit maybe because of this line " ?php defined('SYSPATH') or die('No direct access allowed.');"

    Because of  this line "<?php defined('SYSPATH') or die('No direct access allowed.');" at the onset of my php script I can not open my site in dreamweaver. How do I define the "syspath" for dreamweaver so it can be opened?
    Please assist me if possible to open my site in dreamweaver. I contacted tech support who were unable to assist me and referred me to the forums. If anyone know how to resolve this please let me know. Thanks

    Now that I have found the "index.php" file and uploaded it to wamp/www, I am not quite sure how to proceed to successfully integrate it in my localserver files for use in dreamweaver.   For quick reference the syspath definition is:
    // Define the absolute paths for configured directories
    define('APPPATH', realpath($application).DIRECTORY_SEPARATOR);
    define('KOMODPATH', realpath($komodules).DIRECTORY_SEPARATOR);
    define('MODPATH', realpath($modules).DIRECTORY_SEPARATOR);
    define('COMMONPATH', realpath($common).DIRECTORY_SEPARATOR);
    define('SYSPATH', realpath($system).DIRECTORY_SEPARATOR);
    Please advise. Thank you.
    Below I have pasted the full "index.php" script.
    <?php
    * Debug variable used in Bootstrap, this will setup the Kohana::$environment =  Kohana::DEVELOPMENT;
    * Seted to TRUE:
    *  - disables the cache, 
    *  - enable the profiler in the bottom of the page
    *  - Enable logs for anything (false=only ERRORs)
    *  - Displays the full error stack instead of friendly page
    define('OC_DEBUG', FALSE);
    * Where the application for Open Classifieds is installed.
    $application = '/oc';
    * The directory in which your external modules are located.
    $modules = $application.'/modules';
    * The directory in which the Kohana resources are located. The system
    * directory must contain the classes/kohana.php file.
    * @see  http://kohanaframework.org/guide/about.install#system
    $system = $application.'/kohana/system';
    * The directory in which KO modules are located.
    * @see  http://kohanaframework.org/guide/about.install#modules
    $komodules = $application.'/kohana/modules';
    * The directory where common Open Classifieds files are
    * @see https://github.com/open-classifieds/common
    * @see https://github.com/open-classifieds/openclassifieds2/blob/master/CONTRIBUTING.md
    $common = $application.'/common';
    * The default extension of resource files. If you change this, all resources
    * must be renamed to use the new extension.
    * @see  http://kohanaframework.org/guide/about.install#ext
    define('EXT', '.php');
    * Set the PHP error reporting level. If you set this in php.ini, you remove this.
    * @see  http://php.net/error_reporting
    * When developing your application, it is highly recommended to enable notices
    * and strict warnings. Enable them by using: E_ALL | E_STRICT
    * In a production environment, it is safe to ignore notices and strict warnings.
    * Disable them by using: E_ALL ^ E_NOTICE
    * When using a legacy application with PHP >= 5.3, it is recommended to disable
    * deprecated notices. Disable with: E_ALL & ~E_DEPRECATED
    ini_set('display_errors', 'On');
    # Error reporting may look like this but E_ALL is only what we need
    error_reporting(E_ALL & ~E_DEPRECATED);
    * End of standard configuration! Changing any of the code below should only be
    * attempted by those with a working knowledge of Kohana internals.
    * @see  http://kohanaframework.org/guide/using.configuration
    // Set the full path to the docroot
    define('DOCROOT', realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR);
    // Make the application relative to the docroot, for symlink'd index.php
    if ( ! is_dir($application) AND is_dir(DOCROOT.$application))
        $application = DOCROOT.$application;
    // Make the modules relative to the docroot, for symlink'd index.php
    if ( ! is_dir($modules) AND is_dir(DOCROOT.$modules))
        $modules = DOCROOT.$modules;
    // Make the modules relative to the docroot, for symlink'd index.php
    if ( ! is_dir($komodules) AND is_dir(DOCROOT.$komodules))
        $komodules = DOCROOT.$komodules;
    // Make the common module relative to the docroot, for symlink'd index.php
    if ( ! is_dir($common) AND is_dir(DOCROOT.$common))
        $common = DOCROOT.$common;
    // Make the system relative to the docroot, for symlink'd index.php
    if ( ! is_dir($system) AND is_dir(DOCROOT.$system))
        $system = DOCROOT.$system;
    // Define the absolute paths for configured directories
    define('APPPATH', realpath($application).DIRECTORY_SEPARATOR);
    define('KOMODPATH', realpath($komodules).DIRECTORY_SEPARATOR);
    define('MODPATH', realpath($modules).DIRECTORY_SEPARATOR);
    define('COMMONPATH', realpath($common).DIRECTORY_SEPARATOR);
    define('SYSPATH', realpath($system).DIRECTORY_SEPARATOR);
    // Clean up the configuration vars
    unset($application, $modules, $komodules,$common, $system);
    // OC install
    if (file_exists(DOCROOT.'install/install.lock'))
        // Load the installation check
        return include DOCROOT.'install/index'.EXT;
    * Define the start time of the application, used for profiling.
    if ( ! defined('KOHANA_START_TIME'))
        define('KOHANA_START_TIME', microtime(TRUE));
    * Define the memory usage at the start of the application, used for profiling.
    if ( ! defined('KOHANA_START_MEMORY'))
        define('KOHANA_START_MEMORY', memory_get_usage());
    // Bootstrap the application
    require APPPATH.'bootstrap'.EXT;
    if ( ! defined('SUPPRESS_REQUEST'))
         * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO'].
         * If no source is specified, the URI will be automatically detected.
        echo Request::factory()
            ->execute()
            ->send_headers()
            ->body();

  • Data source could not able select NOT ALLOWED DTP Direct Access

    He Experts,
    I have a Problem, I have searched in Fourms and Blogs also but I did get any solution .
    I am developing HCM reports, as per my requirement extracting data through customized Function Module.ZGET_REQUI_DETAILS_NEW1.
    I can find data in RSA3 and it is loaded sucessful in BI, this I was comformation with the monitor screen
    all indicators are in Green Trafic signals.
    then I came to PSA but I cann't see data here one pop up is comming Error & in help message no D0313
    I found one thing the request which is in PSA come with GREEN (request updated to Target)
    rest of all standard are in Red untill transfer to targets.
    I found secound thing in the DATA SOURCE in Extraction Tab option Direct Access is selected with
    Allowed, but I want to sent data to standard DSO.
    that options are in disable mode even in edit selection.
    Queires:
    1. How to change the option NOT ALLOWED DTP Direct Access insted of Allowed in Data Source(ZREQUI_FM)
    2. what is will do to see data in PSA.
    Regards
    Vijay

    Dear Vijay,
    Iu2019m going to try helping you,
    In the ECC DataSource setting tcode: SBIW. You should check in your ZREQUI_FM DataSource the following setting of value in the DataSource: Costumer Version Edit field u201CExtractionu201D the following field ExtractStruct, Direct Access and Delta Update:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/fb69a990-0201-0010-64ab-cbbfc6f0f75b
    I hope this guideline can help you to find the answeru2026.
    Luis

  • Logical link / Work center for directly accessing "Business Activities"

    Hi All,
    We are upgrading from CRM 5.0 to CRM 2007. One unique challenge that I have encountered is the access to search, change or create - BUSINESS ACTIVITIES (Leading Transaction category: BUS2000126) in the CRM Web UI. We would like to directly access Business activities through a work center -> Logical link or a Logical link, in the SALESPRO business role.
    This is available in the IC_AGENT business role. But you need to create a preceding Interaction record and then create a followup activity -> Business activity. We do not want to do this. We want to be able to access the business activites directly. For example, Leads and Opportunities can be accessed directly through the work Center: "Sales Cycle".
    Does anyone know if there is a work center that I can use in SALESPRO business role that will give me direct access to Business Activities . I can use the transaction launcher to access the HTML version of the winclient transaction (T Code: (CRMD_BUS2000126) but I do not want to use the transaction launcher. Any ideas?

    Well I am pretty Serious?!!!
    The standard SAP delivered "ACTIVITIES" WORK CENTER has the following Logical links for CREATE:
    Activity
    Activity Scheduling
    Activity Template
    Appointment
    E-Mail
    Interaction Log
    Task
    Visit Plan
    And when you use the Activity create - you ONLY have the option to create:
    Interaction log - Channel report
    Interaction log - Partner report
    Task - Approve
    Task - Recurring Task
    I would expect to see more than this. There are other BUS2000126 Business Activity transaction types which are enable to be maintained online in SPRO. But they do not show up here. I can use the Search - Activity logical link and then use Activity Type to find the other Transaction types. But not in Create. I can control the transaction types that can be displayed for Leads and Opportunities. It doesn't seem to work for Activities!!!!
    Is this part of standard CRM 2007 SALESPRO delivered role functionality??? I have SAP_ALL and SAP_NEW and have access to the other Business activities in my security role. My Ophthamologist did confirm that my eyes are doing fine so far. So this has something to do with the way this 'Work Center' has been designed. Apart physiological/anatomical impediments what am I missing???
    Thanks,
    Ramesh

  • Direct access network connectivity assistant, the update is not applicable

    Been testing DirectAccess for a couple of weeks now, and all seemes to be working fine. But now it want to install the DA connectivity assistant but it fails to install. When searching for updates on this computer it gives an error message as seen in the
    screenshot below .
    I've reinstalled Windows , updated windows, removed the virus scanner, checked if the update was already installed. Nothing worked
    OS = Windows 7 Enterprise N
    Windows update log appears 
    2013-11-15 09:54:11:265
    912 1290
    Report CWERReporter finishing event handling. (00000000)
    2013-11-15 09:54:42:534
    912 1290
    Report CWERReporter finishing event handling. (00000000)
    2013-11-15 09:54:56:188
    4736 984
    COMAPI -----------  COMAPI: IUpdateServiceManager::RemoveService  -----------
    2013-11-15 09:54:56:188
    4736 984
    COMAPI  - ServiceId = {f8fc7b4b-f693-4113-ab5f-137e03025faa}
    2013-11-15 09:54:56:609
    4736 984
    COMAPI ISusInternal::DisconnectCall failed, hr=8024000C
    2013-11-15 09:54:56:625
    4736 984
    COMAPI waiting for worker thread to complete
    2013-11-15 09:54:56:625
    4736 984
    COMAPI Removed OnCompleted callback from GIT (cookie=256)
    2013-11-15 09:54:56:625
    4736 984
    COMAPI IUpdateService removing volatile scan package service, serviceID = {F8FC7B4B-F693-4113-AB5F-137E03025FAA}
    2013-11-15 09:54:56:641
    912 1334
    Agent WARNING: WU client fails CClientCallRecorder::RemoveService with error 0x80248014
    2013-11-15 09:54:56:656
    4736 984
    COMAPI WARNING: ISusInternal::RemoveService failed, hr=80248014

    Hi,
    Firstly, I would like to confirm with you if it worked before on Windows 7 Enterprise N version.
    As I known, following are some additional features that Windows 7 Enterprise N edition has and other versions does not have:
    a. Direct Access
    b. Branch cache
    c. Federated search
    You need to meet the following requirements to install the DA connectivity assistant.
    Windows 7 Enterprise, Windows 7 Ultimate
    1. 10 MB of disk space.
    2. 10 MB of RAM.
    3. Microsoft Word or Microsoft Word Viewer (available as a free download) can be used to view Word documents.
    I would like to suggest you download and install it from official website.
    Microsoft DirectAccess Connectivity Assistant 2.0
    http://www.microsoft.com/en-us/download/details.aspx?id=29039
    Hope it helps.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

  • Access global data of report in global class methods?

    Hi all,
    I have defined one global class in SE24 and i am using methods of this class in report program.
    Can i access global data of my report program in class methods directly without declaring it as IMPORT
    parameter?
    Thanks,
    Apita

    Hi,
    Well, now you did confuse me: first you asked about using global data of a report program in global class (created in SE24), and the answer is: no, you can't directly access the global data of another program in a method of global class (yes, you should pass them via importing parameters), and you shouldn't even consider using indirect means of doing so via special form of ASSIGN statement reserved for internal use by SAP. The ASSIGN will not work if someone reuses the global class elsewhere in the system without loading your report. Don't ever program such atrocious dependencies in global class...
    And now you ask about the use "in method implementation in report program"..? Just to be sure - you can't program the implementation of a global class method in a report program.
    You can program a local class inheriting from a global class and redefine/re-implement methods of such global super-class in a report program. Global data of report program, including the selection screen, would be directly accessible to such local class. It would still not be a good idea to use this access:
    Conversely, within an encapsulated unit, that is, within a class, you should avoid accessing more global data directly. Within methods, you should generally modify attributes of the class only. Write access to global data outside the class is not recommended. Accessing data in this way should only be done using specially marked methods, if at all. The use of methods of a class should not evoke any side effects outside the class itself.
    cheers
    Jānis
    Message was edited by: Jānis B

  • Error when accessing Direct Access Infocube (SAP BW) in WEBI

    Hi all,
    I'm using SAP BW as the DataWarehouse and here I have created a Direct Access Infocube that is reading data directly from datasource in SAP ERP.
    I have built a query on top of the Infocube and I'm able to run the query and extract data when running the query through BEx Query Designer and SAP BW Portal.
    The BW system is connected to a SAP BO system and I have connected a Webi report via BICS connection to the query.
    The BO system is setup so that all BW users is replicated into SAP BO and the authorization in SAP BW is the one controlling the access to the data users are able to view in BO reports.
    When running the Webi report with a development user (SAP_ALL in BW system), the Webi report is able to extract data.
    When running the Webi report with a business user (that only have relevant roles to view data from relevant Infoproviders, among other the Direct Access Infocube), we get the following error message:
    This means that when running Webi that is loading data directly from SAP ERP, via an Direct Access Infocube in SAP BW, a normal business users with reporting/read authorization, IS NOT ABLE to access the data.
    Does anybody know what kind of authorization that is needed to get this report to work? Or does anybody have seen similar issues or errors before?
    regards
    Oddmar

    Hi,
    did you make sure the universe is done correct ?
    in terms of connecting to the cube take a look at this material and certain elements such as navigational attributes and authorization are not possible to resolve when using the cube
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/008d15dc-f76c-2b10-968a-fafe5a121129
    Ingo

  • Difference between standard dtp and direct access dtp

    Hi,
    Can anybody tell me the difference between standard DTP and Direct access DTP other than Help.sap.com.
    Regards,
    Devi

    simple words.. Standard DTP needs to use for Physical data targets loading.
    Direct Access DTP needs to use for virtual providers. you won't pull data into BI. it will directly retrive from DS while reporting .
    Nagesh Ganisetti.
    Assign points if it helps.

  • Direct Access URLs in Release 2

    What is the format for direct access URLs in release 2? I recall seeing somewhere that it had changed.
    Thanks.

    I found the documentation. It is in the help file /help/sblpath.htm.

  • ConfigMgr Clients connection over direct access.

    My test client machine is running Windows 8.1 and connecting to network through Direct Access. I am running SCCM 2012 R2 on Windows Server 2012.
    Test Machine: NYWIN8
    SCCM Server: SCCM01
    Domain: demo.local
    I would like to understand how configmgr handles clients connecting through direct access. What all functionality is available for such clients?
    On my client machine is see following errors:
    FSPSTATEMESSAGE.LOG
    Failed in WinHttpSendRequest API, ErrorCode = 0x2ee7
    [CCMHTTP] ERROR: URL=HTTP://SCCM01.demo.local/SMS_FSP/.sms_fsp, Port=80, Options=480, Code=12007, Text=ERROR_WINHTTP_NAME_NOT_RESOLVED
    POLICYAGENT.LOG
    Policy
    http://SCCM01.demo.local/SMS_MP/.sms_pol?WRC10000.SHA256:BE60C5A54E508758261E6EDAE80AB21576A214309B9E1E19EE1D5A96C4508EC4 is not available.
    DATATRANSFERSERVICE.LOG
    DTS job {E6FAADEE-F22E-4E89-92EE-C2D9C10C3056} BITS job {9C444FAB-FD3C-4A6B-B8A4-81DA159E4E45} failed to download source file
    http://SCCM01.demo.local:80/SMS_MP/.sms_pol?WRC10000.SHA256:BE60C5A54E508758261E6EDAE80AB21576A214309B9E1E19EE1D5A96C4508EC4 to destination C:\Windows\CCM\Temp\{C9AA0DDC-BD37-442D-A00E-EE7404D47C12}.tmp with error 0x80190194
    DTS job {E6FAADEE-F22E-4E89-92EE-C2D9C10C3056} BITS job {9C444FAB-FD3C-4A6B-B8A4-81DA159E4E45} partially completed 0/1 with error 0x80190194 context 5
    Software Catalog Update Endpoint
    Failed to open portal registry key 'Software\Policies\Microsoft\CCM'. maybe haven't been created yet. Error 0x80070002
    WEDMTRACE.LOG
    No CCM Identification blob
    CAS.LOG
    The number of discovered DPs(including Branch DP and Multicast) is 0
    SMSCLIUI.LOG
    Failed to set DNSSuffix value to the registry.
    Are there any issues due to connecting using direct access?

    When I try to deploy any software (7-ZIP or Notepad++) to this client I get following error:
    The software change returned error code 0x87D00607(-2016410105).
    I can deploy same software fine to other machines connecting on LAN.
    Server Logs:
    Portlctl
    PORTALWEB's previous status was 0 (0 = Online, 1 = Failed, 4 = Undefined)
    PORTALWEBs http check returned hr=0, bFailed=0
    awbsctl
    AWEBSVCs http check returned hr=0, bFailed=0
    AWEBSVC's previous status was 0 (0 = Online, 1 = Failed, 4 = Undefined)
    Client Logs:
    CAS
    The number of discovered DPs(including Branch DP and Multicast) is 0
    CCMEVAL
    Client's current MP is http://SCCM01.DEMO.local and is accessible
    ClientLocation
    Current AD forest name is Demo.local, domain name is Demo.local
    Domain joined client is in Intranet
    Rotating assigned management point, new management point [1] is: SCCM01.demo.local (7958) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>
    Assigned MP changed from <SCCM01.demo.local> to <SCCM01.demo.local>.
    ContentTransferManager
    No data since 11/13/2013
    CTM job {F6085C09-4C39-489E-A6F6-2C268398B7F2} successfully processed download completion.
    DataTransfer
    DTS job {B227AB6E-6D0F-4709-B8C6-AA8B66CBBE2D} BITS job {AE61D01C-E251-45FA-8B2C-2E22DDD91016} failed to download source file
    http://SCCM01.demo.local:80/SMS_MP/.sms_pol?WRC10000.SHA256:BE60C5A54E508758261E6EDAE80AB21576A214309B9E1E19EE1D5A96C4508EC4 to destination C:\Windows\CCM\Temp\{22619283-47B1-445A-9262-C1FA54AD0F64}.tmp with error 0x80190194
    DTS job {B227AB6E-6D0F-4709-B8C6-AA8B66CBBE2D} BITS job {AE61D01C-E251-45FA-8B2C-2E22DDD91016} partially completed 0/1 with error 0x80190194 context 5
    Filebits
    BranchCache Is Not Enabled
    Failed to check PeerDistribution status. NOT able to do branch cache.
    FSPSTATEMESSAGE
    Failed in WinHttpSendRequest API, ErrorCode = 0x2ee7
    [CCMHTTP] ERROR: URL=HTTP://SCCM01.demo.local/SMS_FSP/.sms_fsp, Port=80, Options=480, Code=12007, Text=ERROR_WINHTTP_NAME_NOT_RESOLVED
    Successfully sent location services HTTP failure message.
    InternetProxy
    Failed to get proxy for url 'HTTP://SCCM01.demo.local/SMS_FSP/.sms_fsp'. Error 0x87d00215
    InventoryAgent
    Inventory: 9 Collection Task(s) failed.
    SCCLIENT
    Event maps to notification type = Application Enforcement Failed   (Microsoft.SoftwareCenter.Client.Data.WmiConnectionManager at EventWatcher_EventArrived)
    SMSCLIUI
    Failed to set DNSSuffix value to the registry.
    IPCONFIG /ALL from CLIENT:
    Windows IP Configuration
       Host Name . . . . . . . . . . . . : NYWIN8
       Primary Dns Suffix  . . . . . . . : demo.local
       Node Type . . . . . . . . . . . . : Hybrid
       IP Routing Enabled. . . . . . . . : No
       WINS Proxy Enabled. . . . . . . . : No
       DNS Suffix Search List. . . . . . : demo.local
       System Quarantine State . . . . . : Not Restricted
    Ethernet adapter vEthernet (Internal):
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Hyper-V Virtual Ethernet Adapter #3
       Physical Address. . . . . . . . . : 00-15-5D-01-0B-07
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       Link-local IPv6 Address . . . . . : fe80::d3f:4e51:c648:7b26%26(Preferred)
       Autoconfiguration IPv4 Address. . : 169.254.123.38(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.0.0
       Default Gateway . . . . . . . . . :
       DHCPv6 IAID . . . . . . . . . . . : 872420701
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-19-EA-A9-CE-E0-DB-55-D2-5E-59
       DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
                                           fec0:0:0:ffff::2%1
                                           fec0:0:0:ffff::3%1
       NetBIOS over Tcpip. . . . . . . . : Enabled
    Ethernet adapter vEthernet (External):
       Connection-specific DNS Suffix  . : home
       Description . . . . . . . . . . . : Hyper-V Virtual Ethernet Adapter #2
       Physical Address. . . . . . . . . : 84-A6-C8-AF-03-DE
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       Link-local IPv6 Address . . . . . : fe80::9cb5:5132:1f47:e7c6%24(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.1.5(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Lease Obtained. . . . . . . . . . : Thursday, January 2, 2014 1:27:53 PM
       Lease Expires . . . . . . . . . . : Saturday, January 4, 2014 12:27:55 PM
       Default Gateway . . . . . . . . . : 192.168.1.1
       DHCP Server . . . . . . . . . . . : 192.168.1.1
       DHCPv6 IAID . . . . . . . . . . . : 730113736
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-19-EA-A9-CE-E0-DB-55-D2-5E-59
       DNS Servers . . . . . . . . . . . : 192.168.1.1
       NetBIOS over Tcpip. . . . . . . . : Enabled
    Wireless LAN adapter Local Area Connection* 3:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter
       Physical Address. . . . . . . . . : 84-A6-C8-AF-03-DF
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
    Ethernet adapter Bluetooth Network Connection:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Bluetooth Device (Personal Area Network)
       Physical Address. . . . . . . . . : 84-A6-C8-AF-03-E2
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
    Ethernet adapter Ethernet:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . : home
       Description . . . . . . . . . . . : Realtek PCIe FE Family Controller
       Physical Address. . . . . . . . . : E0-DB-55-D2-5E-59
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.home:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . : home
       Description . . . . . . . . . . . : Microsoft ISATAP Adapter
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter iphttpsinterface:
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : iphttpsinterface
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
       IPv6 Address. . . . . . . . . . . : fd64:fc00:d17b:1000:e1a7:9cc8:c3c7:d819(Preferred)
       Temporary IPv6 Address. . . . . . : fd64:fc00:d17b:1000:c598:7f17:e286:369d(Preferred)
       Link-local IPv6 Address . . . . . : fe80::e1a7:9cc8:c3c7:d819%10(Preferred)
       Default Gateway . . . . . . . . . :
       DHCPv6 IAID . . . . . . . . . . . : 369098752
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-19-EA-A9-CE-E0-DB-55-D2-5E-59
       NetBIOS over Tcpip. . . . . . . . : Disabled
    Tunnel adapter isatap.{DC7D2C63-1506-49EC-A40F-AA4E56DE4001}:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Microsoft ISATAP Adapter #3
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes

  • Direct Access on Windows Server 2012 R2 and IPV6

    I have a question about IPV6 and Direct Access in Server 2012 R2. Without using UAG is it still mandatory to have IPV6 enabled in the intranet?
    Kristopher Turner | Not the brightest bulb but by far not the dimmest bulb.

    Hi,
    DirectAccess uses IPv6 with IPsec to create a secure connection between DirectAccess client computers and the internal corporate network.
    However, DirectAccess does not necessarily require connectivity to the IPv6 Internet or native IPv6 support on internal networks. Instead, it automatically configures and uses IPv6 transition technologies to tunnel IPv6 traffic across the IPv4 Internet (6to4,
    Teredo, IP-HTTPS) and across your IPv4-only intranet (NAT64 or ISATAP).
    For detailed information, please view the link below,
    Plan the DirectAccess Infrastructure
    http://technet.microsoft.com/en-us/library/jj574101.aspx
    Hope this helps.
    Steven Lee
    TechNet Community Support

  • IBM cognos TM1 Executive viewer is not working on direct Access

    Hi,
    We are implementing DirectAccess in our environment and testing applications in test lab. It has been observed that executive viewer is not working on Direct Access but working fine over VPN mobile checkpoint. When DA client click on open view button it
    gives error
    " Additional information:
    Unable to connect to server XYZ.com using TCP-IP port 7112. Please make sure that IBM cognos TM1 executive viewer server is started and the port is not blocked by any proxy server or firewall"
    but from client telnet is working on port 7112. All ports between DA server and application server are open 3389,7112 and 80.
    Also select database option is grayed out and user is unable to select the database. When switching to VPN its working fine.
    We are using Executive viewer 9.4. 
    Any help would be appreciated.

    It sounds like this program may not be capable of talking over IPv6, which DirectAccess uses. First make sure that when you connect it is trying to talk to a hostname and not an IPv4 address. If your program is calling for "192.168.1.100" - this is never
    going to work over DirectAccess. It must call for a name that DirectAccess can resolve to an IPv6 address for communication over DA.
    If you confirm it is talking to a name, and then if you confirm that you can do other things to that same name (can you RDP into the server for example?), then that confirms that DirectAccess traffic flow is working to that name/server.
    If RDP works but the application still doesn't work, then the application is probably incapable of IPv6. You can either ask IBM if they have a newer version that does talk IPv6, otherwise I have a utility available that can intercept packets from these kinds
    of problematic applications and flip the packets into IPv6 on the DA client. Let me know if you need any further information on that: http://www.ivonetworks.com/news/2013/05/ivo-networks-announces-app46-for-directaccess/

  • Access to customizing default: report templates

    I seem to remember far back in the corners of my memory, someone here on the forum mentioning that although we didn't have access at the time (probably back at HTMLDB 2.0) to customize the default report templates, that there were plans to make this an option in a future version of Apex. Does anyone have any idea if this is something that is being planned, or better yet, available today?
    If you're not sure what I'm talking about I'm referring to the field that says 'Report Template' in the 'Layout and Pagination' section of the 'Report Attributes' page in the application builder.
    The problem I'm having is that I'm using the 'default: vertical report, look 2 (show null columns)' report template and I've got some long column headings that I want to include a line break between each word of the heading, so they're stacked vertical instead of wide horizontally. I've add HTML break tags to the headings but they're disappearing when the page is rendered.
    I've made sure to set the 'Strip HTML' setting to 'No', but whether it's set to yes or no doesn't matter, the headings display the same either way.
    BTW, doing the same thing in a template based multi-row report seems to work fine. However, trying to use/apply the 'Value Attribute Pairs' report template yields the same result as the default vertical look template.
    So I have 2 questions:
    1) anyone know how I can make these heading words stack up vertically, one word to a line?
    2) are we going to get access to customize the default report templates?
    Earl

    Hello,
    1) anyone know how I can make these heading wordsstack up vertically, one word to a line?
    Probably the best way to do this is to just hard code
    a &lt;br /&gt; between your words.That's exactly what I'm doing (and what I said in my original post), however those breaks are disappearing during page rendering when I choose the report templates I mentioned.
    I don't understand why this technique works in the multi-row report templates and not in these vertically oriented value/attribute report layouts.
    2) are we going to get access to customize thedefault report templates?
    No, you should just use a regular theme based
    template, the default report templates are there for
    backwards compatibility and well basically for people
    that don't care about the UI. Since your at the point
    it seems you do care about UI the proper thing to do
    is to move to a standard report template that you
    have full control over.Fair enough. I'll look into that, but I think there's still an open question here as to why the HTML breaks aren't being returned in the page markup for these report layouts.
    Regards,
    CarlEarl

Maybe you are looking for

  • Security Deposit Refund

    Hi, I got a paper document called "security deposit refund" and I guess, I'm getting back the amount of $411.51 for having paid on time the whole year. What do I do with this? Do I go to the bank and get the money or go to Verizon Wireless store? I'm

  • Extended withholding tax - US  Error 7Q 301 updating withholding tax

    Cannot get the system to allow me to change the withholding tax information on the accounting documents.  Extended withholding tax has been configured. The fields in the line items have been opened to allow changes to the withholding tax data, both f

  • My Macbook pro sd card reader cannot work at Lion 10.7

    When I upgrade my Macbook pro (2010) to OS X Lion 10.7, I found SD card reader cannot read SD card !How to fix it?

  • Tumblr breaks advanced font settings in Firefox, all Win and Mac versions

    tumblr.com and tumblr.com/dashboard do not support, or break, the ability to choose your own fonts in Firefox. The problem affects Firefox 12-14 on Windows OS, and may also affect Firefox for the Mac. The problem: unchecking the option "allow pages t

  • Scrolling thumbnails Muse

    I am trying to create a thumbnail banner that can scroll across the page. I've tried doing it with lightbox widgets but none of them seem to have this functionality. Any ideas anybody? thanks Jaymack