SSAS 2012 Calculated Member in "hh:mm:ss" does not work

I've seen a lot of posts that suggest this should work for displaying a calculated member in hours:minutes:seconds, but it doesn't in my 2012 developer environment.  I don't care that this specific code isn't accurate if the duration in seconds is over
a day long at this point.  It seems no matter how I try to format this, the result is the same.
[Measures].[Phase Duration Seconds] is an integer, and it doesn't seem to matter what goes in the FORMAT_STRING parameter, it comes out in SSMS, and SSDT as a decimal number.
CREATE MEMBER CURRENTCUBE.[Measures].[Phase Duration]
 AS [Measures].[Phase Duration Seconds] / 86400, 
FORMAT_STRING = "hh:mm:ss", 
VISIBLE = 1  ; 
If I write this as an MDX script, it works in SSMS, with or without the extra code to account for durations beyond a day:
with member [Measures].[Phase Duration] as [Measures].[Phase Duration Seconds] / 86400,
     format_string = IIF([Measures].[Phase Duration Seconds] / 86400 < 1,'"0 days" hh:mm:ss','"' + cstr(int([Measures].[Phase Duration Seconds] / 86400)) + ' days" hh:mm:ss')
select
        [Measures].[Phase Duration Seconds],
        [Measures].[Phase Duration]
   } on 0,
      [Phase].[Phase].Members
   } on 1
from [SSASDB]
Cheers and many thanks for any guidance,
Simon

After much trial and error, am I just barking up the wrong tree?  
I just learned about the deprecation of the abilities of the browser in Analysis Services 2012, and started using Excel instead...  The original code above to create a calculated member does work in Excel.
Cheers and thanks,
Simon
Cheers and thanks, Simon

