Supporting details are not accessible from SmartView client

Hi All,
For one of our users Supporting detail functionality is not available using SmartView client. While clicking on Supporting detail option in excel, the bar is showing hour glass but never displaying the supporting detail window. We reinstalled the client but with no success. We are not sure what is causing this issue. Kindly share your thoughts around the possible causes.
P.S - We asked the user to go to planning web for the time being.
Thanks,
Praveen

What versions of software are you on? Smartview / Excel etc
If other users are fine and share common software versions, then this would point to something on the client machine....have a try of disabling all add-ins except Smart View to see if anything is conflicting?
I assume the behaviour is the same whether trying to interact with already existing supporting details or creating own?
JB

Similar Messages

  • My bookmarks used to appear in dropdown menu from the address bar on my iMac G5. I switched to Mac Notebook & from Leopard to Lion. Now my bookmarks are not accessible from the address bar anymore (the line where you type in the website address)

    '''My bookmarks used to appear in dropdown menu from the address bar on my iMac G5. I switched to Mac Notebook & from Leopard to Lion. Now my bookmarks are not accessible from the address bar anymore (the line where you type in the website address)'''

    There appears to be a problem with Firefox 20 with UNC paths when using roaming profiles on a server.
    *[[/questions/955140]] why is the 20.0 address bar unresponsive?
    This is currently investigated and tracked via this bug report.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=857672 bug 857672] - Address Bar not working (roaming profiles;UNC path support OS.File)
    <i>(please do not comment in bug reports: [https://bugzilla.mozilla.org/page.cgi?id=etiquette.html])</i>

  • Service details are not copying from contract to Maint.Order

    Dear Experts,
    I was doing a service contract cycle, with the following steps.
    1. Created a Service contract, in T. Code ME31K.
    2. Given all the details in the Header data of the Contract.
    3. Mentioned the, Item category as D (Service), Account Assignment as F (Order), short text, Target Quantity, Material group, Plant and Storage Location in the Item Overview screen.
    4. Given the Service Number and Quantity, Gross Price, Cost Center and GL Account.
    5. Saved the Contract.
    6. After released the Contract in T. Code ME35K.
    7. Then created a Maintenance Order through T. Code IW31.
    8. In the Operation Overview screen of the Maintenance Order, the control key is given as PM03 and clicked on External button of the Maintenance Order.
    9. In the External Processing Operation screen the Contract Number and line Item is mentioned in the Agreement Field.
    10. System given a message Data copied from contract.
    11. All the data copied excepting the Service details of the Contract.
    Here the Service Number and its details which were mentioned in the Service specifications of the Contract are not getting copied from the Contract.
    What could be the reason for that? Did I perform the transaction properly?
    I have searched the forum earlier for the same but could not get any required information.
    Can any one help me out on this??
    Thanks and Regards,
    Praveen
    Edited by: b praveen savan on Jan 31, 2008 2:33 PM

    Select the services from the service selection button, then click on current spec, all the services which are under contract will be displayed. select your required services or copy all services.(Click on adopt services)

  • Manage out clients are not accessible from intranet

    Hi!
    DA 2012 R2 works in NLB cluster in DMZ zone. I can access internet clients from DA servers (ping, RDP), but not from intranet management workstations (W7). Those workstations have ISATAP IPv6 addresses (from DA server(s)).
    What can be wrong here, how to troubleshoot?
    Thanks,
    UV

    Hi!
    Again, briefly:
    DA clients are out and configured for remote (manage out) management;
    DA clients out there are registering their IPv6 addresses in DNS;
    HTTPSTunnel is the only way to connect, DA server is in DMZ zone, no straight connection to internet from DA server.
    Intranet management workstations have ISATAP address from DA server;
    Intranet management workstations can resolove DA clients IPv6 updated addresses;
    In clients outside users are logged on and need help over remote assistance;
    Remote assistance is enabled on DA clients (and it can be offered from DA server);
    Intranet management workstations no not belong to management servers group.
    Intranet management workstations cannot connect to DA clients out there to offer remote assistance!
    Why can it happen?
    UV

  • Why are protected fields not-accessible from sub-classed inner class?

    I ran across a situation at work where we have to sub-class an inner class from a third-party package. So, it looks something like this...
    package SomePackage;
    public class Outer {
       protected int x;
       public class Inner {
    package OtherPackage;
    public class NewOuter extends Outer {
       public class NewInner extends Outer.Inner {
    }Now the NewInner class needs to access protected variables in the Outer class, just like the Inner class does. But because NewOut/NewInner are in a different package I get the following error message.
    Variable x in class SomePackage.Outer not accessible from inner class NewOuter. NewInner.You can still access those protected variables from the NewOuter class though. So, I can write accessor methods in NewOuter for NewInner to use, but I am wondering why this is. I know that if NewOuter/NewInner are in the same package as Outer/Inner then everything works fine, but does not when they are in different packages.
    I have to use JDK1.1.8 for the project so I don't know if there would be a difference in JDK1.2+, but I would think that nothing has changed. Anyway, if you know why Java disallows access as I have detailed please let me know.

    Although I don't have the 1.1.8 JDK installed on my system, I was able to compile the following code with the 1.3.1_01 JDK and run it within a Java 1.1.4 environment (the JVM in the MSIE 5.5 browser). As long as you don't access any of the APIs that were introduced with 1.2+ or later, the classes generated by the JDK 1.2+ javac are compatible with the 1.1.4+ JVM.
    //// D:\testing\SomePackage\Outer.java ////package SomePackage ;
    public class Outer {
        protected int x ;
        public Outer(int xx) {
            x = xx ;
        public class Inner {
    }//// D:\testing\OtherPackage\NewOuter.java ////package OtherPackage;
    import SomePackage.* ;
    public class NewOuter extends Outer {
        public NewOuter(int xx) {
            super(xx) ;
        public class NewInner extends Outer.Inner {
            public int getIt() {
                return x ;
    }//// D:\testings\Test.java ////import OtherPackage.* ;
    import java.awt.* ;
    import java.applet.* ;
    public class Test extends Applet {
        public void init () {
            initComponents ();
        private void initComponents() {
            add(new Label("x = ")) ;
            int myx = new NewOuter(3288).new NewInner().getIt() ;
            TextField xfld = new TextField() ;
            xfld.setEditable(false) ;
            xfld.setText(Integer.toString(myx)) ;
            add(xfld) ;
    }//// d:\testing\build.cmd ////set classpath=.;D:\testing
    cd \testing\SomePackage
    javac Outer.java
    cd ..\OtherPackage
    javac NewOuter.java
    cd ..
    javac Test.java//// d:\testing\Test.html ////<HTML><HEAD></HEAD><BODY>
    <APPLET CODE="Test.class" CODEBASE="." WIDTH=200 HEIGHT=100></APPLET>
    </BODY></HTML>

  • Partner details are not getting captured to the purchase order from the ven

    Hi,
    Issue : ( ECC PO)
    Partner details are not getting captured to the purchase order from the vendor master.
    We found that the partners are not getting captured in ECC PO's automatically from the vendor master. We checked for all the config and everything seems to be o.k, but could not figure it out.
    Any suggestions are highly appreciated.
    Regards
    Sudhakar

    Hey Sudhakar,
    I believe what is happening here is that the ECC PO document type has not been assigned to the partner determination procedure.
    If this is working properly for standard POs, then,
    Go to Partner detrmination under Purchasing>  Partner Settings in Purchasing Documents> Assign Partner Schemas to Document Types.
    and enter teh appropriate document type and refer it to the procedure you have for NB Pos

  • Subversion error -- server and project are not accessible

    I just updated to CS4 for the only reason to be able to use
    SVN within the program. I used to use versions, but thought that
    not having to switch would be nice.
    Whatever I tried, I'm getting the error "server and project
    are not accessible." Remember, log in with Versions works smooth as
    pie.
    I created a new folder to download a new copy from the
    repository, uninstalled all previous subversion clients and
    reinstalled CS4, only to still get this error!
    What to do? Why is Adobe making this so hard without proper
    support?

    rosiewrose wrote:
    > Why is there no live chat or other support that would
    help me resolve this??
    This is a user-to-user forum. Adobe provides two free
    technical support
    incidents for standalone products. Details here:
    http://www.adobe.com/support/programs/customer/gss.html
    > Where can I get my money back, I really don't have time
    for things like this.
    Contact Adobe customer support.
    David Powers
    Adobe Community Expert, Dreamweaver
    http://foundationphp.com

  • Old photos are not accessible in Messages in iOS 8

    I upgraded my iPhone 5 to iOS 8 and the problem that I have is that the old photos received via iMessage are not accessible anymore. It just shows them as "?" in the Messages. Also in the "Details" view of the Messages they just appear as blank icons. I should clarify that the issue that I am facing is different from the one explained in:Messages Photos Not Showing: iOS 8 on iPhone 6. I do not have any problems with new messages/photos. The problem is with most (not all) of old Photos received in Messages.
    Also, I recently purchased an iPhone 6 which I used iCloud backup to transfer data from my old iPhone 5, and I have the same problem with the new iPhone as well.
    I'd appreciate if anyone could help me with this problem.

    There is nothing wrong, at least the way that I understand it. When the camera roll reappeared in iOS 8.1, the photos that were in the camera roll were returned to your device again. Those were the photos that were there before you uodated to iOS 8. Users that have opted to particiapet in the iCloud Photo Library Beta do not have the camera roll.
    IF you delete a photo from the camera roll and the photo exists in another album that you created on the iPad, then the photos will be deleted in those albums as well since the photos never existed in those albums to begin with. Those albums only contained pointers to the original photos which made them appear in the albums that you created in the photos app.

  • The selected remote nodes 'node3' are not accessible

    Hello,
    I removed node3 from 2 node RAC Cluster.
    After this I have re-add this node to my RAC. I added without any problem to CRS but I have a problem with script addNode.sh (/u01/app/oracle/product/crs/oui/bin).
    I have to separate homes for ORACLE_HOME and ASM_HOME, so I need to run this script twice for each ORACLE_HOME.
    I run addNode.sh from one of the cluster nodes (node1), if I run:
    export ORACLE_HOME=/u01/app/oracle/product/11.1.0/asm
    cd $ORACLE_HOME/oui/bin
    ./addNode.sh -silent CLUSTER_NEW_NODES={node3} CLUSTER_NEW_PRIVATE_NODE_NAMES={node3-priv} CLUSTER_NEW_VIRTUAL_HOSTNAMES={node3-vip}
    I got the following error:
    Performing tests to see whether nodes node2,node3 are available
    ............................................................SEVERE:The selected remote nodes 'node3' are not accessible.
    ... 100% Done.
    I reviewed logs located in /u01/app/oraInventory/logs I found
    Status of node 'node3':
    null
    The virtual host name 'node3-vip' for node 'node3' is already in use.
    I checked crs_stat from $ORA_CRS_HOME, but all applications (ons, gsd, vip) and targets are ONLINE. I tried to run vipca -nodelist node1,node2,node3 and updated a configuration. I checked /etc/hosts, connection via SSH between all hosts belonging to RAC: node1, node1-vip, node1-priv etc. Everything looks like fine, so I have no idea what caused this problem.
    Software which I used:
    Linux: UNL 5.4 x86_64
    11g Release 11.1.0.7.0 - 64bit, Oracle Clusterware
    Thank you for your answer,
    Best Regards,
    Edited by: user4924714 on 2010-02-15 07:50

    Hi,
    Thanks for your reply.
    I am running addNode.sh from node which already exist in the Rac Cluster. I tried on node1, node2 but the resulat are the same.
    Best regards,

  • My Macbook Air does not show up on my network to any of my other computers, Other computers on my network appear and disappear, some shared folders are not accessible

    My Macbook Air with Lion does not show up on my network to any of my other computers (PC's) , even though it is connected to my wifi and does access the Internet. In addition, my other computers sometimes show up in Finder and sometimes they're not there. Sometimes they do show in Finder and when I click on them, I get "Connection Failed", other times, they connect. Also some shared folders on those other computers, which are PC's are not accessible, even though fully shared. My network is Apple Airport Extreme and works perfectly otherwise, including all PC's being able to see each other. Help would be much appreciated

    I got the same problem. I want to access my shared folder on my home windows7 from my MBA. Tried many suggestions on the web but all to no avail. I thought that should be very trivial. Maybe a Lion bug?

  • Itunes was reinstalled on my MacAir and in the process my playlists disapeared. How can I sync theses playlists which are still on my Ipod back to the iTunes library? PS: these are not purchased from iTunes, they are my own cd's.Thanks.

    Itunes was reinstalled on my MacAir and in the process my playlists disapeared. How can I sync theses playlists which are still on my Ipod back to the iTunes library? PS: these are not purchased from iTunes, they are my own cd's.Thanks.

    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • Service Account details are not going through header(OSB Business service)

    Hi
    I have an issue with service account. Assume I have a proxy service A, Business Service B, Proxy service C.
    A invokes B and B invokes C (A --> B --> C). All calls are through http protocol.
    I created a service account with userid and password details and attached it to the Business service B(Static for basic authentication).
    Added log activity in proxy service C for context variable $header to verify whether userid and password are coming through request header or not.
    I executed proxy service A from sbconsole but I couldn't see userid and password details of created service account in the logs. Only nemespace are logged in the file.
    <soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"></soap:Header>>
    Can someone please help me why service account details are not going through business service request. Am I missing any steps?
    Thanks in advance
    KK
    Edited by: 966531 on Oct 23, 2012 4:23 AM

    Basic authentication information is stored under transport headers (check $inbound) whereas $header is populated for message headers (for e.g. - SOAP headers), so you should be checking $inbound instead of $header
    Regards,
    Anuj

  • Excise Details are not maintanied for Vendor,  Message no. 8I565;

    Hi Gurus,
    We have up-graded system from 4.7 to ECC 6.0, Now encountering following error while capturing Excise at MIGO.
    Excise Details are not maintanied for Vendor 0000202040. Message no. 8I565;
    Kindly suggest a solution for the above error.
    Best regards
    Naveen D'Souza

    Hello ,
    Excise Details are not maintanied for Vendor 0000202040. Message no. 8I565
    The above given error is common while MIGO while capture of excise invoice. The above written guys are correct, please check J1ID for that Vendor,
    1) if after maintening also , suppose you get the above error while MIGO, then select "Only Part1" option in MIGO , and press Check Button, if error goes,
    then again go back and select "Capture excise invoice", then system will not give you the above error while Capture of excise invoice in MIGO.
    Please check some SAPOSS notes also.
    Regards
    Mahesh Naik.

  • Excise Values are not flowing from J1IJ to VF01

    Hi All,
    I am facing the problem in Invoice to Customer(from Depot). Excise Values are not flowing from J1IJ. I maintained Alt Cal type as 356 in Pricing procedure for Excise condition types. Even though its not flowing. I am using Tax Procedure TAXINN.
    I have gone through SDN, everybody is suggesting about 356 routine.
    My scenario is STO from Plant to Depot and Sale from Depot to Customer.
    ME21N->VL10B->VF01(Proforma)->J1IIN->MIGO->VA01(from Depot)->VL01N->J1IJ(Depot Excise)->VF01(Invoice to Customer)
    In J1IJ, excise values are coming but in VF01 it is not coming.
    Kindly help me.
    With Regards
    Azeez.Mohd

    Hi,
    in j1ig initial screen which excise group/series group i need to enter
    is it of supplying plant or depot --- Enter Your Excise group
    If i enter material document no say 5000000265 (corresponds to migo-101 at depot )& year
    it'm getting error message excise invoice already exists for5000000265 --> Check the Year of material document
    You can also use the Excise Invoice Details tab
    Enter Vendor's Ex.Inv.No. , enter your STO's Excise Invoice No. and Click on Own factory and enter factory's Series Group in n case of STO from factory,
    use Depot Excise Invoice in case of transfer from another depot
    and Excise Inv. Date
    On next screen,
    In case of non availability of Internal Excise No., select the line item and click on button. On next screen, enter Excise Inv. No., Date, Challan Qty, Excise Base value, ensure that Excise Duty rates are maintained in respective duty rates column, you can also manually enter the excise duty amount and press Enter . System will give warning messages, press Enter for each message and press Back button. System will display the excise duty amount, check the same and click on Save button.
    Hope this will resolve your issue.
    Regards,
    Krishna O

  • HT201272 The last 2 songs I purchased, Treasure and Take Back the Night, are not downloading from the cloud on either my iphone or ipad.  I have tried the previous suggestions.  Can you offer further advice.

    The last 2 songs I purchased, Treasure and Take Back the Night, are not downloading from the cloud on my iPhone 4 or my iPad2.  I have tried previous suggestions on the support page.  Can anyone suggest further solutions?

    Hello BwarsIG88
    Check your purchase history by going to the iTunes Store and then click on purchases. From there you can see all your purchase history and download what you are missing.
    Downloading past purchases from the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/ht2519
    Regards,
    -Norm G.

Maybe you are looking for

  • System crash RFC destination

    Hi, When creating projects it fails with the messages:- 1) System crash RFC destination , Call TMW_VERSION_TEST: User SAPSYS has no RFC authorization for function group TMW_TRACKING . 2) System crash RFC destination , Call TMW_VERSION_TEST: Name or p

  • Statefull bean Reference in a JSP

    Weblogic Server 4.5.1           I have got the reference to a statefull session bean in a JSP, how can i use           the same reference of session bean in another JSP file. How is this           achieved.           Here is an example of the problem

  • Vault + Time Machine w/ Referenced Masters

    I know this general question has been asked several times, but I can't find a solution that matches my specific setup. I'm running Aperture off my MBP, so I have set up one external drive to hold my referenced masters. My internal drive has my apertu

  • How to use jdbc in struts ?

    i want to connect to database and fire insert, select etc queries but my code should be in struts framework

  • Paypal account not accepted

    I got an Ipod touch from my nephew when trying to load a free app (facebook) it says Payment Method  Payment type not accepted, then in red it says there is a billing problem with a previous purchase. Please enter another payment menthod.   I went in