APD is terminated - MDX issue?

Hi expets,
An APD fails with this error
System error in program CL_RSR_MDX_CMD and form GET_REQ_FROM_SET-01- (see long text)
Error while executing query in OLAP server; redesign query
Termination: Error when executing the query
APD worked fine up to now , no change in query or in APD itself were made.
Saved query with a different name, allocated it to APD - same result.
Query executed in BEx also works fine.
Didn't find any OSS notes matching the error.
SAP NetWeaver 2004s / SP SAPKW70021
Any help? Thanks in advance
Joe
Edited by: J.F.B. on Mar 23, 2010 2:43 PM

Hi Vasu,
Thanks for reply.
What's really confusing for me ist the fact that APD worked fine until a date X, and then produced an error, and
nobody knows about any change in system.
However, I only can enlcose the long text of error message, system does'nt porvide more information.
System error in program CL_RSR_MDX_CMD and form GET_REQ_FROM_SET-01- (see long text)
Message no. BRAIN299
Diagnosis
This internal error is an intended termination resulting from a program state that is not permitted.
Procedure
Analyze the situation and inform SAP.
If the termination occurred when you executed a query or Web template, or during interaction in the planning modeler, and if you can reproduce this termination, record a trace (transaction RSTT).
For more information about recording a trace, see the documentation for the trace tool environment as well as SAP Note 899572.
Meanwhile I opened a request to SAP OSS. Will post result when available and if helpful.
Best regards
Joe