Similar Messages

  • Average in Results row in calculation properties for Bex Key figure does not work in Analysis for Office 1.4.7

    We are moving from Bex 3.5 to Bex 7.0 and using Analysis for Office 1.4.7
    We have queries that do an average for the results rows of dynamic calculations and the queries will not open in Analysis for Office 1.4.7 (example is below)
    We get an error message that can be found below
    We were able to open the queries in Analysis 1.4.5 with the correct results.
    We do not understand why it worked in an older version and not the new one.
    Is there something missing in the version 1.4.7 of Analysis for Office that is preventing our queries from running?
    We do not want to move back to 1.4.5 because the performance is better in 1.4.7.
    Help.....

    Hi Patty,
    I just checked 1.4.7 by making "Calculate Results As.." for Key figure and formula to Average(and also tried others as well). No error is coming in Analysis Office. reason might be because of other reason
    Any way, As Tammy Powlas suggested can you check with SP8

  • Use member on data form does not work

    Hello,
    "Use member on data" option does not work on composite Data Form. Business rule associated with composite form.
    Who is resolve this problem?
    Version hyperion: 11.1.2
    Thanks

    I don't have a solution for you but more steps to solve the problem
    You are ultimately on the right track in some ways but break it down into it's components.
    The problem could like in the business rule, the form connection, the variables, even the order of operations could all be in play.
    So I would strip this baby down to its bare bones then build it back up.
    1) Run the business rule. Each one separately and only after the previous ones is complete without variables and without touching the form
    Is it successful: go to 2
    If it isn't successful: trouble shoot the calc and or try running in EAS natively to see if that gives you ideas
    2) Run the calc outside the form but with variables included. Did it prompt you correctly.
    Is it successful: go to 3
    If it isn't. What is wrong with the variable
    3) Now attach it to the form but don't hide the prompts
    Still good go to 4
    4) hide the prompts and run on save
    And if it fails on step four then it's not picking up the right variables in the prompt. And you need to look at why it wouldn't grab the right item.
    This will isolate your problem for you and give you steps to fix it. Ultimately 99% of the time something did change in the structure for example that is impacting the calc. And when you isolate the problem this will reveal itself quite quickly.

  • SCVMM 2012, Conntect via conosle does not work when logged in with specified credentials

    Hi all
    I have a problem with the SCVMM 2012 console. When I start the console I select the "Specify credentials" option and then I enter my admin credentials. Afterward the console opens
    and everything works except the "Connect via Console" function.
    When I try to connect to a VM I get the following message:
    Virtual Machine Manager lost the connection to the virtual machine for one of the following reasons: Another connection was established to the console of this machine. The virtual machine has been shut down or put into the saved state. The user credentials
    provided do not have the necessary privilege to connect (0x0003, 0x0300)
    It seems that the Virtual Machine Viewer runs not under the admin credentials which I enter at the beginning and therefore the console cannot connect.
    Has someone the same issue ? Is it by design that the console connection does not work with specified credentials or is a sort of a bug or error ?
    Thx
    J0fe

    Being new to SCVMM, I've just come across this issue myself, though I came to a different (not necessarily better, but good enough for me) resolution.
    I have a somewhat convoluted but not abnormal configuration where the SCVMM server lives in a separate untrusted forest to that which the Hyper-V Server hosts live.
    As people have noted in this and other threads, the VirtualMachineViewer.exe process launches in the same security context with which you logged onto your pc. While the VmmAdminUI.exe process also runs in the same security context,
    the network logon it issues makes use of the credentials provided at the SCVMM MMC's logon screen, which VirtualMachineViewer.exe does not.
    I elected to use Credential Manager to resolve this issue.
    In Credential Manager, I created a "Windows Credential" entry where the hostname matched the FQDN of the hostname that appears within SCVMM as the virtual host entry. Using an IP does not match if you've used an FQDN in the SCVMM
    registration, and vice versa. If you used an IP for the host in SCVMM, then you need to supply that IP as the hostname in Credential Manager, and likewise if you used a FQDN.
    This solution isn't perfect as it requires you to manage numerous Credential Manager entries (one per host), but that still appealed to me far more than one per guest. If I had a larger environment, I'd script the account configuration
    given it only needs to happen once per host, rather than on an ongoing basis of once per guest as some of the above approaches would require.
    I haven't tested the different combinations to verify the least permissions required. For the time being I've gone with the model of using a non-privileged domain user account (to avoid managing multiple identities and passwords)
    which I added to the local Administrators group of each Hyper-V Server host. This stuck me as being a sound enough compromise between rigid security and ease-of-administration (given the per host arrangement in Credential Manager).
    With the account correctly specified in Credential Manager, I'm able to move on past the 0x0003 error and successfully use the remote function.
    If I was to point out an upside to this, it would be that this approach would allow me to remote Hyper-V servers in untrusted forests (including workgroups), which is something I couldn't do if the VirtualMachineViewer.exe process
    did in fact use my SCVMM credentials alone. Ultimately, that's something you have to come to terms with yourself, though.
    Cheers,
    Lain
    Thanks a bunch Lain, this helped! I'd still consider this a bug, however, and not a workable solution for a large number of servers/admins... But for now this does the trick, thanks!

  • Windows 8.1 Standard with Microsoft Account does not work with WSE 2012

    I have a WSE 2012 machine with 3 users & 3 devices setup.
    My Windows 8 (Standard) Laptop with Local User connects fine.
    My Windows 8.1 (Standard) Nettop with Local User connects fine.
    But my Windows 8.1 (Standard) Laptop with a Microsoft Account does not automatically login to the Server. It worked fine when it was running Windows 8 with a Local User but unfortunately in 8.1, MS decided to force a Microsoft Account login on us if I want
    to continue to use Sky Drive! That would be fine, but now it wont login to their own server product...
    I've tried adding a Windows Credential (set at Enterprise level) to the Credentials manager but it just gets forgotten on reboot.
    If I log into the LaunchPad (which creates a temporary credential) then it works fine HOWEVER the "remember me" tick box is being ignored and the next time I restart the PC the LaunchPad is signed out again!
    I've re-installed the connector.
    I've removed the PC from WSE, un-installed the connector and then re-joined. (Done this twice, once as a local user and then converted to MS Account, and once as an MS Account.)
    Basically, I just don't think WSE2012 with non-Pro versions of 8.1 on a MS Account have been tested and MS need to either fix it or document it. If someone could just get the LaunchPad to remember my local login and automatically start on next reboot then
    it wouldn't be a problem. OR stop launch pad from deleting the manual credentials I added everytime I reboot. At the moment it's the worst of both worlds.
    Any ideas?

    Hi Susan,
    Thanks very much for replying, but if you re-read my post you'll see that I already know how to do that and also that I don't want to change back to a local account because I need Skydrive access. 
    Essentially as it stands, I can use Windows 8.1 with WSE but lose SkyDrive (and any other MS Account benefits) or I can use an MS Account with Windows 8.1 but lose permanent access to my server shares and client backups...
    Reading around it seems that it's perfectly possible to have an MS Account and then do one of the following:
    Use a Windows Credential stored for the local user to give access to the Server.
    Set the LaunchPad to automatically log in at start-up.
    If on a Domain, go into settings and Link the MS Account to your Domain Account.
    Unfortunately none of these options are working for me (3 isn't even possible with 8.1 Std).

  • Server 2012 cluster - virtual machine live migration does not work

    Hi,
    We have a hyper-v cluster with two nodes running Windows Server 2012. All the configurations are identical.
    When I try to make a Live migration from one node to the other I get an error message saying:
    Live migration of 'Virtual Machine XXXXXX' failed.
    I get no other error messages, not even in event viewer. This same happens with all of our virtual machines.
    A normal Quick migration works just fine for all of the virtual machines, so network configuration should not be an issue.
    The above error message does not provide much information.

    Hi,
    Please check whether your configuration meet live migration requirement:
    Two (or more) servers running Hyper-V that:
    Support hardware virtualization.
    Yes they support virtualization. 
    Are using processors from the same manufacturer (for example, all AMD or all Intel).
    Both Servers are identical and brand new Fujitsu-Siemens RX300S7 with the same kind of processor (Xeon E5-2620).
    Belong to either the same Active Directory domain, or to domains that trust each other.
    Both nodes are in the same domain.
    Virtual machines must be configured to use virtual hard disks or virtual Fibre Channel disks (no physical disks).
    All of the vitual machines have virtual hard disks.
    Use of a private network is recommended for live migration network traffic.
    Have tried this, but does not help.
    Requirements for live migration in a cluster:
    Windows Failover Clustering is enabled and configured.
    Yes
    Cluster Shared Volume (CSV) storage in the cluster is enabled.
    Yes
    Requirements for live migration using shared storage:
    All files that comprise a virtual machine (for example, virtual hard disks, snapshots, and configuration) are stored on an SMB share. They are all on the same CSV
    Permissions on the SMB share have been configured to grant access to the computer accounts of all servers running Hyper-V.
    Requirements for live migration with no shared infrastructure:
    No extra requirements exist.
    Also please refer to this article to check whether you have finished all preparation works for live migration:
    Virtual Machine Live Migration Overview
    http://technet.microsoft.com/en-us/library/hh831435.aspx
    Hyper-V: Using Live Migration with Cluster Shared Volumes in Windows Server 2008 R2
    http://technet.microsoft.com/en-us/library/dd446679(v=WS.10).aspx
    Configure and Use Live Migration on Non-clustered Virtual Machines
    http://technet.microsoft.com/en-us/library/jj134199.aspx
    Hope this helps!
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Lawrence
    TechNet Community Support
    I have also read all of the technet articles but can't find anything that could help.

  • OBIEE 11.1.1.6.5 - selection steps on a calculation does not work correctly

    I have a tabular report with a hierarchy column (cost centre) on the left, which is displaying at the top level (total company). The report has a metric for actual ytd, one for budget ytd and a calculation for variance (actual ytd - budget ytd).
    When I add a selection step to keep only the top 10 cost centres at the bottom level of the hierarchy based on the variance, the report returns the top 10 cost centres based just on actual ytd ie only the first part of the calculation. It seems to ignore the whole calculation even though it has brackets around it. The selection step appears to be written correctly when I view it in the report but it is not working as I expect.
    Has anyone got any thoughts on why this might be and if there is a solution. I have put brackets around the entire calculation, but it doesn't seem to make any difference, it still bases its selection on the first measure it finds in the calculation.

    Just curious - do you have multiple "pages" of information - like maybe a time dimension in the paging prompt? I've found numerous issues where, if you have multiple "pages" of info, selection steps completely ignore what page you are on and returns results for the whole set....which is exactly not what any of my end users expect to happen....
    Scott

  • Guest VM failover cluster on Hyper-V 2012 Cluster does not work across hosts

    Hi all,
    We are evaluating Hyper-V on Windows Server 2012, and I have bumped in to this problem:
    I have a Exchange 2010SP2 DAG installed on 2 vms in our Hyper-V cluster (a DAG forms a failover cluster, but does not use any shared storage). As long as my vms are on the same host, all is good. However, if I live migrate or shutdown-->move-->start one
    of the guest nodes on another pysical host, it loses connectivity with the cluster. "regular" network is fine across hosts, and I can ping/browse one guest node from the other. I have tried looking for guidance for Exchange on Hyper-V clusters but have not
    been able to find anything.
    According to the Exchange documentation this configuration is supported, so I guess I'm asking for any tips and pointers on where to troubleshoot this.
    regards,
    Trond

    Hi All,
    so some updates...
    We have a ticket logged with Microsoft, more of a check box exercise to reassure the business we're doing the needful.  Anyway, they had us....
    Apply hotfix http://support.microsoft.com/kb/2789968?wa=wsignin1.0  to both guest DAG nodes, which seems pretty random, but they wanted to update the TCP/IP stack...
    There was no change in error, move guest to another Hyper-V node, and the failover cluster, well, fails with the following event ids I the node that fails...
    1564 -File share witness resource 'xxxx)' failed to arbitrate for the file share 'xxx'. Please ensure that file share '\xxx' exists and is accessible by the cluster..
    1069 - Cluster resource 'File Share Witness (xxxxx)' in clustered service or application 'Cluster Group' failed
    1573 - Node xxxx  failed to form a cluster. This was because the witness was not accessible. Please ensure that the witness resource is online and available
    The other node stays up, and the Exchange DB's mounted on that node stay up, the ones mounted on the way that fails failover to the remaining node...
    So we then
    Removed 3 x Nic's in one of the 4 x NIC teams, so, leaving a single NIC in the team (no change)
    Removed one NIC from the LACP group on each Hyper-V host
    Created new Virtual Switch using this simple trunk port NIC on each Hyper-V host
    Moved the DAG nodes to this vSwitch
    Failover cluster works as expected, guest VM's running on separate Hyper-V hosts, when on this vswitch with single NIC
    So Microsoft were keen to close the call, as there scope was, I kid you not, to "consider this issue
    resolved once we are able to find the cause of the above mentioned issue", which we have now done, as in, teaming is the cause... argh.
    But after talking, they are now escalating internally.
    The other thing we are doing, is building Server 2010 Guests, and installing Exchange 2010 SP3, to get a Exchange 2010 DAG running on Server 2010 and see if this has the same issue, as people indicate that this is perhaps not got the same problem.
    Cheers
    Ben
    Name                   : Virtual Machine Network 1
    Members                : {Ethernet, Ethernet 9, Ethernet 7, Ethernet 12}
    TeamNics               : Virtual Machine Network 1
    TeamingMode            : Lacp
    LoadBalancingAlgorithm : HyperVPort
    Status                 : Up
    Name                   : Parent Partition
    Members                : {Ethernet 8, Ethernet 6}
    TeamNics               : Parent Partition
    TeamingMode            : SwitchIndependent
    LoadBalancingAlgorithm : TransportPorts
    Status                 : Up
    Name                   : Heartbeat
    Members                : {Ethernet 3, Ethernet 11}
    TeamNics               : Heartbeat
    TeamingMode            : SwitchIndependent
    LoadBalancingAlgorithm : TransportPorts
    Status                 : Up
    Name                   : Virtual Machine Network 2
    Members                : {Ethernet 5, Ethernet 10, Ethernet 4}
    TeamNics               : Virtual Machine Network 2
    TeamingMode            : Lacp
    LoadBalancingAlgorithm : HyperVPort
    Status                 : Up
    A Cloud Mechanic.

  • MBAM - SCCM 2012 Reports - Error: the 'MBAM Policy' view does not exist

    Hi
    I have installed MBAM with SCCM 2012 integration. A single server install with SQL server 2012. Mostly it has gone smoothly and laptops are being encrypted and pins stored and recoverable. The problem I have is reports are not showing. I get the following
    error message.
    "Error: the 'MBAM Policy' view does not exist"
    Any ideas why this is? I get the same error message with all 4 reports.

    Hi Slycy,
    There is another thread that seems to be a similar issue
    here that may help you. The last post in particular has a number of steps that you can use to speed up creation of the views:
    Just for future reference, there are quite a few things that have to happen before the view is created. This is merely how CM works.
    Make MBAM MOF changes
    Select TPM spec version in hardware inventory
    Install MBAM CM Integration feature
    Perform a machine policy refresh cycle on a client to get the MOF changes that need to be inventoried
    Perform hardware inventory
    Update MBAM Supported Computers collection membership.  The machine should appear if it meets the criteria
    Run another machine policy refresh on the client so that the Configuration Baseline will come down
    Make sure that the MBAM agent has woken up once
    Evaluate the Configuration Baseline
    The MBAM views should be created now.
    You don't have to do this for every machine, but this is the process to speed it up.  If you let CM do it, it could take over a week before the view is created the first time, depending on when Hardware inventory runs, etc.
    Hope this helps,
    David

  • EPMSaveComment after EPM Insert Member does not work?

    Hello,
    I have situation in report where I use EPM Insert Member and also EPMSaveComment.
    After new members are inserted, existing comments are blanked and Save data after that update exsisting comments with blank values
    Detail steps:
    Open Excel and log on to BPC-NW Environment / model
    Create a report selecting a dimension ACCOUNT on the row axis and TIME dimension on the column axis.
    Choose Remove Empty and Zero Values for Rows
    Add two local Members on the both following columns as follows:
    column x: add local Member 1 and leave formula blank
    column y: add Local Member 2 and enter an 'EPMSAVECOMMENT' formula which references the column in 'LocalMember1'
    Insert Member and enter some values and also comment.
    Save and Refresh data.
    Insert Member
    The comment will disappear from the LocalMember1 (column x).
    Questions:
    Is it possible to have Insert Member and EPMSave Comment in same Report?
    Fact (documentation EPM Add-in 32.28): EPMSaveComment function is executed (only) when you Refresh the worksheet.
    But Insert Member function does not Refresh the report in such way that comments with EPMSaveComment function are displayed? They are blanked instead.
    If report is refreshed before Save Data then inserted members are deleted because they dont have values
    If data is entered for inserted members than with Save Data also previous comments are changed (with blank), because they are different in input screen that those saved before?
    If columns for comments are only added in Excel, so that they do not belong to Report, then comments do not dissapear from "blank" column….
    … and function EPMSaveComment in second column still save comments
    But in that case after Insert Member function outside Report is not available automatically in inserted row
    Also if EPMCopyRange is used instead of LocalMembers the situation - dissapearing existing comments when inserting member - is the same
    There is similiar situation with Expand and Insert Member functionality explained in Note 1936111 where SAP states that Refresh is needed?
    Best regards,
    Nevenka Ribnikar

    Hello,
    thanks for you suggestion, I will also wait for answer from SAP.
    I will post details again:
    LOCAL MEMBERs in REPORT:
    EPMSaveComment(EPMMEMBER(000), , EPMDIM_CURRENT_MEMBER(ACCOUNT), )
    After EPM Insert Member
    Comments in column »enter« dissapear
    In documentation EPM Add-in 32.28 is written: EPMSaveComment function is executed (only) when you Refresh the worksheet
    For new inserted member values and comment can be added, but also other comments will be changed to blank values…
    If only values are changed and Save Data without Refresh,
    then comments are still in column »enter«
    If I use columns out of the report than as mentioned, if new members are inserted at the end there is no formula for comment...
    Thank you for your answers, I was worried that there is some simple solution...
    Does anybody has some real project experience with SaveComments and InsertMembers in same reports?
    Best regards,
    Nevenka

  • Formula function in formula of type Rate Value Calculation does not work

    Hi,
    We are trying to prorate eligible salary based on some business rules.
    We have defined Standard rates with calculation method as 'Calculate for Enrollment Rule' and attached a formula in the 'Value Rule' field.
    Now inside the formula, if i directly return a value like 'Return 9000' , it works correctly. However, if i have a fomrula function and return the value as follows,
    l_value = CUSTOM_FF_FUNCTION()
    retunr l_value
    it does not return value.
    I have attached a package function that simply returns 4000 just for debugging.
    Even this does not return the value back to the formula
    Any pointers will be useful
    Thanks,
    LN

    Sorry. I had not checked this post earlier.
    We had 2 functions with same name and same contexts on the same database. Each of the functions called a separate package function and had its own logic.
    So sometimes the first function was called.At some other times, the second function was called.
    We deleted one of the functions and the formula worked well.

  • Windows 2012 cluster, CLIUSR cannot be created, password does not meet security requirements

    Trying to create a Windows 2012 cluster (Not R2). The cluster creation wizard goes through without problems. However, after a few minutes the cluster service dies with EventID 1556 and error code 2245 "The
    password does not meet the password policy requirements. Check the minimum password length, password complexity and password history requirements." The error repeats every few minutes.
    Looking at the cluster log, we find:
    ERR   Workitem(Sweeper::Sweep)  callback threw exception: (2245)' because of '[CLI] Account Creation failure: 2245, 4294967295'
    ERR   [CORE] Shutting down cluster service because of unhandled exception in a worker thread
    It appears it is trying to create the local CLIUSR account, but the self-generated password does not meet complexity... The local password policy is the default deployed with Windows 2012 -
    No unusual password requirement (8 characters with built-in complexity requirement) 
    I saw Elden's description of CLIUSR in
    https://social.technet.microsoft.com/Forums/en-US/95929983-a50c-42b3-a520-6a171e542948/win-server-2012-two-node-cluster-local-cliuser-issue?forum=winserverClustering - so I believe I understand what it is doing, but how can it not generate a password complex
    enough? And I do not see any report of anyone having this issue, so I suspect a local configuration / issue. 

    Hi FrankJB,
    Please verify that the Cluster Service account has the appropriate user rights on each node of the cluster. The Cluster Service account must be
    in the local administrators group and should have the rights listed below. These rights are given to the Cluster Service account during the
    configuration of the Cluster node. It is possible that a higher level policy is over-writing the local policy or that an upgrade from a previous
    operating system does not add all of the required rights.
    If you can confirm your current account meet the cluster create conditions, please disable all your firewall then run the cluster validation and
    post the warning and error information.
    The related KB:
    How to troubleshoot the Cluster service account when it modifies computer objects
    https://support.microsoft.com/en-us/kb/307532?wa=wsignin1.0
    Additional, please install the following hotfix.
    Recommended hotfixes and updates for Windows Server 2012-based failover clusters
    http://support.microsoft.com/kb/2784261/EN-US
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Initscripts 2012.08.3-1 /proc/bus/usb does not exist

    After upgrading initscripts
    [2012-08-28 15:26] upgraded initscripts (2012.08.2-1 -> 2012.08.3-1)
    boot.log shows the following error message
    mount: mount point /proc/bus/usb does not exist
    I didn't find any recent post about this issue. I recall that something changed maybe with /proc and /sys some weeks/months ago, but I get this warning message since the initscripts update.
    Any idea? Or is it a sign that I should familiarize myself with systemd?
    Update:
    I missed this thread, same issue, sorry: https://bbs.archlinux.org/viewtopic.php?id=147916
    Someone may want to delete this one. Thanks.
    Last edited by siriusb (2012-08-30 12:42:38)

    After upgrading initscripts
    [2012-08-28 15:26] upgraded initscripts (2012.08.2-1 -> 2012.08.3-1)
    boot.log shows the following error message
    mount: mount point /proc/bus/usb does not exist
    I didn't find any recent post about this issue. I recall that something changed maybe with /proc and /sys some weeks/months ago, but I get this warning message since the initscripts update.
    Any idea? Or is it a sign that I should familiarize myself with systemd?
    Update:
    I missed this thread, same issue, sorry: https://bbs.archlinux.org/viewtopic.php?id=147916
    Someone may want to delete this one. Thanks.
    Last edited by siriusb (2012-08-30 12:42:38)

  • Windows Server 2012 Standard - HP OfficeJet Pro 8600 Plus printer not working after promoting to Domain Controller / AD Services

    An associate and myself installed the built-in drivers for the HP OfficeJet Pro 8600 Plus multi-function (network) printer on a Windows Server 2012 Standard server installation and everything worked fine whenever I want to print anything directly from the
    Windows Server machine (there's a reason for this, so please understand that ;)  ).
    We were able to print without any problems from the Windows Server 2012 machine, using the drivers from Microsoft.  Mainly, because HP has not listed any specific support for Windows Server 2012, only Windows Server 2008 R2, however, the drivers that
    came with Windows 2012 seem to work very well.
    PROBLEM: I later had to promote the Windows Server 2012 to a Domain Controller, and created the Active Directory configurations, even enabled the Print Services.  After doing all of that, the HP printer will not print anything.  It's like all print
    requests directly from the Windows Server go to Nil.
    Has anyone encountered a problem like this before? The only thing I can think of is that after perhaps something affected printing directly once we promoted the server to being a DC, and added other features / roles.  I even tried installing the
    HP drivers for Windows Server 2008 R2, and the results are still the same...nothing prints.  Trust me, the printer is set as the Default Printer and even when choosing to print, we make sure the HP OfficeJet Pro is selected, and is on, as other Windows
    Client PC's can print to it directly.
    Does anyone have any suggestions we could try?  Thanks in advance.

    While it is quite a while since this was posted - I can concur a similar issue exists.
    We have spent the better part of a day trying to work out why other HP printers work fine but our 8620 prints are not printing and going to Nil.  The print server is hosted on a shared DC.  Comparing to the initial posters details, for some reason
    it seems to be most commonly related to the OfficeJet Pro 8600/8610/8620/8630 series printers.
    I ended up doing a print server migration from the domain controller to stand alone host and all printers now work from a single server rather than a mix.  Domain controller OSes varied from 2008, 2012, 2012 R2 (tested with multiple) and only after
    all of those failed then tried a stand alone server os machine as a last resort which worked fine.  Printing directly from Win 7 / 8 /8.1 clients to the IP always worked.

  • Updatable property of Calculated Field in ViewObject does not work

    Hello,
    I have set the Updatable property of some ViewObject attributes to "while new".
    In the page those attributes are shown as <af:inputListOfValues> components.
    When creating a new row, those components properly appear as enabled and let me insert any values, since the row is new.
    However, after a following commit, once the table in the page is refreshed, I still see some components enabled on the row I committed before. This only happens with attributes based on calculated fields, not with those based on real table fields, as if the "while new" property specified on the ViewObject calculated fields was ignored.
    Do you know why? Is there a solution or work around?
    Below are the ViewObject XML section and the af:component definition based on the attribute.
    <ViewAttribute
    Name="Cod"
    IsPersistent="false"
    PrecisionRule="true"
    Precision="15"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    AliasName="COD"
    Expression="COD"
    SQLType="VARCHAR"
    IsUpdateable="while_insert"
    LOVName="LOV_Cod">
    <DesignTime>
    <Attr Name="_DisplaySize" Value="15"/>
    </DesignTime>
    <Properties>
    <SchemaBasedProperties>
    <CONTROLTYPE
    Value="input_text_lov"/>
    </SchemaBasedProperties>
    </Properties>
    </ViewAttribute>
    <af:inputListOfValues id="ilov1"
    popupTitle="Search and Select: #{bindings.BLOCK.hints.Cod.label}"
    value="#{row.bindings.Cod.inputValue}"
    model="#{row.bindings.Cod.listOfValuesModel}"
    required="#{bindings.BLOCK.hints.Cod.mandatory}"
    columns="#{bindings.BLOCK.hints.Cod.displayWidth}"
    shortDesc="#{bindings.BLOCK.hints.Cod.tooltip}"
    autoSubmit="true">
    <f:validator binding="#{row.bindings.Cod.validator}"/>
    </af:inputListOfValues>

    Helga,
    The question is what does this "require" flag do? We read the book of life (cl_htmlb_inputfield), and see that this flag only controls in the first instance a little red * that is rendered next to the input field. This is a pure visualization for the user of the page.
    In addition you can ask that a check be done in the browser. This you can do with:
      <htmlb:inputField  id = "wander"
                         value = "E"
                         required = "TRUE"
                         doValidate="true" />
    However, I would not serious recommend this. Now even if you user presses a cancel button, or link, or breadcrumb, or..., the check will still complain.
    What we currectly do (and recommend), is to set the required flag on the <htmlb:<b>label</b>/> tag. And then do the actual checking on the server (must be done in anycase). If no value, or not correct, then also set the "invalid" flag, render out error message and redo page.
    ++bcm

Maybe you are looking for

  • Communication problem when using Google Font api

    Hi When I try linking to the Google font api I receive a communication error in BrowserLab. The page renders OK outside of BrowserLab in my usual browser and if I remove the link then the page works in BrowserLab (but obviously doesn't include the fo

  • Find child record of a parent record

    Hi, I need to find the child recond of a parent party and if that child also have some child then I need to find again and this process will go untill no child record found(child is null) I am trying to do it by the help of hierarchical query. can an

  • Numbers Import and Load Performance Problems

    Some initial results of converting a single 1.9MB Excel spreadsheet to Numbers: _Results using Numbers v1.0_ Import 1.9MB Excel spreadsheet into Numbers: 7 minutes 3.5 seconds Load (saved) Numbers spreadsheet (2.4MB): 5 minutes 11.7 seconds _Results

  • Adobe Color Panel CC Empty in PS CC 2014

    WAS working great... now the panel is empty. Yes, I'm logged in and connected. It also works in Photoshop CC. I've uninstalled and reinstalled so... what am I missing? Thanks in advance for any assistance or direction you can give me

  • MacAfee stops Photoshop when open directly a PSD file.

    Is MacAfee and Photoshop compatibles ? As MacAfee stops Photoshop when open directly a PSD file, the message is "OverFlow problem,internet acces stopped"