SELECT * CONNECTION not work

Hi,
It is found that SELECT * does not work with CONNECTION. For example, I use the following statement to retrieve data from another system and an error states that SQL error 207 when accessing table 'MARA'. 'Invalid column name  'ANIMAL_ORIGIN''. If columns are specified, data can then be retrieved. The SAP BASIS version is 7.31.
SELECT SINGLE *
      INTO CORRESPONDING FIELDS OF ls_mara
    FROM MARA
               CLIENT SPECIFIED
               CONNECTION ('G01')
WHERE MANDT = '100'.

Hi TS,
You gave the answer already, but look at the HELP:
To allow the Open SQL command to be run for the secondary database connection, the table definitions in the connection must be the same as those in the standard database.
Cheers,
Custodio

Similar Messages

  • Data Services- The job server you selected is not working

    Long Text:
    After logging in to the Data Services designer,when try to run a job it shows error -The job server you selected is not working
    Latest Software version -BODS 4.0 SP2
    Reproduce Steps:
    1. Double click on the Project from repository, it will display the project in Project area.
    2. After that it will display all the jobs under the project.
    3.Right click on the job and try to execute, then it will display the "Execution Properties" windows.
    Here the we can the default Job Server has been selected.
    4. Try to click ok to execute the job and then we get the error-"The job server you selected is not working"

    Hi
    Please contact your Data services administrator to check on the server why the job server is not working.
    There might be several issues like connectivity with the repository, access details , mapping in the management console etc.
    And let us know the exact issue.
    Regards
    Puneet

  • Cascading Select Lists - Not Working for me

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

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

  • Select statement not working

    hi to all,
    I am trying to write use inner joining . here is code
    DATA:tabname LIKE dd02L-tabname,
         table_disc LIKE dd02t-ddtext.
      SELECT  dd02ltabname dd02tddtext INTO (tabname,table_disc)
        FROM dd02l INNER JOIN dd02t on dd02ltabname = dd02ttabname
              WHERE dd02tddlanguage = 'E' AND dd02ltabclass = 'TRANSP'
                                AND dd02L~tabname = 'ZANKI*'.
        endselect.
          write : tabname.
    I also checked in tables dd02t and dd02l for the table zanki* and data available in both table . but here select statement not working .do u have any idea about this. thank you

    Hi,
    I executed the ur inner join conditin by commenting 'z*' it's working fine.
    I think  where condition is not getting satisfied so u r not getting any data.
    Please conform in where condition you need * 'AND'* or OR
    I change decalration as below.
    DATA:tabname    type TABNAME,
          table_disc type AS4TEXT.
    SELECT dd02l~tabname
           dd02t~ddtext  INTO (tabname, table_disc)
    FROM dd02l  INNER JOIN dd02t on dd02l~tabname = dd02t~tabname
    WHERE dd02t~ddlanguage = 'E' AND
          dd02l~tabclass = 'TRANSP'AND
        dd02L~tabname = 'ZANKI*'.
    endselect.
    write : tabname.
    Regards,
    Pravin

  • XMLP 5.6.2 - Parameters -  Both Multi-Select and All-Select  Do Not Work

    Both Multi-Select and All-Select Do Not Work.
    What's up with this behavior?
    And when might it be fixed?
    BG...

    The Multi-Select is now working, not sure what I did wrong earlier. However the "Can select all" option when building the parameter does not work as advertised, though I was able to get around that as well.
    Create a Data Model
    select LAST_NAME, FIRST_NAME from SOME_TABLE where SOME_COLUMN =:SOME_VALUE
    OR
    select LAST_NAME, FIRST_NAME from SOME_TABLE where SOME_COLUMN in (:SOME_VALUE)
    Create a LOV
    Name = LOV_SOME_COLUMN
    Type = SQL Query
    select distinct SOME_TABLE.SOME_COLUMN as SOME_COLUMN from SCHEMA.TABLE
    Create a Parameter
    Identifier = PARM_SOME_COLUMN
    Data Type = String
    Default Value = NULL
    Parameter Type = Menu
    Display Label = LOV_SOME_COLUMN
    List Of Value = LOV_SOME_COLUMN
    Option
    Multiple Selection - Checked
    Can select all - Checked
    Refresh other parameters on change - Checked
    Then test your report. Select "All" from the LOV and click view. Result - No Rows Returned.
    Selecting a "Single" or "Multiple Values" values from the LOV does work.
    The way I am getting around the problem is to uncheck the "Can select all" and then manually select all the values in the LOV in order to get the "All".
    BG...

  • I have F.F 3.6 and windows 7.: 1) When i want to buy a airplane ticket and want to select 2 adults or 2 children, the draw down select, does not work in any websides,? WHY?. 2) Have FF any problems with SKYPE

    I have F.F 3.6 and windows 7.: 1) When i want to buy a airplane ticket and want to select 2 adults or 2 children, the draw down select, does not work in any websides,? WHY?. 2) Have FF any problems with SKYPE
    == This happened ==
    Not sure how often
    == After innstalling windows 7

    As a suggestion I'd put the Text_io segments into their own begin - exception - end sub-blocks within the main code. This way if Text_io does raise an exception you can catch it earlier as it may be able to recover - That is if it is a text_io exception.
    Other than that you;ll have to step through in Debug.

  • Camera connection not working with my camera

    Camera connect not working with my Sony boggie camera

    The Bloggie will not work because it draws too much power from the USB port on the iPad.  The solution is to interpose a powered USB hub between the Bloggie and the iPad - connect the Bloggie to the powered hub, then connect the hub to the ipad accessory.  Works fine with my 3D Bloggie.

  • X-Fi Titanium PCI Express front pannel connection not working

    <font face="verdana,geneva" size="3">I can not get any signal to or from the front pannel connector of my X-Fi Titanium PCI Express. (The rear jacks are working fine.)
    <font face="verdana,geneva" size="3">The front header cable from my Antec P-80B worked perfectly with my onboard motherboard sound. Now that I have it connected to my X-Fi I get nothing from the jacks on the front of my case. (The onboard sound is disabled in my BIOS.)? I've double and tripple checked the connection and it is properly keyed and fitted. Is there a step or a setting that I'm missing somewhere to get this working? Can anyone confirm that the front pannel connection is acti've on the X-Fi Titanium PCI Express?

    Re: X-Fi Titanium PCI Express front pannel connection not working? I was truly hoping that would help and I wanted to give you some additional hope. I have a coolermaster case, and it has the AC97 jack on the inside with all my other other front panel connectors for hard dri've activity light, reset, and power on. Three inches down from the AC97 jack, the INTEL HD *which works beautifully with the X-FI, only differs by three wires in different locations and the two pinouts configurations match those of the INTEL site identically.
    Please tell me what happens as I would like to post a step by step guide for the others here in the forum. You will know when you have successfully adapted the connector because in VISTA and Windows 7, your sound applet in control panel will have a display of the connectors "lit up" when they are successfully connected. Mine shows FP microphone in the applet when its plugged in, and grayed out when its not. Its great for telling if I am connected on the rear of the soundcard of the front.
    Best of luck and .......
    Message Edited by jmacguire on 07-06-2009 :09 PM

  • SQL Developer: View menu selections Reports and Connections not working

    Downloaded latest SQL Developer May 9 updated version and my dropdown selections from the View menu for Connections, and View Reports do not work. However, Snippets does appear when selected. Hate to lose some of the User Defined reports I had created. Any help would be appreciated.

    Don't know if I get what you're saying: the entries Connections and Reports from the View menu don't work?
    On top of the connection tree, if you get one, aren't there the two tabs with these options?
    If you're unable to view the whole tree, you're installation would be corrupted. Install from scratch in a separate folder, first without migration to see if that resolves the issue. Then you could do the same with migration to retrieve all previous settings and connections.
    K.

  • Corporate connectivity not working for some users

    Hi,
    I'm having an issue that started about a month ago but is getting worse.  A select group of users are no longer able to connect using DirectAccess, even though these users have been using their computers for a few months without issue.
    BACKGROUND:
    -Windows 2008 R2 DirectAccess server
    -Windows 7 x64 enterprise clients
    -Most clients experiencing the issue have a newer laptop (Lenovo T440 with Intel 7260AC wireless), but the issue is not limited to this model. Also, I have 25+ other Lenovo T440 units that connect without issue to this day.
    TROUBLESHOOTING STEPS:
    I have tried disabling the various interfaces used for directaccess on these problem machines and have not been able to narrow it down.  Essentially- I've noticed the IP-HTTPS interface shows deactivated, so I'll disable Teredo.  This
    usually allows the IP-HTTPS to show activated, and connectivity is restored.  However, after 30 seconds to a few minutes, connectivity will once again drop.  So I'll re-enable teredo (default,client, or enterprise client) and connectivity will kick
    on for another brief period, but drops again shortly after.
    I have confirmed that during these short periods of connectivity working, the wf.msc shows connectivity using NTLM and Kerberos, but the clients just can't seem to stay connected on any interface.  
    However, in the wf.msc when the clients are not functioning, I only ever see one NTLM entry.

    LOGS:
    Below is a directaccess client log pulled from a non-functioning client before making any changes or any testing.  Feel free to ask for the rest of the log if needed-- I have put in place holders for information that may be sensitive.  Thank you!!
    RED: Corporate connectivity is not working.
    Windows is unable to relocationve corporate network names. Please contact your administrator if this problem persists.
    24/3/2015 18:21:43 (UTC)
    Probes List
    FAIL PING: location-dc.domain.local
    FAIL PING: location-file.domain.local
    DTE List
    PASS PING: 2002:'mac':5a1c::'mac':5a1c
    PASS PING: 2002:'mac':5a1d::'mac':5a1d
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>ipconfig /all
    Windows IP Configuration
    Host Name . . . . . . . . . . . . : c2075
    Primary Dns Suffix . . . . . . . : domain.local
    Node Type . . . . . . . . . . . . : Hybrid
    IP Routing Enabled. . . . . . . . : No
    WINS Proxy Enabled. . . . . . . . : No
    DNS Suffix Search List. . . . . . : domain.local
    domain2.ad
    System Quarantine State . . . . . : Not Restricted
    Wireless LAN adapter Wireless Network Connection 3:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft Virtual WiFi Miniport Adapter #2
    Physical Address. . . . . . . . . : 2A-B2-BD-'mac2'-E5
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Wireless LAN adapter Wireless Network Connection 2:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft Virtual WiFi Miniport Adapter
    Physical Address. . . . . . . . . : 2A-B2-BD-'mac2'-E6
    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. . . . . . . . . : 28-B2-BD-'mac2'-E9
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Wireless LAN adapter Wireless Network Connection:
    Connection-specific DNS Suffix . : attlocal.net
    Description . . . . . . . . . . . : Intel(R) Dual Band Wireless-AC 7260
    Physical Address. . . . . . . . . : 28-B2-BD-'mac2'-E5
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    IPv6 Address. . . . . . . . . . . : 2602:304:'mac3':d370:5a1:c77:834:86a9(Preferred)
    Temporary IPv6 Address. . . . . . : 2602:304:'mac3':d370:f9ce:db89:87ad:'mac4'(Preferred)
    Link-local IPv6 Address . . . . . : fe80::5a1:c77:834:86a9%12(Preferred)
    IPv4 Address. . . . . . . . . . . : 192.168.1.86(Preferred)
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Lease Obtained. . . . . . . . . . : Tuesday, March 24, 2015 1:48:21 PM
    Lease Expires . . . . . . . . . . : Wednesday, March 25, 2015 1:48:21 PM
    Default Gateway . . . . . . . . . : fe80::21b:5bff:febf:4f21%12
    192.168.1.254
    DHCP Server . . . . . . . . . . . : 192.168.1.254
    DNS Servers . . . . . . . . . . . : 192.168.1.254
    NetBIOS over Tcpip. . . . . . . . : Enabled
    Ethernet adapter Local Area Connection:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . : domain.local
    Description . . . . . . . . . . . : Intel(R) Ethernet Connection I218-LM
    Physical Address. . . . . . . . . : 28-D2-44-C5-24-59
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.attlocal.net:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . : attlocal.net
    Description . . . . . . . . . . . : Microsoft ISATAP Adapter
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter iphttpsinterface:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : iphttpsinterface
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter 6TO4 Adapter:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft 6to4 Adapter
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.{FD31098B-E475-49A1-9AFA-8C43FF928F97}:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft ISATAP Adapter #2
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.domain.local:
    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
    Tunnel adapter Teredo Tunneling Pseudo-Interface:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    IPv6 Address. . . . . . . . . . . : 2001:0:'mac':5a1c:342d:25dd:b4e1:12c8(Preferred)
    Link-local IPv6 Address . . . . . : fe80::342d:25dd:b4e1:12c8%18(Preferred)
    Default Gateway . . . . . . . . . :
    NetBIOS over Tcpip. . . . . . . . : Disabled
    Tunnel adapter isatap.{E1BE09BA-B38B-4F87-8893-E3D32A88EDFC}:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft ISATAP Adapter #4
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.{0C04B587-7861-4D8D-9DA9-6326AB71D701}:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft ISATAP Adapter #5
    Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh int teredo show state
    Teredo Parameters
    Type : client
    Server Name : 204.16.90.28 (Group Policy)
    Client Refresh Interval : 30 seconds
    Client Port : unspecified
    State : qualified
    Client Type : teredo host-specific relay
    Network : unmanaged
    NAT : restricted
    NAT Special Behaviour : UPNP: No, PortPreserving: Yes
    Local Mapping : 192.168.1.86:55842
    External NAT Mapping : 75.30.237.55:55842
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh int httpstunnel show interfaces
    Interface IPHTTPSInterface (Group Policy) Parameters
    Role : client
    URL : https://uag.webdomain.com:443/IPHTTPS
    Last Error Code : 0x0
    Interface Status : IPHTTPS interface deactivated
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh dns show state
    Name Relocationution Policy Table Options
    Query Failure Behavior : Always fall back to LLMNR and NetBIOS
    if the name does not exist in DNS or
    if the DNS servers are unreachable
    when on a private network
    Query Relocationution Behavior : Relocationve only IPv6 addresses for names
    Network Location Behavior : Let Network ID determine when Direct
    Access settings are to be used
    Machine Location : Outside corporate network
    Direct Access Settings : Configured and Enabled
    DNSSEC Settings : Not Configured
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh name show policy
    DNS Name Relocationution Policy Table Settings
    (ENTRIES OMITTED TO SAVE SPACE)
    Settings for .domain.local
    Certification authority : DC=local, DC=domain, CN=HDT CA
    DNSSEC (Validation) : disabled
    DNSSEC (IPsec) : disabled
    DirectAccess (DNS Servers) : 2002:'mac':5a1d::'mac':5a1d
    DirectAccess (IPsec) : disabled
    DirectAccess (Proxy Settings) : Bypass proxy
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh name show effective
    DNS Effective Name Relocationution Policy Table Settings
    (ENTRIES OMITTED TO SAVE SPACE)
    Settings for .domain.local
    Certification authority : DC=local, DC=domain, CN=HDT CA
    DNSSEC (Validation) : disabled
    IPsec settings : disabled
    DirectAccess (DNS Servers) : 2002:'mac':5a1d::'mac':5a1d
    DirectAccess (Proxy Settings) : Bypass proxy
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh int ipv6 show int level=verbose
    Interface Loopback Pseudo-Interface 1 Parameters
    IfLuid : loopback_0
    IfIndex : 1
    State : connected
    Metric : 50
    Link MTU : 4294967295 bytes
    Reachable Time : 40000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : disabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Wireless Network Connection Parameters
    IfLuid : wireless_0
    IfIndex : 12
    State : connected
    Metric : 25
    Link MTU : 1472 bytes
    Reachable Time : 1101000 ms
    Base Reachable Time : 1805000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 64
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface isatap.attlocal.net Parameters
    IfLuid : tunnel_4
    IfIndex : 22
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 27500 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Wireless Network Connection 2 Parameters
    IfLuid : wireless_5
    IfIndex : 15
    State : disconnected
    Metric : 5
    Link MTU : 1500 bytes
    Reachable Time : 24000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface iphttpsinterface Parameters
    IfLuid : tunnel_5
    IfIndex : 17
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 31500 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : enabled
    Other Stateful Configuration : enabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Local Area Connection Parameters
    IfLuid : ethernet_6
    IfIndex : 11
    State : disconnected
    Metric : 5
    Link MTU : 1500 bytes
    Reachable Time : 31500 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface 6TO4 Adapter Parameters
    IfLuid : tunnel_6
    IfIndex : 19
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 39500 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : disabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface isatap.{FD31098B-E475-49A1-9AFA-8C43FF928F97} Parameters
    IfLuid : tunnel_7
    IfIndex : 21
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 33000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface isatap.domain.local Parameters
    IfLuid : tunnel_8
    IfIndex : 39
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 36000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Bluetooth Network Connection Parameters
    IfLuid : ethernet_9
    IfIndex : 14
    State : disconnected
    Metric : 50
    Link MTU : 1500 bytes
    Reachable Time : 17000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Wireless Network Connection 3 Parameters
    IfLuid : wireless_9
    IfIndex : 16
    State : disconnected
    Metric : 5
    Link MTU : 1500 bytes
    Reachable Time : 17000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 1
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface Teredo Tunneling Pseudo-Interface Parameters
    IfLuid : tunnel_9
    IfIndex : 18
    State : connected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 14500 ms
    Base Reachable Time : 15000 ms
    Retransmission Interval : 2000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : enabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : enabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface isatap.{E1BE09BA-B38B-4F87-8893-E3D32A88EDFC} Parameters
    IfLuid : tunnel_10
    IfIndex : 20
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 41000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    Interface isatap.{0C04B587-7861-4D8D-9DA9-6326AB71D701} Parameters
    IfLuid : tunnel_11
    IfIndex : 23
    State : disconnected
    Metric : 50
    Link MTU : 1280 bytes
    Reachable Time : 40000 ms
    Base Reachable Time : 30000 ms
    Retransmission Interval : 1000 ms
    DAD Transmits : 0
    Site Prefix Length : 64
    Site Id : 1
    Forwarding : disabled
    Advertising : disabled
    Neighbor Discovery : enabled
    Neighbor Unreachability Detection : disabled
    Router Discovery : enabled
    Managed Address Configuration : disabled
    Other Stateful Configuration : disabled
    Weak Host Sends : enabled
    Weak Host Receives : disabled
    Use Automatic Metric : enabled
    Ignore Default Routes : disabled
    Advertised Router Lifetime : 1800 seconds
    Advertise Default Route : disabled
    Current Hop Limit : 0
    Force ARPND Wake up patterns : disabled
    Directed MAC Wake up patterns : disabled
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh advf show currentprofile
    Private Profile Settings:
    State ON
    Firewall Policy BlockInbound,AllowOutbound
    LocalFirewallRules N/A (GPO-store only)
    LocalConSecRules N/A (GPO-store only)
    InboundUserNotification Enable
    RemoteManagement Disable
    UnicastResponseToMulticast Enable
    Logging:
    LogAllowedConnections Disable
    LogDroppedConnections Disable
    FileName %systemroot%\system32\LogFiles\Firewall\pfirewall.log
    MaxFileSize 4096
    Ok.
    C:\WINDOWS\system32\LogSpace\{05471C14-7140-4651-84C2-230EC7D70628}>netsh advfirewall monitor show consec
    Global Settings:
    IPsec:
    StrongCRLCheck 0:Disabled
    SAIdleTimeMin 5min
    DefaultExemptions ICMP
    IPsecThroughNAT Never
    AuthzUserGrp None
    AuthzComputerGrp None
    StatefulFTP Enable
    StatefulPPTP Enable
    Main Mode:
    KeyLifetime 60min,0sess
    SecMethods DHGroup2-AES128-SHA256,DHGroup2-AES128-SHA1,DHGroup2-3DES-SHA1
    ForceDH No
    Categories:
    BootTimeRuleCategory Windows Firewall
    FirewallRuleCategory Windows Firewall
    StealthRuleCategory Windows Firewall
    ConSecRuleRuleCategory Windows Firewall
    Quick Mode:
    QuickModeSecMethods ESP:SHA1-None+60min+100000kb,ESP:SHA1-AES128+60min+100000kb,ESP:SHA1-3DES+60min+100000kb,AH:SHA1+60min+100000kb
    QuickModePFS None
    Security Associations:
    Main Mode SA at 03/24/2015 14:21:44
    Local IP Address: 2602:304:'mac3':d370:f9ce:db89:87ad:'mac4'
    Remote IP Address: 2002:'mac':5a1d::'mac':5a1d
    Auth1: ComputerCert
    Auth2: UserNTLM
    MM Offer: None-AES128-SHA256
    Cookie Pair: 9398e38420480425:51071d5bae9eb503
    Health Cert: No
    Quick Mode SA at 03/24/2015 14:21:44
    Local IP Address: 2602:304:'mac3':d370:f9ce:db89:87ad:'mac4'
    Remote IP Address: 2002:'mac':5a1d::'mac':5a1d
    Local Port: Any
    Remote Port: Any
    Protocol: Any
    Direction: Both
    QM Offer: ESP:SHA1-AES192+60min+100000kb
    PFS: None
    Thanks again,

  • Remote desktop connection not working in windows 7 Pro x64 bit sp1 3389 port not working

    i have still facing same problem in last two week in my  system RDC not working . i have installed in my system windows 7 x64 bit Pro sp1 then i check 3389 port working or not  in my system use the command netstat -a -o command in
    command prompt but this is  my bad luck  its not woking in my machine after i have decide to change RDC listening port via registry  i have change it 3389 to 3391 after restart my system,  and
    after again testing using same command but no any change again rdc not listening . After i have  search this issue on search engine google bing and microsoft , i have found more solutions  but i have try one
    uninstalled two microsoft updates first is kb  KB2621440 second is KB2667402 and after again restart my system and again installed KB 2667402 But not change i have already enabled Remote Desktop connection in windows 7 and select the option
    any version computer running , i have try  three and four time enable  disable remote desktop connection in my machine . but not change i have all windows firewall disable and uninstalled anti virus they intalled in my machine , and using the Mcafee
    stinger tools to scan my machine to remove virus but stinger is not found any thread in system.  ihave already run this command in my system sfc /scannow  Please Can you help me to fix  this issue.

    Hi,
    When you try to start the Remote Destop Connection, what errors it showed out?
    Could the other PCs connect this PC with the RDC?
    So you have read this blog?
    RDP connections might fail due to a problem with KB2621440 - MS12-020
    Did you reinstalled the KB2621440?
    Besides, did you follow this guide to enable the RDC connection?
    Connect to another computer using Remote Desktop Connection
    And also this guide?
    Why can’t I connect using Remote Desktop Connection?
    Please take a check with those settings again.
    Best regards
    Michael Shao
    TechNet Community Support

  • IDVD 08 - problem with scene selection tabs not working after "burn"

    I have a movie that is about an hour long (made in iMovie08 using mostly still photos). I wanted to have "chapters" -- but with that option gone, I used the Scene Selection option in iDVD08. This created menus with 15 scene selection buttons (I chose every 4 minutes). The menus were automatically created by iDVD and I did nothing to change them, except to type in scene info (two-three words).
    The buttons all worked fine on the computer, and I burned a DVD. The DVD worked great in my VCR player. I'd select Play Movie and it would go. I'd select Scene Selection and I'd get the menus for that. But when I'd highlight one of the scene selections and "enter" (select) -- it wouldn't go to that scene. I could go back and forth between menus, and could move around and highlight the scene buttons, but selecting would not start the scene to play. The movie played fine from start to finish, and the other remote features worked (stop, pause, menu, etc.).
    I went back to iDVD and chose a different theme (thinking maybe I'd inadvertently done something to mess things up. The only thing I did differently in addition to the new theme, was to add two small movie clips - and I rearranged the buttons on the menu (dragging) to get them positioned where I wanted them. So my first menu says "Play Movie". The second menu has: Play Movie, Scene Selections, Little Movie 1, Little Movie 2. Everything worked greated in iDVD. Then I created a disk image to view using DVD Player (rather than waste another DVD). Same problem -- only worse. This time I couldn't even highlight Scene Selection to get to the scenes' menus.
    Any thoughts on why I'm not able to get the "Scene Selection" buttons to work after a burn? Am I missing a step somewhere in iDVD?
    Thanks.

    I am not sure, but does your post concerning the problem, that all Remote Control function will work properly within iDVD'08 but after burning the DVD absolutely not with the RC of your set top DVD player connected to your TV?
    If this is it:
    Meanwhile I could figure out - after many nights of not been very productive and only working out on all the iDVD'08 problems - that **ALL** of the *7.0 Themes* have a major problem in generally.
    The following points are concerning iDVD'08 using any of the 7.0 Themes:
    - Complete deep freeze of your Mac under Leopard when rendering/coding/burning a movie which has chapters and you use movies instead of still images in drop zones. (LeopardiDVD087.0Themes)
    - Functions on remote control of your set top DVD player are not working correctly when making a movie with chapters. This is generally on Tiger and Leopard the same problem using iDVD08 with any of the 7.0 Themes.
    Quick and dirty workaround:
    You may avoid this if you simply use a 6.0 Theme or lower version of the Themes.
    But this is of course not the clue...
    It is VERY DISAPPOINTING, having software at such a low quality level deliverd by Apple. And somehow it looks like they DO NOTHING against it. No statement, no excuse, they really remain silent.
    This may also be a thread you could be interested in:
    http://discussions.apple.com/thread.jspa?threadID=1203323
    Cheers,
    Roland

  • [SOLVED]ping and incoming connections not working

    Problem: eg.
    $ ping google.com
    PING google.com (209.85.148.99) 56(84) bytes of data.
    no answer so i press ctrl+c, i get:
    ^C
    --- google.com ping statistics ---
    56 packets transmitted, 0 received, 100% packet loss, time 54999ms
    i can't use any torrent client because it accepts connections only then i start client(tested with deluge and transmission). eg. i start deluge->torrent start upload->later it won't start upload, but it sends to server info, server get that info(i tested in situation there i'm the only seeder and there is only one leecher which is under my control)
    thoughts about that: i searched for solution for a long time, i very doubt that is a software issue, i think it's hardware problem(and about hardware i know nothing). why i think so:
    possible cause of problem:
    1. kernel upgrade to 3.0=with ubuntu live cd same problems, so it can't be it
    2. i deleted windows xp, windows writes something to network card or bios?
    3. hardware problem
    before problems started i not did something big, so problem could cause only these 3 items.
    i don't have firewall, there was one but for testing purposes i deleted it.
    network card Realtek RTL-8169 Gigabit Ethernet, driver is latest(but tested and older version)
    i tested with 2 different ISP's. one connected over lan and another just my phone connected as modem over usb cable. in both cases ping not work and all other network services works ok, i can browse, ftp works, i can download torrent(if torrent download starts with program start, not later), skype works, internet radio works, etc.
    question: what to do, to make torrents work as they worked earlier? i have this problem about few weaks, in past 3 years i don't have such problems.
    Last edited by gymka (2011-08-29 14:04:29)

    I(i mean browser) can reach everything and everythere, but "ping" can't reach sites. Tried ping sites in my country, same result. i get answer from ping only then i ping these sites:
    127.0.0.1
    and
    84.55.46.19(my ISP site for clients)
    i can't even ping 192.168.0.1(it's router, so how can i browse if i can't reach router?)
    and i can't ping 84.55.46.27(it's my ISP site for public)
    # tcptraceroute archlinux.org
    Selected device eth0, address 192.168.15.10, port 42318 for outgoing packets
    Tracing the path to archlinux.org (66.211.214.131) on TCP port 80 (http), 30 hops max
    1 192.168.15.1 0.940 ms 0.596 ms 0.553 ms
    2 84.55.40.129.ip.greitas.lt (84.55.40.129) 3.047 ms 2.047 ms 2.649 ms
    3 10.10.20.20 5.741 ms 5.935 ms 5.010 ms
    4 * * *
    ^C
    Same problems with different ISP so it's not my ISP problem.
    Another thing:
    # netstat -lnp|grep deluge
    unix 2 [ ACC ] STREAM LISTENING 344527 1560/python2 /home/gymka/.config/deluge/ipc/deluge-gtk
    as i understand 344527 is port on which app listens, but in application shows that it listens on 51128, then i configured to use only 51128 and restarted deluge
    # netstat -lnp|grep deluge
    unix 2 [ ACC ] STREAM LISTENING 522255 1641/python2 /home/gymka/.config/deluge/ipc/deluge-gtk[/deluge]
    transmission atleast shows that port 57781(don't know if it listen it)
    # netstat -lnp|grep transmission
    tcp 0 0 0.0.0.0:57781 0.0.0.0:* LISTEN 1833/transmission-g
    tcp 0 0 :::57781 :::* LISTEN 1833/transmission-g
    udp 0 0 239.192.152.143:6771 0.0.0.0:* 1833/transmission-g
    udp 0 0 0.0.0.0:57781 0.0.0.0:* 1833/transmission-g
    unix 2 [ ACC ] STREAM LISTENING 709406 1833/transmission-g /tmp/at-spi2/socket-1833-1804289383
    Last edited by gymka (2011-08-28 06:20:12)

  • SAP NetWeaver BW Connection not working for SBOP4.0

    Hello Experts,
    Following are the steps & current patches:
    SBOP 4.0
    Dashboard Design , version: 6.0.0.0
    SAP Logon
    Release : 720
    Patch: 5
    1. SAP BW  & NetWeaver Portal are not SSO(Single Sign-on)
    2. I open the Dashboard Designer
    3. Click on "Manage Connection"
    4. Select 'SAP NetWeaver BW Connection'
    5. It pops-up the Log-on screen
    6. Pass on the required information
    7. Use the  query browser & selected the query
    8. it takes the query with no error message
    Issue:
    1. It is not showing the Input values & Output values 
    Not able to display the BW Bex Query element using Dashboard Designer - SAP NetWeaver BW Connection.
    Please let me know if we are missing any config. or step.
    Thanks
    Mahendra

    Thanks Amit for your suggestions. I tried the below steps & still it is not working:
    1. re-installed Adobe version 10.1
    2. Tried to connect the BW Bex query using SAP NetWeaver BW connection.
    3. I am getting no error but Dashboard designer is not able to display the Input values & Output values of the BW BEx query
    As I had mentioned you earlier that when I open the Bex report using the designer using the IE, it calls the portal window & I have to enter the LDAP password then the report opens in the portal.
    So I think as our BW & portal are not configured as SSO so when the Dashboard designer tried to load the query from the xml file it fails. It may be because it required my LDAP login credentials.
    Please let me know your suggestions.
    Thanks
    Mahendra

  • Excite PRO 3G connection not work after Android v4.3 update

    Hello,
    I live in Italy and on last Sunday (january 26th) my Excite PRO tablet (model AT10LE-A-10H) got the Android version 4.3.201121220.35.
    After restart my wifi works fine, all other app work fine, but my 3g connection doesn't work, mobile network bar is empty and it says "no service".
    My sim card is ok. I used this sim card before the system update and I didn't get any problem with Android 4.2.2.
    Please help me.
    Thank you

    >After restart my wifi works fine, all other app work fine, but my 3g connection doesn't work, mobile network bar is empty and it says "no service".
    Go to the mobile network settings and search again for the 3G network.
    I had similar problem with my Android Smartphone and my o2 provider
    I started new search, then I chosen the O2 again and then I could solve the problem.
    In case this does not work for you, recommend you to reset the tablet back to default (factory settings)

Maybe you are looking for