Similar Messages

  • Office 2007 + Custom template (dot/dotm files) on terminal server -- issues

    We are trying to transition to a terminal server + thin-client setup.
    The TS runs Server 2008 R2, and the Office version is 2007 (for compatibility reasons -- we have a lot of macros etc that won't run with Office 2010).
    The normal.dotm for Office, Excel & Word are customised in order to insert custom macros, font styling etc. A batch file runs on logon, copying the custom normal.dotm files from a network share to the local computer's C: drive in a folder called "Templates".
    So it'd copy the data from "\\SERVER1\share\normal.dotm" to "C:\templates\" on the machine.
    Then, a GPO would re-direct the location for the normal.dotm file from the default location to the new location (i.e. C:\Templates\) from above. This allowed updating of custom macros etc to all computers on the net. It was messy, but it worked.
    Now that we're wanting to transition to terminal server, we're having an issue where the script still works, however when closing Outlook / Excel / Word, users are receiving a message stating "The file normal.dotm is in use".
    I'm guessing what's happening is, the first person to log on to the Terminal Server and launch their instance of Outlook/Word/Excel is getting an exclusive handle to this file; And subsequently launched instances get this error.
    There is nothing _wrong_ with the system per se -- everything works, however every time an Office app is closed, the user gets the annoying message.
    What is the correct solution to this? Is there a cleaner way to deploy macros/styling settings rather than modifying normal.dotm? Another solution I can think of is to create a copy of the templates/normal.dotm for every single user in their %AppData% folder
    and tell Office to use the %AppData% copy -- but this would mean as many copies of the templates as there are users which doesn't seem like a very clean solution.
    I'm open to suggestions and insights on the cleanest and most efficient way to solve this problem.

    Hi
    update to this issue from my side:
    We opened a Support call for this issue and got it solved.
    The SQL script to recreate a fresh Enterprise Global (eglobal.SQL) does not exist for Project Server 2013 currently. But the support created one for us. So if someone has this issue, contact Microsoft Support, they will provide you the script.
    Kind regards
    Christoph
    Christoph Muelder | Senior Consultant, MCTS, MCSE, MCT | SOLVIN information management GmbH, Germany

  • Terminal monitor issue with 3750

    I'm having an issue with term mon not displaying messages. I enable term mon on telnet connection and have checked the log settings and monitor is set as debugging. I am mainly interested in seeing line up/down status so I set a couple of interfaces logging event link-status. Maybe I've misunderstood how to do this. Thanks for the help.

    Based on the output, you don't have terminal monitor enabled:
    Capabilities: none
    Here is my output:
    Rack1SW1#sh term | i Capa
    Capabilities: none
    Rack1SW1#term mon
    Rack1SW1#sh term | i Capa
    Capabilities: Receives Logging Output

  • Complex Essbase MDX Issue - Need Guidance

    Hi,
    I have a complex Essbase issue in ASO version 11.1.2.2. Currently I have a MDX formula with a Measure member named '10th Percentile'. It calculates the 10th Percentile perfectly. So new requirement is to create a new Measures member and instead of calculating the '10 Percentile' value, it needs to display the Customer Name of the value that is the 10th Percentile from the Customer dimension. So if I do a retrieval and the '10th Percentile' is 3.23, then it needs to display the Customer Name of the 3.23.
    So I altered the formula to do what I think needs to be done and it verifies. However if I retrieve on that new measure in the Excel Add In, I get and error: An error [1200315] Occured in Spreadsheet Extractor. However if I navigate without data I don't get the error, but I also don't get any data, which I obviously need. So my question is, if MDX support reporting on Metadata not just Data, what/how can one report on it? Ideally I need to have this work in the Excel Add In as the client is using a custom vba modified template for their end users.
    Any ideas and help?

    Here's the formula. I bolded the part that is new.....
    IIF ( [Lbs Per Yard].CurrentMember IS [Lbs Per Yard].[No_Lbs/Yd] ,
    IIF( [Count_Price] = Missing, Missing, IIF( [Count_Price] < 2 , Missing,
    { Order (
    Filter ( CROSSJOIN ( Leaves ( [Service].CurrentMember)
    , Filter ( CROSSJOIN ( Leaves ( [Segment].CurrentMember)
    , Filter ( CROSSJOIN ( Leaves ( [Customer Type].CurrentMember)
    , Filter ( CROSSJOIN ( Leaves ( [Zip Code].CurrentMember)
    , Filter ( CROSSJOIN ( Leaves ( [Quantities].CurrentMember)
    , Filter ( CROSSJOIN ( Leaves ( [Frequencies].CurrentMember)
    , Filter ( CROSSJOIN ( Leaves ( [Yardages].CurrentMember)
    , Filter ( Leaves ( [Contract Year].CurrentMember)
    , [$/Yd] <> Missing ))
    , [$/Yd] <> Missing ))
    , [$/Yd] <> Missing ))
    , [$/Yd] <> Missing ))
    , [$/Yd] <> Missing ))
    , [$/Yd] <> Missing ))
    , [$/Yd] <> Missing ))
    , [$/Yd] <> Missing )
    , [$/Yd] /*this is the measure we're using for sort */
    , BASC /* sort in $/Yd in ascending order */
    ) AS OrderedSetOfItems} /* here we define an alias for the set in order to be able to use it later */
    .Item ( Round ( Count ( OrderedSetOfItems) *
    10 / 100 /*where we specify which percentile is being calculated */
    + 0.5 , 0 ) -1 ) *.Item (3-1).[MEMBER_NAME]*
    /* this takes Nth item from the ordered set (0-based index, hence -1) */
    /* .Name takes its name */
    , Missing )

  • Aso mdx issue !!!!!

    ([Jan],(Actual),(LOB]) verify's
    ([Jan],[SC_Actual],[LOB])=([lob1]*(.75))+[lob2]*(.25));
    Error(1260052) - Syntax error in input MDX query on line 1 at token '=' CombinedLOB
    please advise
    Edited by: Next Level on Jul 8, 2012 4:43 AM
    Edited by: Next Level on Jul 8, 2012 4:44 AM

    I tried
    CASE WHEN (IS([Time Period].CurrentMember, [Jan]) AND IS([Scenario].CurrentMember, [SC_Actual]) AND IS([LOB].CurrentMember, [CombinedLOB]))
    same Error(1260052) - Syntax error in input MDX query on line 1 at token '' CombinedLOB
    why am i getting this ??????????????/
    then i tried
    CASE WHEN (IS([Time Period].CurrentMember, [Jan]) AND IS([Scenario].CurrentMember, [SC_Actual]) AND IS([LOB].CurrentMember, [CombinedLOB])) Then
    ([lob1]*(.75))+([lob2]*(.25))
    End Case
    Error(1260052) - Syntax error in input MDX query on line 2 at token '' CombinedLOB
    why am i having an issue with CombinedLOB
    all the issue are with CombinedLOB
    this is the dimension
    LOB Dynamic <2>
    XXXXXXXXX (+) <3>
    CombinedLOB (+)
    LOB1 (+)
    LOB2(+)
    HELP !!!!!!!!!!!!!!!
    Edited by: Next Level on Jul 8, 2012 9:45 AM

  • Weird Gnome-Terminal font issue

    So i reinstalled arch yesterday and i'm having a problem with font rendering in gnome-terminal. Some letters will disappear, leaving the i-beam.
    It only happens sometimes, and happened on my previous install, but i don't know what i did to fix it then.
    Here's what it looks like
    Not sure what's causing it. I've tried other fonts, and it still happens. Atm i'm using Droid Sans Mono and i have the ubuntu font patches. Though i was having the issue before with the lcd font patches.

    Knute wrote:I was a help desk technician for many years, and learned that sometimes the best question to ask was "Is it plugged in?"
    Me too.
    And since most of installing arch and DE's is handled by pacman and not the installation media, it seems kind of irrelevant.
    I'm thinking it has to do with compositing or Nvidia drivers.
    I'm also getting some rendering problems in firefox, if i switch tabs, the tab will switch but the page will not. And i'll have to keep switching back and forth to get the tab switched.
    I'm currently running kernel26-ice with the latest nvidia proprietary drivers. I guess i'll try without compiz and see how it goes...

  • MDX Issues

    Dear Fellow BWers,
    I have been trying to create MDX statements and am at a fairly advanced stage with the queries that I have written, however if any of you can supply me with answers to the following question I would be most grateful:
    1. Having looked at the usual suspects (help.sap.com, blogs, forums, etc. ) I have been unable to find comprehensive documentation on how to use Set Functions, Member Functions and Numerical Functions - is there any such documentation out there? I have tried using the documentation offered by MSDN however this seems different to the way SAP want you to use MDX.
    2. Is there any program/transaction/BAPI (other than MDXTEST / MDDataSetBW / MDDataProvider BW) where MDX statements can be created off the back of existing BEx Queries? Is there anywhere we can see MDX queries being executed in the database? I have several queries which will each need to be created as individual MDX statements.
    3. The specific problem that I am trying to solve is how to get the sum rows (as per results from BEx Query) to appear in my MDX statement. The furthest I have got is as follows:
    WITH MEMBER [Measures].[x] AS
         'AGGREGATE( {
           [Measures].[C8E071GV6C8ACC8HNJIAFQCZ7],
           [0CUSTOMER].[LEVEL01].MEMBERS } )'
    SELECT {
    [Measures].[C8E071GV6C8ACC8HNJIAFQCZ7],
    [Measures].[x]  }
    ON COLUMNS,
    NON EMPTY
    CROSSJOIN
       { [0SALESORG].[LEVEL01].MEMBERS },
       { [0CUSTOMER].[LEVEL01].MEMBERS }
    } ON ROWS
    FROM [CUBE/QUERY]
    However in this case the x column does not yield any results.
    Please advise on the next steps that I can take.
    Thanks in Advance,
    Saad.

    http://stackoverflow.com/questions/21463364/mdx-sub-select-vs-where-performance-issues
    no sense in leaving points on the table ;-)
    BI Developer and lover of data (Blog |
    Twitter)

  • Windows 2008 Terminal Server issue after swapping modem/router

    Hi, I have a problem I just can't crack.
    Windows 2008 Terminal Server, all patched and up to date. The IP Address is 192.168.1.11 (on a teamed intel controller). Terminal services enabled and working ok.
    TP-Link Modem 192.168.1.1, RDP Port forwarded ok.
    Set the Windows gateway to 192.168.1.1 and external access to RDP is not a problem.
    We had some modem speed issues, so we got a much faster connection, but it can't be used for incoming RDP, so left the TP-Link in place. So added a 3G modem at 192.168.1.5 and set that as the gateway.
    External RDP access still works perfectly, and now users have much faster internet.
    The TP-Link is giving some reliability issues, so I swapped it over for another modem, a Billion modem. Same 192.168.1.1 IP address, same port forwarding. External RDP access is no longer possible.
    Swap back to the TP-Link and everything is fine. Test the modem on another site, everything works as expected.
    If I set the gateway on the terminal server to 192.168.1.1 with the Billion attached then external RDP access is no problem. If I set it to 192.168.1.5 then it stops working again.
    I tried with a new TP-Link modem of the same model with exactly the same settings and this also had the same problem. External RDP access will only work the existing TP-Link modem, which is a problem as the modem appears to be faulty.
    It's almost like it hasn't worked out that it's a new network, and when Windows does that it seems to lock down RDP. That is only my assumption from experience of moving computers to new networks and RDP won't work until windows prompts you with the new
    network screen to select home, office or public.
    Has anyone experienced anything like this before or can shed some light on the problem?
    Thanks.

    Hi,
    How is the issue going now? Is there any update?
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • When I open terminal It issues /bin/bash; exit automatically

    When I open up a terminal window it issues an extra command
    /bin/bash; exit
    If I open up window settings and look at processes I can see that I have two bash shells running. This extra bash shell overwrites my aliases I have
    set up in my .profile file.
    I have looked and looked for an answer and I cannot seem to find one. I did not have this issue a few days ago. (I admit I have been doing some odd tweaks recently but I do not know how this happened).
    If I log in as another user on my system I do not have this extra bash shell. So whatever it is it seems to be linked to my account.
    Any help would be greatly appreciated.

    That was it. Just to detail what I did
    I went into
    patman/Library/Preferences/
    and removed com.apple.Terminal.plist
    I did look at the original and found a field
    ExecutionString that had the command in it!
    I decided not to mess with it and just deleted the entire
    file. Terminal recreated it when I started terminal again.
    Thanks a bunch this was driving me nuts for the
    past day.

  • Rolling12 MDX Issue

    I have a script that seems to be part of what I want for a Rolling12
    (SUM({LastPeriods(12-Count (PeriodsToDate ( [Time].LEVELS(0), [Time].CurrentMember ) , IncludeEmpty ), [Time].[Dec])}, [Year].[Prev Year]))
    The problem is that the above script seems to work for Jan->Curr Year, but for Feb:Dec, it sums both months for the Curr Year and Prev Year values. So if I want to view a Rolling12 for Feb->Curr Year, I would expect to get Jan:Feb->Curr Year + Mar:Dec->Prev Year. But instead I get Jan->Curr Year + Feb:Dec -> Curr Year + Feb:Dec -> Prev Year. Any try to doing a rolling12 in MDX yet? Thanks for any information
    My Outline is:
    Year
    -----Curr Year~
    -----Prev Year~
    Time
    -----YearTotal
    ----------Qtr1+
    ---------------Jan+
    ---------------Feb+
    ---------------Mar+
    Relative Time
    -----Current+
    -----YTD~(Formula: SUM(({PeriodsToDate(Time.Levels(2),Time.CurrentMember)})) )
    -----QTD~(Formula: SUM((PeriodsToDate(Time.Levels(1),Time.CurrentMember))) )
    -----SPPY~(Formula: Year.CurrentMember.Lag(-1)) )
    -----Prior Period~(Formula: Time.Currentmember.Lag(1) )
    -----Rolling12~
    -----Rolling6~

    I was able to figure this out...................thanks for any effort.
    JC

  • MDX Issue?

    Hi ,
    We are trying to integrate BW 3.1 with Cognos 8 and run the bex queries on Cognos Framework.
    Its been couple of days and we are getting this error. We tried running the query off of a cube, ODS, Infoset, Multicube but still the error persists.
    But the queries off of another standard cube works fine.
    The error is :
    Table Dump: 'MNDTRY_PRPTYS'
        Axis        = 255
        Start Tuple = 0
        End Tuple   = 0
        Entries     = 5
        [TUPLE_ORDINAL];[MEM_UNAM];[LVL_NUMBER]
        000000; [ZDSEQ].[All]; 00
        000000; [ZSEQ1].[All]; 00
        000000; [ZVAL].[All]; 00
        000000; [ZHSEQ].[All]; 00
        000000; [ZSEQ].[All]; 00
    >>> Error: GetCell
            Table  : MNDTRY_PRPTYS
        Handle : 2062df58
        Rows   : 5
        Cell   : 5 / 5
        ItGetLine failed !
        Requested row is outside of table range !
    >>> Error: BAPI Interface exception occured
            Error code 1
        Message ID -1649386957
    Can anyone please help me resolve this.
    Apparently, it appears that the MDX gets executed but ignores the variable and that might be causing the table to go out of range as it returns 700 values. But this is purely my guess.
    Thanks
    ~Sarah

    Hai,
    MDX is a language used to perform calculations and analysis around the OLAP structures. MDX includes a rich set of functions for 'performing' statistical analysis. Unlike SQL, MDX does not have DDL (Data Definition) and DML (Data Manipulation) capabilities. OLAP structures are defined and modified in XMLA (XML for Analytics). MDX is purely for analyzing and reading data.
    for Installation watch this
    [http://support.rolanddga.com/docs/Documents/departments/Technical%20Services/Manuals%20and%20Guides/RU_MDX-540%20Set_Up.pdf]

  • Terminal Applescript Issue...Please help if you can.

    I'm really stuck here. I've read several different things online to fix this script so it will see the path name correctly in Terminal but no luck. Any help would be greatly appreciated.
    The script is as follows.
    tell application "Terminal"
    do script with command " sudo /Volumes/Adobe CS3 Design Premium/AdobeCS3/Setup.app/Contents/MacOS/Setup --mode=silent --deploymentFile=/Volumes/Adobe CS3 Design Premium/AdobeCS3/deployment/liteinstall.xml"
    end tell
    Eric

    Your problem is that the command you're trying to run includes spaces.
    Spaces are used by the shell to delimit arguments, so when you say:
    script with command " sudo /Volumes/Adobe CS3 Design Premium/AdobeCS3/Setup.app/Contents/MacOS/Setup"
    The shell sees this as the command 'sudo' with four arguments - "/Volumes/Adobe", "CS3", "Design", and "Premium/AdobeCS3/Setup.app/Contents/MacOS/Setup". It's no wonder it doesn't work.
    You have a couple of options. One is to escape each of the spaces by preceeding them with a backslash. This tells the shell to treat the next character as a real character, not as a delimiter, e.g. "/Volumes/Adobe\ CS3\ Design\ Premium...". If you take this approach, though, you need to be aware that AppleScript also uses the backslash to escape characters, so you need to escape the backslash itself - the first one tells AppleScript to treat the second backslash as a literal, and so the shell sees the second backslash and can deal with the spaces:
    >do script "sudo /Volumes/Adobe\\ CS3\\ Design\\ Premium/AdobeCS3/Setup.app/Contents/MacOS/Setup --mode=silent --deploymentFile=/Volumes/Adobe\\ C3\\ Design\\ Premium/AdobeCS3/deployment/liteinstall.xml"
    The other option is to use the 'quoted form of' a string. 'Quoted form' takes a string and makes it shell-safe:
    <pre class=command>tell application "Terminal"
    set myCommand to "/Volumes/Adobe CS3 Design Premium/AdobeC3 blah blah blah"
    do script "sudo " & quoted form of myCommand
    end tell</pre>
    Depending on what else you're doing, you might also find it easier to eschew the Terminal altogether and just run the command directly via 'do shell script', but the same caveats apply.

  • Short dump while executing APD

    Hi Experts,
                      We have a requirement to populate key and text values for 23 charecterstics in to a flat file. For this we have created a APD with query as source, This query will bring key values. And text values are populated using APD routine which will look up respective text tables and all the result data is downloaded in to a flat file.
    When testing this APD i have come across a short dump, as all the charecterstics are placed in rows. Then i have applied static filters in the query for some of charecterstics and executed the APD. It worked. But if try to execute APD with no filters in the query it gives me short dump. Request you to suggest strategy which will avoid the short dump and improve the performance, where i can display all the 23 charecterstics key and text values.
    Thanks in advance.

    Hi Javed
    Here are couple of things what you can try
    - You can apply filters in the APD and split the data into small chunks and later collate the data into one final file, this can be done by decisions in APD
    - There is a difference how you have created your query and applied the filters/restrictions,In case of 7x queries none of the filters should be in Default tabs and all of them should be in Filters tab only
    - From my previous experiences I have seen that at times you add a dummy "Filter" type be applied in APD to avoid such issues, so give this a try as well
    Thanks
    Abhishek Shanbhogue

  • The Ultimate Guide to Resolving Profile and Device Manager Issues

    The following article also applies to issues after re-setting the severs' hostname. It also applies to situations where re-setting the Code Signing Certifictateas described by Apple has not resolved the issue.
    Hello,
    I have been plagued with Profile Manager and Device Manager issues since day one.
    I would like to share my experience and to suggest a way how to resolve issues such as device cannot be enrolled or Code Signing Certificate not accepted.
    I shall try to be as brief as possible, just giving an overview of the steps that resolved my issues. The individual steps have been described elsewhere in this forum. For users who have purchased commercial SSL certs the following may not apply.
    In my view many of these issues are caused by missing or faulty certificates. So let us first touch on the very complex matter of certificates.
    Certificates come in many flavours such as CA (Certificate Authority), Code Signing Certificate, S/MIME and Server Identification.
    (Mountain?) Lion Server creates a so-called Intermediate CA certificate (IntermediateCA_hostname_1") and Server Identification Certificate ("hostname") when it installs first. This is critical for the  operation of many server functionalities, including Open Direcory. These certs together with the private/public keys can be found in your Keychain. Profile  and Device Manager may need a Code Signing Certificate.
    The most straightforward way to resolve the Profile Manaher issues is in my view to reset the server created certicates.
    The bad news is that this procedure involves quite a few steps and at least 2 hours of your precious time because it means creating a fresh Direcory Master.
    I hope that I have not forgotten to mention an important step. Readers' comments and addenda are welcome.
    I shall outline a sensible strategy:
    1. Clone your dysfunctional server to an external harddrive (SuperDuper does a reliable job)
    2. Start the server fom the clone and shut down ALL services.
    3. It may be sensible to set up a root user access.
    4. Back-up all user data such as addess book, calendar and other data that you *may* need to set up your server.
    5. Open Workgroup Manager and export all user and workgroup accounts to the drive that you using to re-build your server (it may cause problems if you back-up to an external drive).
    6. Just in case you may also want to back-up the Profile Manager database and erase user profiles:
    In Terminal (this applies to Lion Server - paths may be diferent in Mountain Lion !)
    Backup: sudo pg_dump -U _postgres -c device_management > $HOME/device_management.sql
    Erase database:
    sudo /usr/share/devicemgr/backend/wipeDB.sh
    7. Note your Directory (diradmin) password for later if you want to re-use it.
    8. Open Open Server Admin and demote OD Master to Standalone Directory.
    9. In Terminal delete the old Certificate Authority
    sudo rm -R /var/root/Library/Application\ Support/Certificate\ Authority/
    This step is crucial because else re-building you OD Master will fail.
    9. Go back to Server Admin and promote the Standalone Directory to OD Master. You may want to use the same hostname.
    10. When the OD Master is ready click on Overview and check that the LDAP and Keberos Realm reflect your server's hostname.
    11. Go back to Workgroup Manager and re-import users and groups.
    NOTE: passwords are not being exported. I do not know how to salvage user passwords. (Maybe passwords can be recovered by re-mporting an OD archive - comments welcome! ).
    12. Go to Server App and reset passwords and (not to forget) user homefolder locations, in particular if you want to login from a network account!
    If the home directory has not been defined you cannot login from a network account.
    13. You may now want to restore Profile Manager user profiles in Terminal. Issue the following commands:
    sudo serveradmin stop devicemgr
    sudo serveradmin start postgres
    sudo psql -U _postgres -d device_management -f $HOME/device_management.sql
    sudo serveradmin start devicemgr
    14. You can now switch back on your services, including Profile Manager.
    In Profile Manager you may have to configure Device Management. This creates a correct Code Signng Certicate.
    15. Check the certificate settings in Server App -> Hadware -> Settings-> SSL Certificates.
    16. Check that Apple Push Notifications are set.(you easily check if they are working later)
    17. You may want to re-boot OS Server from the clone now.
    18. After re-boot open Server App and check that your server is running well.
    19. Delete all profiles in System Preferences -> Profiles.
    19. Login to Profile Manager. You should have all users and profiles back. In my experience devices have to be re-enrolled before profiles can be pushed and/or devices be enrolled. You may just as well delete the displayed devices now.
    20. Grab one of your (portable) Macs that you want to enrol and go to (yourhostname)/mydevices and install the server's trust profile. The profile's name  should read "Trust Profile for...) and underneath in green font "Verified".
    21. Re-enrol that device. At this stage keep your finger's crossed and take a deep breath.
    22. If the device has been successfully enrolled you may at last want to test if pushing profiles really works. Login to Profile Manager as admin, select the newly enrolled device. Check that Automatic Push is enabled (-> Profile -> General). Create a harmless management profile such as defining the dock's position on the target machine. (Do not forget to click SAVE at the end - this is easily missed here). If all is well Profile Manager will display an active task (sending) and the dock's position on the target will have changed in a few seconds if you are on a LAN (Note: If sending seems to take forever: check on the server machine and/or on your router that the proper ports are open and that incoming data is not intercepted by Little Snitch or similar software).
    Note: if you intend to enrol an Apple iPhone you may first need to install the proper Apple Configuration software.
    Now enjoy Profile and Device Manager !
    Regards,
    Twistan

    HI
    1. In Action profiles, logon to system and recheck correcion are available in action definition as well in condition configuration and the schedule condition is also maintained. but the display is not coming(i.e in the worklist this action is not getting displayed).
    You can check the schedule condition for the action and match the status values...or try recreating the action with schedule condition again....for customer specific ....copy the standard aciton with ur zname and make a schedule condition and check the same.
    2, In suppport team of incident when i give individual processor it throwing a warning that u r not the processor. but when i give org unit it is working perfectly. Could anyone guide on this.
    You need to have the empolyee role for BP ..goto BP and got here dropdown for ur bp and choose role Employee and then enter ur userid
    also make sure that u have the message processing role
    Hope it clarifies ur doubt and resolve ur prob
    Regards
    Prakhar

  • Field explorer does not open on my terminal services profile

    Dear Sirs,
    For some reason I am unable to open my field explorer in any crystal report on my terminal services profile. I have checked with other profiles and the problem does not exist. The problem is specific to my profile. I can also create new reports and access fields however if I use the filed explorer button I cannot access fields, parameters or formulas from there. Problem just started this morning. We have been using crystal reports X1 for last 12 months. Would it be a terminal server issue?
    I would appreciate whatever help you can give me.
    Regards,
    Philip Brady
    Finance Director
    National Electrical Wholesalers (Irl) Ltd

    Hi Philip
    This can be an issue with the terminal server that you are using. Please refer to the Crystal Reports XI supported platforms guide if the server that you are using is supported or not.
    You can download the guide from the below link:
    [download CR XI supported platforms guide|http://www.2shared.com/file/4065156/f2ef25e1/cr_xi_supported_platforms.html]
    Hope this helps!!
    Regards
    Sourashree

Maybe you are looking for

  • How to calculate the volume of data used (PI licensing limit).

    Hi, One of our customers has several interfases running on SAP PI. They have a license that allows them the use of PI for a quantity of Gb in message data per month (I think that's the usual way). They would like to know how near/far they are of thei

  • Currency validation

    Can anyone please help me to validate a currency input from the user, like it should not accept 1,0,0,0,0.00. appreciate your kind help......

  • Logging in to my home wifi?

    I am a new customer. My exoert friend logged me in a a hot spot (restaurant) yesterday and I got 10 emails.  I am now home and can't seem to get the new emails on my ipad since the 10 yesterday.  How do I ?

  • Configuring Oracle Text for 10g

    Hello, Sorry, it this sounds like such a newbie question, but is there is a simple guide to the basic configuration and setup of Oracle Text for 10g? Thank you for your help.

  • Tracking Interactions

    I am trying to configure a scored simulation so that if the learner performance an incorrect action, they do not receive credit for the point(s) assigned to the associated interaction. I am working with click boxes and the issue I'm having is that if