Suppressing using GroupName

Post Author: jalmeida
CA Forum: Formula
I have a report that is made up of two groups; grouper 1, then grouper 2. I supress the details section, and group footers. The report is being used as table of contents(sub report) at the beginning of my main report. When this report is run there is always a set amount of groupnumbers (grouper 2) that I want on the page: 30. The reason I do this is so I can use two of these reports to appear as columns, and the gh2 data corresponding to its gh1 is not split between the two pages. Unfortunately, every now and again when the data is read in two grouper 2's are not included, because they don't exist; therefore I want to suppress  if groupnumber > 28 instead of when groupnumber > 30. Here is a picture of what I am talking about:
The highlighted numbers on the left represent groupnumber which is there only for formatting purposes.
I have tried the following formula with no luck:
If GroupName ({TOCBatch.Grouper1}) = "BondEdge Reports" thengroupnumber > 28elsegroupnumber > 30
Please Help!

by restricting authorizations? check object M_MATE_STA whether this fullfills your requirements.

Similar Messages

  • Conditional suppression using substitution variable in Hyperion financial r

    Hi all,
    Is there a way that I can suppress a column using substitution variable in hyperion financial reporting?
    For eg, i want to suppress the column if the value of the substitution variable curr_mnth = jun.
    Is there a way to do this? In conditional suprression dialog box, I dont find this option.
    Please suggest.
    Your response is appreciated.
    Thanks,
    Sirisha.

    Hi Sirisha
    In my earlier reply I think I may have mislead you as I thought that you could set the member name equal to that in a row/column and I've managed to get into a HFR studio session this morning and realised that the conditional suppression only allows you to suppress where member name = 'XXX' (specific text) so that doesn;t meet your requirement.
    Different people will have different ways of achieving what you want and everyones requirements are different. If it helps my preferred way of conditionally suppressing periodic data (for Planning/Essbase) is to add a dynamic calc account member called 'TP-Index' into the database, set up a formula so that each period returns a numeric value from 1 to 12 to match the fiscal/calendar year as required.
    Then in reporting bring the account and period dimensions into rows/columns so that you are able to retrieve data for the TP-Index account and the period as defined in your substitution variable. You can then choose how the suppression works based on a numeric value, commonly you may want to suppress if greater than, e.g. you have a multi-period report where your actual data is to June so you want to suppress everything from July onwards.
    I'm sure that a similar thing could be achieved in HFM as well if that is your underlying system instead of Essbase.
    Does that help?
    Stuart

  • Suppress embedded field blank lines in Crystal Reports XI is not working

    Hi,
    We have a text box in a Crytal Reports XI report which has address information in it as follows:
    These are individual fields from the database. We check the  "suppress embedded field blank lines" option for the text box and preview it in the designer and the suppression works as expected in that when the unit field is blank the whole address line isn't suppressed. However when we run this report using the Report Viewer control in a VB.NET 2005 application the whole address line is suppressed when the unit field is blank.
    This appears to be a bug in the suppression logic when the Report Viewer is used to view a report. While yes we can embed a formula into the address line this adds extra maintenance and confusion which is not necessary as it works as expected in the report designer.
    I have seen others which are having a similiar issue and the only suggestions are to create your own suppression using formulas, etc. which is only a bandaid and is not the best solution as the suppression works as stated in the designer but not in the viewer embedded in an application. Please indicate if this is a known bug and if this issue has been addressed and fixed in a new merge module.
    We are running Crystal XI 11.5.0.313 for the report designer and have deployed the needed dlls to run the reports with our application using the CrystalReports11_5_NET_2005.msm merge module.
    Thanks in advance for any assistance in resolving this issue!

    Hello,
    Moved to .NET SDK forum.
    Upgrade to XI R2 SP 6, you are using the original release:
    https://smpdl.sap-ag.de/~sapidp/012002523100011802732008E/crxir2_sp4_full_build.exe
    https://smpdl.sap-ag.de/~sapidp/012002523100015859952009E/crxir2win_sp6.exe
    And the distribution files are for Visual Studio version of Cr, not R2 build.
    https://smpdl.sap-ag.de/~sapidp/012002523100013451312010E/crxir2_fp64_server_ins.zip
    Or
    https://smpdl.sap-ag.de/~sapidp/012002523100013451332010E/crxir2_fp64_net_mm.zip
    Don

  • Extended code check Warning : Do not use fields, field symbols globally

    Hello,
    During extended code check of a program, i get 20 related warnings
    Do not use fields, field symbols (GT_UPDTAB) globally                         
    Can be suppressed using pragma ##NEEDED (or pseudo comment "#EC NEEDED)               
    How can i correct this?
    The declaration and usage is as follows :
    DATA: BEGIN OF GT_FIELDTAB OCCURS 0.
            INCLUDE STRUCTURE DD03P.
            INCLUDE STRUCTURE CEFLD.
    DATA: END OF GT_FIELDTAB.
    GT_FIELDTAB-CONVEXIT = 'ALPHA'.
    How can i correct this?
    Regards,
    Remi

    Hi,
    refer this link
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/frameset.htm
    and general declaration if field symbol:
    this will be very general:
    FIELD-SYMBOLS : <gf_table> TYPE ANY TABLE.
    or
    to do like a specific table from your program
    FIELD-SYMBOLS : <gf_table> TYPE itab.
    thanks & regards.

  • Get the tab page that the mouse clicked on using PLSQL

    Another canvas related question ...
    Is it possible to detect the tab page that the mouse clicked on
    from within a WHEN-MOUSE-DOUBLECLICKED trigger,
    SYSTEM.MOUSE_CANVAS returns the name of the tab canvas.
    However, I need the name of the tab page within the tab canvas
    thanks
    Scott

    resolved - thanks
    resolution notes follow:
    ========================
    I forgot to mention that I dont know the type of canvas at runtime,
    so the code needs to work for tab and non-tab canvases
    Unfortunately, calling TOPMOST_TAB_PAGE for a non-tab canvas results in an
    error that can only be suppressed using an ON-ERROR trigger
    (SYSTEM.MESSAGE_LEVEL wont supress it, nor will EXCEPTION)
    anyway, I resolved this via another related post that I raised today.
    "Determining canvas type using PLSQL"
    thanks anyway.

  • Determining canvas type using PLSQL

    Is it possible to determine the canvas type at runtime ?
    I have a canvas name or canvas id.
    I want to find out if the canvas is a content, stacked or tab canvas
    Somre more info ....
    Tab canvas is my biggest problem right now.
    I tried detecting it by using GET_CANVAS_PROPERTY (..., TOPMOST_TAB_PAGE) thinking that if it returned NULL or raised an error I could use that to determine that it was not a tab canvas. However, this raises an error that I can only suppress using an ON-ERROR trigger which is not a good solution (I am hoping to imlement a solution within a single function)
    Any ideas ?
    thanks

    thanks everyone - I managed to resolve this by simplifying my requirements
    Francois tip lead my to the resolution.
    I only needed to detect if a canvas is one of the following
    1) a tab canvas
    2) a non-tab canvas
    I wrote a function to detect if a canvas is a tab canvas. The function loops through all items in the form and return TRUE if it finds an item on the canvas that also has GET_ITEM_PROPERTY (... ITEM_TAB_PAGE ) IS NOT NULL
    P.S I cant rely on the canvas naming standard as this is an existing app with inconsistent canvas names.
    thanks for ideas.

  • Invoke-Command and $using:ACL problem

    Hi,
    Can anyone point me in the right direction.
    I want to modify and ACL on a remote server, but i cannot assign a variable inside the invoke-command where i'm also refferencing an local variable.
    When the first invoke-command is ran i get an error:
    A Using variable cannot be retrieved. A Using variable can be used only with Invoke-Command, Start-Job, or InlineScript
    in the script workflow. When it is used with Invoke-Command, the Using variable is valid only
    if the script block is invoked on a remote computer.
    $DriveFunctionDirectoryStructure="z:\projects\1"
    Invoke-Command
    -Session$s-ScriptBlock{$acl=get-acl$using:DriveFunctionDirectoryStructure}
    Invoke-Command
    -Session$s-ScriptBlock{$acl.SetAccessRuleProtection($using:True,$using:ToggleAccessRuleFlag)}
    Invoke-Command
    -Session$s-ScriptBlock{Start-Sleep-Seconds5}
    Invoke-Command
    -Session$s-ScriptBlock{$rule=New-ObjectSystem.Security.AccessControl.FileSystemAccessRule("localdomain\$using:groupName","$using:AccessOption","ContainerInherit,
    ObjectInherit","None","Allow")}
    Invoke-Command
    -Session$s-ScriptBlock{$acl.AddAccessRule($rule)}
    Invoke-Command
    -Session$s-ScriptBlock{Set-Acl$using:DriveFunctionDirectoryStructure$acl}

    Hi RFalken,
    you can use the -ArgumentList parameter of Invoke-Command like this:
    $script = {
    Param (
    $Parameter1,
    $Parameter2
    Invoke-Command -ScriptBlock $script -ArgumentList @(2,42)
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • Using OUI for installing custom products

    Hi All,
    I want to use OUI to install a custom product that I have developed. So i have some doubts regarding that...
    1. Can OUI be pointed to a new Products.xml file which contains the details of the new product installation.
    2. Is there some link, documentation, APIs to do that?
    Any sort of help is appreciated as it is crucial...
    Thanks,
    SaurabhS

    HI user784664
    I'm afraid that you can't do that. Products.xml can be use to perform silent installed, When prompted by OUI, locate products.xml in the installation source directory:
    i.e connectors/framework/10.2.0.2/1.0/source/Disk1/stage
    Oracle Universal Installer to install Oracle products in any of the three following modes:
    * Interactive:
    Use OUI's interactive mode to use the graphical user interface to walk through the installation, providing information in the installation dialogs when prompted.
    This method is most useful when installing a small number of products in different setups on a small number of machines
    * Suppressed:
    Use OUI's suppressed mode to supply the necessary information by using a combination of a response file or command line entries with certain interactive dialogs. You can choose which dialogs to suppress by supplying the information at the command line when you invoke OUI. This method is most useful when an installation has a common set of parameters that can be captured in a response file, in addition to custom information that must be input by hand.
    * Silent:
    Use OUI's silent installation mode to bypass the graphical user interface and supply the necessary information in a response file.This method is most useful when installing the same product multiple times on multiple machines. By using a response file, you can automate the installation of a product for which you know the installation parameters.
    Herewith the detailled documentation about OUI:
    http://download.oracle.com/docs/cd/B19306_01/em.102/b16227/toc.htm
    But may be a request via metalink it should be possible to get more details about that question. Oracle is using the OUI API for Grid controller, CRS, ASM and RDBMS so why not with your product.

  • Group Tree Blank key suppressing

    Is it possible to suppress the blank key value from a Group Tree when this key is intentionally suppressed using customizable option? This blank key is appearing in the Group tree as a separate node.
    Appreciate any help.
    - Jayakrishnan

    Thanks for your reply,
    Actually the blank node in the group tree appears due to a group added for implementation. This Group key is not needed in the tree. Can we keep the additional group and rid of its node from the tree ?
    Thanks again for your thoughts
    -Jayakrishnan

  • Issues fixed in FM 7.1 release

    Adobe FrameMaker 7.1 for English, French and German was released on January 10, 2004. The following is a list of issues fixed in this release.
    250374
    FDK: FA_Note_PreSetAttrValue notification not sent for new elements. If a client subscribes to FA_Note_PreSetAttrValue events, it will get a notification when one changes an attribute by double clicking it in the Structure view. However, on creation of a new element through the element catalog, if an attribute is set, no notification is sent.
    This issue has been resolved.
    277554
    FDK: F_ApiUnStraddleCells() does not work as expected.
    When unstraddling cells through the API, all the cells except the leading cell have no paragraph end marks (they are completely empty). Clicking into such cells takes the text cursor to the location of the table anchor. Inserting a character into the paragraph with the table anchor seems to correct the table.
    This issue has been resolved.
    310049
    FDK: F_ApiImport shows a dialog upon import of SGML entities.
    When importing an SGML fragment by reference using F_ApiImport, FrameMaker displays a dialog asking whether the text inset should be updated automatic or manually. This setting should be controlled from import-parameters.
    Currently there is no way of creating a client that imports a large number of SGML text-insets without having a user sitting by the keyboard and clicking OK for each imported entity.
    This issue has been resolved.
    314764
    FDK: F_ApiDelete does not work properly on elements inside a TextInset. When you try to delete an element that is part of a TextInset, the whole TextInset is removed.
    The work around for this is to unlock the text before calling F_ApiDelete and to lock the text after this call. The calls to unlock and lock the text are given below:
    To unlock - F_ApiSetInt(docId, insetId, FP_TiLocked, False);
    To lock - F_ApiSetInt(docId, insetId, FP_TiLocked, True);
    387821
    Microsoft Intellimouse Scroll wheel locks up FrameMaker when it's pressed or scrolled.
    This issue has been resolved.
    408675
    Rotated PDF files do not appear on 24-bit or 32-bit displays.
    This issue has been resolved.
    463533
    Non-unique ID tags cause inconsistent hypertext links due to multiple entries in the HTML export. If there are conflicting IDs in different documents of a book, non-unique ID tags are generated which cause this behavior.
    This issue has been resolved.
    507486
    If you edit the MAKER.INI file by adding the line SplashScreen=Off, in the [Preferences] section, then the Help->About command crashes FrameMaker with Internal Error: 7004, 6048898, 7639747, 0
    This issue has been resolved.
    529757
    (don't include) Marker element gets included and merged in PDF bookmarks with previous heading. In FrameMaker 6.0, the document prints to PDF as expected--the bookmarks in Acrobat PDF contain the Section2/Heading as expected, such as:
    Spark Plug Threads
    and Lamp Base and Electrical Fixture Threads
    In FrameMaker 7.0, the document prints to PDF with the Section2/Heading merged with the Run.head marker element, even though Run.head is in the ''Don't include'' list of elements in the PDF Setup dialog box.
    This issue has been resolved.
    534856
    The value of DPDFOpenBookmarkLevel is ignored when read in a MIF file.
    This issue has been resolved.
    534865
    The values Default, All, and None of the ''Bookmarks expanded through level'' field (in Format > Document >PDF setup) are not retained when a FrameMaker document is saved and opened again.
    This issue has been resolved.
    535630
    Windows Metafile (wmf) graphic (created from Microsoft VISIO 2002) causes "an error occurred while printing" but partially prints.
    This issue has been resolved.
    537955
    ISOdraw CGM graphics and tables on the same page cause CGM stroke lines to be printed in White.
    This issue has been resolved.
    540408
    Inconsistent dialog behavior between FrameMaker 6.0 and FrameMaker 7.0 when opening filename.sgm. Unlike FrameMaker 6.0, FrameMaker 7.0 displays the Unknown Filetype dialog.
    This issue has been resolved.
    540417
    Inconsistent dialog behavior between opening filename.sgm and filename.sgml.
    This issue has been resolved.
    541912
    TaggedPDF:fmpdfreflow plug-in - display of PDF file not good for shaded table cells. When table cells have shading in them, the PDF file does not show all the content of the shaded cells. This happens on Windows only.
    This issue has been resolved.
    565678
    PDF generation on UNIX translates CMYK colors to RGB.
    This issue has been resolved.
    567784
    FP_InsetFile has a value of "BadFileName" when SGML importing misses a graphic data file. If you import an SGML file that would read external graphic files and these data files are missing, then skipping or ignoring them results in "BadFileName" pathname for each object property. This makes FDK API Client not get FP_InsetFile property value for the FO_Inset object.
    This issue has been resolved.
    569092
    FrameMaker7 server can't find default printer when launched as a service.
    This issue has been resolved. To suppress the errors during initialization e.g.. No Default printer, invoke FrameMaker with the -silent option.
    569969
    When the Paragraph Designer is open, you can't switch to open documents using the book window.
    This issue has been resolved.
    581376
    FrameMaker works very slowly or returns an internal error. When processing a document that includes many EPS image files, FrameMaker creates many FRMxxxx.tmp files in the C:\Documents and Settings\Account Name\Local Settings\temp\ folder. The xxxx is a hexadecimal number. Even after quitting FrameMaker, the FRMxxxx.tmp files are NOT deleted, and the same document creates different FRMxxxx.tmp files after being opened again. The template files pile up in the hard disk for the Account/user, until the xxxx reaches ffff, the maximum number for the 4 digits of a hexadecimal number. At or near this time, FrameMaker works very slowly or stops with internal error:7004,6643018,6765315,6712018.
    This issue has been resolved.
    581522
    Imported PDF document with transparencies does not print correctly.
    This issue has been resolved.
    584633
    Internal Error: 7004, 6055410, 7657059, 0 when saving/printing to PDF includes Bookmarks that include index elements. The crash occurs only on Windows. The problem occurs when you attempt File > Print to PDF, when you want to Generate PDF Bookmarks based on structure elements, and have the ''Sectlevel1'' element in the ''Include Elements'' pane, and that particular ''Sectlevel1'' element plus the length of the text in the index marker entries exceeds 256 characters.
    This issue has been resolved.
    589859
    Post installation of Distiller 6.0, .tps file gets retained along with PDF and log file.
    This issue has been resolved.
    592974
    Opening a large XML file in FrameMaker generates error 'Internal Error 7004, 6052770, 0....
    When an XML file contained more than 65520(FFF0) children elements, FrameMaker crashed.
    This issue has been resolved.
    595875
    Spell check skips elements, loops around elements, or gets completely stuck.
    This issue has been resolved.
    597276
    The Save as PDF command does not create a PDF file (for certain files) when Generate Tagged PDF is ON
    This issue has been resolved.
    598056
    Group4 fax encoded TIFF files imported in FrameMaker 7.0 don't display nor print--does not occur in previous versions.
    This issue has been resolved.
    600053
    Display/Scrolling performance is very slow with documents having TIFF images imported by copy.
    This issue has been resolved.
    600497
    Scrolling a document in FrameMaker using Page Up/Down button goes to previous/next page respectively. Scrolling a document using Page Up and Page Down button goes to the previous and next page respectively. User would expect to scroll to the previous/next screen instead of going to previous/next page using these buttons, as seen in other Windows applications like MS Word, etc.
    This issue has been resolved.
    601470
    Links being dropped in SVG filter. Import an SVG file by reference (and the imported file has a link to another SVG file). Save this and reopen; the referenced SVG file is missing.
    This issue has been resolved.
    603668
    The text in the markers gets included in the PDF Bookmarks. Do not include textual content of marker elements, such as Index markers. This is because if you do, the Acrobat bookmarks can appear created if the element has:
    where Indexterm contains the marker text:
    <$startrange>PDF Creation;<$endrange>PDF:Good;How To:Create Good PDF
    ... You will end up with an Acrobat Bookmark containing:
    How To Create <$startrange>PDF Creation;<$endrange>PDF:Good;How To:Create Good PDFGood PDF ... which is not desirable.
    This issue has been resolved.
    606704
    In Server Setup dialog box, user name of the form "domain\username" does not allow names starting with b, r, etc. While trying to get FrameMaker to talk to the WebDAV server, which is using Windows authentication, when we specify a user name of the form "domain\username" in the "Server Setup" dialog box (File | Workgroup | Workgroup Servers ...). For some user names this works; for others it doesn't.
    This issue has been resolved.
    607610
    Framemaker crashes when Print is selected twice from the context menu for a book.
    This issue has been resolved.
    610099
    Drop Caps are not imported as TextFrames (RTFImport).
    This issue has been resolved.
    610600
    Words on which cross references are created are getting dropped while importing doc file (Word2000Import). Create a cross reference on some word in MS Word, and import the doc file into FrameMaker. The word on which the cross reference is created is getting dropped.
    This issue has been resolved.
    611165
    Words on which cross references are created are getting dropped while importing rtf file (RTFImport). Create a cross reference on some word in MS Word, and import the rtf file into FrameMaker. The word on which the cross reference is created is getting dropped.
    This issue has been resolved.
    611802
    Text which is rotated is lost when exporting to RTF.
    This issue has been resolved.
    611900
    FrameMaker locks referenced files until the application closes.
    This issue has been resolved.
    613546
    The filter name in the unknown file type for import is Microsoft RTF whereas for Export it is Microsoft RTF 1.6.
    This issue has been resolved.
    616153
    Contents of anchored frames not visible after save as PDF with Tags. After saving a document with anchored frames as PDF with Tags enabled, the contents of the frame are not visible in the PDF generated.
    This issue has been resolved.
    624470
    footnote element mapping to Frame Footnote is commented in Rules defined for XDocBook. In application definition of XDocBook in $FMHOME/structure/xml/xdocbook/app, footnote element mapping is to FM Footnote element. However, this rule is commented since past few releases. As a result, any (xdocbook) XML document with footnote is shown as invalid in FrameMaker.
    This issue has been resolved.
    624472
    Revision remark (revremark) element is mapped to different element names in EDD and rules. Rules for XDocBook in $FMHOME/structure/xml/xdocbook/app translate revremark to RevRemark. However, EDD (ECM) defines Revremark as mapping for revremark element. Hence a valid xdocbook XML document with revremark is shown as invalid (with unknown RevRemark element) in FrameMaker.
    This issue has been resolved.
    624517
    Unable to open FrameMaker 7.0-created fm file, which is created by importing a Word document.
    This issue has been resolved.
    625306
    Office documents don't open in FrameMaker in absence of write permissions (UNIX).
    This issue has been resolved.
    626431
    For line spacing, values that are beyond range are not mapped correctly (RTFExport). For line spacing in frame document which are beyond the max or min range of RTF, the mapping is not correct and same value of line space I mapped to three different values in RTF.
    This issue has been resolved.
    626434
    For stretch, values that are more than 600 are not mapped correctly in RTF (RTFExport). For stretching in frame doc that are beyond max value in RTF (600), the mapping is not correct. There is no stretching (scaling in RTF) in effect in exported RTF for values greater than 600 specified in frame.
    This issue has been resolved.
    626450
    Current date and time are not getting exported properly and are coming as 0's and XXX (RTFExport).
    This issue has been resolved.
    627855
    After saving as PDF, headings are centered in reflow mode. After a particular file is saved as a PDF file and is viewed in reflow mode in Acrobat, the headings are centered.
    This issue has been resolved.
    631967
    Installer does not recognize existing installation.
    This issue has been resolved.
    633133
    Right indents are not mapped while importing Excel
    This issue has been resolved.
    633137
    Data in the Custom formatted cell is lost while importing excel sheet.
    This issue has been resolved.
    633462
    FrameMaker terminates while exporting to RTF.
    This issue has been resolved.
    633710
    You have to give a filename with extension, while saving a file to RTF.
    This issue has been resolved.
    638750
    A PS file generated from FrameMaker with Tagged PDF on and hypertext marker in the file, cannot be distilled to PDF
    This issue has been resolved.
    638824
    Dialog Box indicating Unsaved changes made to file is not displayed on closing a document after importing an image using drag and drop.
    This issue has been resolved.
    639220
    If you select a Master Page or a Reference Page and select Save as PDF, PDF generation fails without giving appropriate error message.
    This issue has been resolved.
    641918
    When converting a FrameMaker book to PDF: default opening page in PS/PDF may be incorrectly set to be the first page of last chapter in a book.
    This issue has been resolved.
    642765
    On drag and drop of a SVG file into FrameMaker, if you click on the cancel button on the Import SVG dialog, the cancel is ignored and the file is imported.
    This issue has been resolved.
    643092
    If United Kingdom is chosen as the country of purchase, the EULA contains the string "FrameMakerDesktop _USEnglish_1.21.02_17:29".
    This issue has been resolved.
    644158
    Following alerts can not be suppressed via command line option:
    . Register now/later/never
    . Adobe Online
    These can be now suppressed using the -noaol command line option or by using the DisableAdobeOnline=On option in the maker.ini file.
    644904
    An empty merged cell(256 columns) created in Excel imports as a blank file.
    This issue has been resolved.
    645230
    If you import a Word document having large number of footnotes in FrameMaker, the footnotes are overlapped.
    This issue has been resolved.
    645538
    Cross reference text when exported to RTF has an additional space after the cross reference text.
    This issue has been resolved.
    645863
    When an excel file containing cells applied with custom formatting is imported in FrameMaker, the font and color of these cells is different in FrameMaker.
    This issue has been resolved.
    646609
    When a specific excel file is being imported the data in the first cell is lost.
    This issue has been resolved.
    646676
    When saving a MIF file, then opening it in FrameMaker, the DPDFZoom settings are lost.
    This issue has been resolved.
    647770
    User defined variables with _ in their name when saved to xml and opened again in Frame, round-trip as fmv1, fmv2 ...
    This issue has been resolved.
    648043
    When you try to open/import a file with a name containing more than two % signs and at least 1 non-% character between the second and third % sign then FM gives an error saying the file is non-existent
    This issue has been resolved.
    648114
    Info>Copyright>More crashes FrameMaker
    This issue has been resolved.
    648434
    When you import an RTF file with a cropped image in FrameMaker, it is imported in its original uncropped form.
    This issue has been resolved.
    649640
    When a word document having text with decimal numbering is imported, the sub points (1.1,1.2,...) are imported as (0.1,0.2,..)
    This issue has been resolved.
    650631
    When you import a word document having numbering points with comment on each numbered point, the font size of the numbering point is reduced.
    This issue has been resolved.
    650962
    FrameMaker crashes on scaling any anchored frame on reference pages.
    This issue has been resolved.
    652229
    When you import a word file with ascending raised/lowered baselines then they are not imported correctly.
    This issue has been resolved.
    652433
    When you import an excel file containing date formatting having mm format, FrameMaker inserts an extra zero before the date.
    This issue has been resolved.
    652752
    If you install FrameMaker from network, the short cut to readme file opens it in notepad.
    This issue has been resolved.
    652794
    The alert Inconsistent settings in Book" during F_ApiSilentPrintDoc() can not be suppressed.
    This issue has been resolved.
    654309
    When you import a word document having numbering (1.1,1.2,..) placed after some non-decimal numbering(1,2,3), FrameMaker imports it as (3.1, 3.2,..).
    This issue has been resolved.
    654348
    When you save an inline image as .doc in Acrobat6 and import this word file in FrameMaker, FrameMaker enlarges the graphics on import.
    This issue has been resolved.
    655072
    When you have an user defined variable in the frame document as well as the template, you save this document as XML and open the XML file again in frame, the template definition overrides that of the document.
    This issue has been resolved.
    655726
    Full license number is displayed in the Help>About FrameMaker 7.0 screen.
    This issue has been resolved.
    656171
    Full license number is displayed in the FrameMaker 7.0 Splash screen.
    This issue has been resolved.
    656820
    If you zoom or move frames after importing a graphic in FrameMaker, Framemaker logs out the user from Unix machine.
    This issue has been resolved.
    657053
    If a frame document displays images from the reference page and you simultaneously open multiple such documents, then the images from the document opened first can replace the images in the other documents
    This issue has been resolved.
    658744
    If you open an XML file locked by some other application, FrameMaker shows a Validation Error dialog box. For this to work, the XML locking feature should not be switched off.
    This issue has been resolved.
    658749
    The German version of Online manual xmlcss.pdf has comments in it.
    This issue has been resolved.
    Known Issues
    The printed user guide, on-line help and QRCs will not change between the FrameMaker 7.0 release and FrameMaker 7.1. Certain online manuals will be updated, and a new online supplement will be added to cover user documentation of the new release.
    [Original message from Forrest_F accidentally deleted when Forum re-organized]

    Read this SAP Note - Note 1487853 - SAP NetWeaver MDM 7.1 SP07 Release
    or refer the link
    http://help.sap.com/saphelp_mdm71/helpdata/en/4d/885f32b97d14aee10000000a42189c/content.htm
    Similaryly read for SP06 fixes at - http://help.sap.com/saphelp_mdm71/helpdata/en/be/e0048b426b4c20957078b61ec71e46/content.htm
    These links gives you an idea of what all changes are going to come into your new system. So unless you upgrade to SP07 i.e. the latest version and test it in DEV/Sandbox environment you should not plan to move ahead in Production. This is always recommended but there is very less chance that the already working solution will not work as expected after the upgrade.
    Thanks,
    Shambhu.

  • Creative cloud applications doesn't start at all.

    hello, we recentrly had to copy the hard driver from a working windows 7 computers where Adobe Creative Cloud was working correctly to another computer.
    since, this other computer won't launch any of the creative Cloud apps (entreprise/education agreement, created with the creative cloud packager) except for lightroom and captivate (wich are from a different package)
    Anyway, I'm seeing those entries in the logs under the current administrator user, trying to launch illustrator CC. (sorry for the lenght, doesn,t see an option to make it smaller.
    What are the solutions to resolve this issue? is there a way to recent the licensing information or something like that?
    thanks.
    oobelib.log
    01/31/14 11:25:39:384 | [ERROR] |  |  |  | SLCoreService |  |  | 5556 | Could not find license from which to get user data
    01/31/14 11:25:39:384 | [ERROR] |  |  |  | SLCoreService |  |  | 5556 | No value for key [PersonGUID] in user dictionary.
    01/31/14 11:25:39:384 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | No value for key [RememberedSerial] in hive [Illustrator-CS7-Win-GM{|}fr_FR] in cache : 519
    01/31/14 11:25:39:385 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | Failed to read value for key [RememberedSerial] in hive [Illustrator-CS7-Win-GM{|}ALL] from cache : 769
    01/31/14 11:25:39:385 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | No value for key [RememberedSerial] in hive [Illustrator-CS7-Win-GM{|}fr_FR] in cache : 519
    01/31/14 11:25:39:385 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | Failed to read value for key [RememberedSerial] in hive [Illustrator-CS7-Win-GM{|}ALL] from cache : 769
    01/31/14 11:25:39:386 | [DEBUG] |  |  |  | OOBELib |  |  | 5556 | Dominance list found
    01/31/14 11:25:39:387 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | Failed to read value for key [RememberedSerial] in hive [V7{}CreativeCloudEnt-1.0-Win-GM{|}fr_FR] from cache : 769
    01/31/14 11:25:39:393 | [DEBUG] |  |  |  | OOBELib |  |  | 5556 | Remembered SN against dominating hive found
    01/31/14 11:25:39:393 | [DEBUG] |  |  |  | OOBELib |  |  | 5556 | No hint serial, returning first remembered serial
    01/31/14 11:25:39:394 | [INFO] |  |  |  | OOBELib |  |  | 5556 | CheckWFType : Updating remembered SN record
    01/31/14 11:25:39:394 | [INFO] |  |  |  | OOBELib |  |  | 5556 | LEID for RememberedSN =V7{}CreativeCloudEnt-1.0-Win-GM, Locale=ALL
    01/31/14 11:25:39:394 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Query license: type = 0, duration = 0 days, remaining = expired.
    01/31/14 11:25:39:394 | [INFO] |  |  |  | OOBELib |  |  | 5556 | UpdateRecordCheckWFType : No enigma information found from license/cache, using hard-coded information
    01/31/14 11:25:39:395 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | Failed to read value for key [PayloadCode] in hive [V7{}CreativeCloudEnt-1.0-Win-GM] from master : 5
    01/31/14 11:25:39:395 | [INFO] |  |  |  | OOBELib |  |  | 5556 | GetAMTConfigPathForLEID : No Payload Code found, checking SSC for information
    01/31/14 11:25:39:395 | [INFO] |  |  |  | OOBELib |  |  | 5556 | GetAMTConfigPathForLEID : Payload Code found, retrieving
    01/31/14 11:25:39:395 | [DEBUG] |  |  |  | OOBELib |  |  | 5556 | SLConfig for LEID not found
    01/31/14 11:25:39:396 | [DEBUG] |  |  |  | OOBELib |  |  | 5556 | SLConfig for LEID not found
    01/31/14 11:25:39:396 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Reading product config [C:\Program Files (x86)\Common Files\Adobe\ssc\V7{}CreativeCloudEnt-1.0-Win-GM\SLConfig.xml]
    01/31/14 11:25:39:396 | [ERROR] |  |  |  | SLCoreService |  |  | 5556 | Getting license duration from product config return "Runtime Failure: Cannot Read Config File (130:10)".
    01/31/14 11:25:39:396 | [INFO] |  |  |  | OOBELib |  |  | 5556 | UpdateRecordCheckWFType : Remembered SN not valid for associated LEID, get driver's limited grace SLR duration
    01/31/14 11:25:39:396 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Reading product config [C:\Program Files (x86)\Common Files\Adobe\Adobe Illustrator CC\Support Files\Contents\Windows\AMT\SLConfig.xml]
    01/31/14 11:25:39:397 | [INFO] |  |  |  | OOBELib |  |  | 5556 | UpdateRecordCheckWFType : Necessary data retrieved, populate the outparam
    01/31/14 11:25:39:397 | [INFO] |  |  |  | OOBELib |  |  | 5556 | Total License Duration is : 7
    01/31/14 11:25:39:397 | [INFO] |  |  |  | OOBELib |  |  | 5556 | License Duration Left is : -1
    01/31/14 11:25:39:397 | [INFO] |  |  |  | OOBELib |  |  | 5556 | SN has been successfully validated online
    01/31/14 11:25:39:398 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | No value for key [DelegateGUIDForEntitlement] in hive [909607087358377142917643] in cache : 519
    01/31/14 11:25:39:398 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | No value for key [OwnerGUIDForEntitlement] in hive [909607087358377142917643] in cache : 519
    01/31/14 11:25:39:398 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Query license: type = 0, duration = 0 days, remaining = expired.
    01/31/14 11:25:39:398 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | No value for key [STORE_URL] in hive [Illustrator-CS7-Win-GM] in master : 10
    01/31/14 11:25:39:398 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | No value for key [ENABLE_EEP_SIGNIN] in hive [{9CD4F411-1AF8-440F-8CB5-8E87F04B05A4}] in master : 10
    01/31/14 11:25:39:398 | [INFO] |  |  |  | OOBELib |  |  | 5556 | CheckWFType : Detected configuration REG_SERIAL_OVERRIDE : Suppress
    01/31/14 11:25:39:398 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | No value for key [REG_TRIAL_OVERRIDE] in hive [{9CD4F411-1AF8-440F-8CB5-8E87F04B05A4}] in master : 10
    01/31/14 11:25:39:399 | [INFO] |  |  |  | PCDUtility |  |  | 5556 | IsRegistrationSuppressed : checking reg suppression using payloadcode {9CD4F411-1AF8-440F-8CB5-8E87F04B05A4}
    01/31/14 11:25:39:399 | [INFO] |  |  |  | PCDUtility |  |  | 5556 | IsRegistrationSuppressed : registration is suppressed
    01/31/14 11:25:39:399 | [ERROR] |  |  |  | SLCoreService |  |  | 5556 | Could not find license from which to get event
    01/31/14 11:25:39:399 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | Failed to read value for key [LimitedGraceConsumed] in hive [Illustrator-CS7-Win-GM{|}LGC] from cache : 769
    01/31/14 11:25:39:399 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Query license: type = 0, duration = 0 days, remaining = expired.
    01/31/14 11:25:39:399 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | No value for key [IsRedeemedThroughPOSA] in hive [916387098118488076034526] in cache : 519
    01/31/14 11:25:39:399 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | No value for key [Illustrator-CS7-Win-GM] in hive [FA_Set] in cache : 519
    01/31/14 11:25:39:399 | [INFO] |  |  |  | OOBELib |  |  | 5556 | CheckWFType : FA_Set Not Found
    01/31/14 11:25:39:399 | [INFO] |  |  |  | OOBELib |  |  | 5556 | CheckWFType : Repairing Dom List for Illustrator-CS7-Win-GM
    01/31/14 11:25:39:399 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Query license: type = 0, duration = 0 days, remaining = expired.
    01/31/14 11:25:39:400 | [ERROR] |  |  |  | SLCoreService |  |  | 5556 | Could not find license from which to get user data
    01/31/14 11:25:39:400 | [ERROR] |  |  |  | SLCoreService |  |  | 5556 | No value for key [LEID] in user dictionary.
    01/31/14 11:25:39:400 | [ERROR] |  |  |  | SLCoreService |  |  | 5556 | No value for key [DLIST] in user dictionary.
    01/31/14 11:25:39:400 | [ERROR] |  |  |  | SLCoreService |  |  | 5556 | No value for key [PRECEDENCE] in user dictionary.
    01/31/14 11:25:39:400 | [INFO] |  |  |  | OOBELib |  |  | 5556 | CheckWFType : LEID DOMLIST PID Empty!
    01/31/14 11:25:39:400 | [INFO] |  |  |  | OOBELib |  |  | 5556 | CheckWFType : WF is First_Launch
    01/31/14 11:25:39:400 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Syncing to license store...
    01/31/14 11:25:39:401 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Found server mkey.
    01/31/14 11:25:39:406 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Loading license references...
    01/31/14 11:25:39:407 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Found 1 license file(s)
    01/31/14 11:25:39:408 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Parsing license file [30826573.lic] succeed.
    01/31/14 11:25:39:408 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | License store synchronization took 8.2 ms and succeed.
    01/31/14 11:25:39:408 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Query license: type = 0, duration = 0 days, remaining = expired.
    01/31/14 11:25:39:408 | [INFO] |  |  |  | OOBELib |  |  | 5556 | CheckWFType : License not found, check if imaging scenario
    01/31/14 11:25:39:408 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | No value for key [LEIDLocForType2A] in hive [916387098118488076034526] in cache : 519
    01/31/14 11:25:39:408 | [INFO] |  |  |  | OOBELib |  |  | 5556 | CheckWFType : Could not find effective licensing LEID
    01/31/14 11:25:39:408 | [INFO] |  |  |  | OOBELib |  |  | 5556 | CheckWFType : Returning EULA path from amtlib xml
    01/31/14 11:25:39:408 | [INFO] |  |  |  | OOBELib |  |  | 5556 | LEID=Illustrator-CS7-Win-GM
    01/31/14 11:25:39:408 | [INFO] |  |  |  | OOBELib |  |  | 5556 | OOBELib CheckWFType ENDED
    01/31/14 11:25:39:416 | [INFO] |  |  |  | OOBELib |  |  | 5556 | *************OOBELib Session Starts*************
    01/31/14 11:25:39:416 | [INFO] |  |  |  | OOBELib |  |  | 5556 | Version 7.0.0.252,7.0
    01/31/14 11:25:39:416 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | Dispatch table loaded from path: C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\P7\dispatchtable.xml
    01/31/14 11:25:39:417 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | (re)load Local Dispatch Table status-[0].
    01/31/14 11:25:39:417 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | Scope : [2]
    01/31/14 11:25:39:417 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | Setting scope to GM
    01/31/14 11:25:39:417 | [INFO] |  |  |  | OOBELib |  |  | 5556 | AdobeIALClient 1.0 Release (build 1.0.6.3) initializing session...
    01/31/14 11:25:39:440 | [ERROR] |  |  |  | OPMWrapper |  |  | 5556 | Failed in getting value for key in OPMGetValueForKey
    01/31/14 11:25:39:440 | [INFO] |  |  |  | OOBELib |  |  | 5556 | Failed to get Proxy username in OPM DB
    01/31/14 11:25:39:442 | [INFO] |  |  |  | AXFBLicensing |  |  | 5556 | All function pointers successfully retrieved
    01/31/14 11:25:39:445 | [INFO] |  |  |  | OOBELib |  |  | 5556 | SetXMLData()
    01/31/14 11:25:39:446 | [INFO] |  |  |  | OOBELib |  |  | 5556 | SetXMLData():mBonusLaunchCode not found
    01/31/14 11:25:39:446 | [INFO] |  |  |  | OOBELib |  |  | 5556 | SetXMLData():mLastKnownServerTime not found
    01/31/14 11:25:39:446 | [DEBUG] |  |  |  | PCDService |  |  | 5556 | Failed to get enigma data from hive : 519
    01/31/14 11:25:39:446 | [INFO] |  |  |  | OOBELib |  |  | 5556 | Running in App context
    01/31/14 11:25:39:458 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | Dispatch table loaded from path: C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\P7\dispatchtable.xml
    01/31/14 11:25:39:458 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | (re)load Local Dispatch Table status-[0].
    01/31/14 11:25:39:459 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | Scope : [2]
    01/31/14 11:25:39:459 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | Setting scope to GM
    01/31/14 11:25:39:459 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | EndPoint requested: [Analytics]
    01/31/14 11:25:39:459 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | Length of the URL: [51]
    01/31/14 11:25:39:459 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | Returning from getEndpointAddr: [0]
    01/31/14 11:25:39:459 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | EndPoint requested: [Analytics]
    01/31/14 11:25:39:459 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | Length of the URL: [51]
    01/31/14 11:25:39:459 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | URL found [https://na1r.services.adobe.com/account/amfgateway2]
    01/31/14 11:25:39:459 | [INFO] |  |  |  | DispatchClientLib |  |  | 5556 | Returning from getEndpointAddr: [0]
    01/31/14 11:25:40:023 | [INFO] |  |  |  | OOBELib |  |  | 5556 | OOBELibImpl::CommitPCD STARTED
    01/31/14 11:25:40:023 | [DEBUG] |  |  |  | ServiceLoader |  |  | 5556 | looking for library C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\P7\adobe_upgrade.dll
    01/31/14 11:25:40:023 | [DEBUG] |  |  |  | ServiceLoader |  |  | 5556 | Found library C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\P7\adobe_upgrade.dll
    01/31/14 11:25:40:024 | [INFO] |  |  |  | OOBELib |  |  | 5556 | OOBELibImpl::CommitPCD ENDED
    01/31/14 11:25:40:026 | [INFO] |  |  |  | OOBELib |  |  | 5556 | OOBELibImpl::CommitPCD STARTED
    01/31/14 11:25:40:026 | [INFO] |  |  |  | OOBELib |  |  | 5556 | OOBELibImpl::CommitPCD ENDED
    01/31/14 11:25:40:026 | [INFO] |  |  |  | OOBELib |  |  | 5556 | Closing AdobeIALClient 1.0 Release (build 1.0.6.3) session.
    01/31/14 11:25:40:026 | [INFO] |  |  |  | OOBELib |  |  | 5556 | *************OOBELib Session Ends*************
    01/31/14 11:25:40:027 | [INFO] |  |  |  | OOBELib |  |  | 5556 | Closing AdobeIALClient 1.0 Release (build 1.0.6.3) session.
    01/31/14 11:25:40:027 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Shutting down SLCore 2.0 Release (build 2.0.1.360321).
    01/31/14 11:25:40:033 | [INFO] |  |  |  | SLCoreService |  |  | 5556 | Service destruction took 6.0 ms and succeed.
    01/31/14 11:25:40:033 | [INFO] |  |  |  | OOBELib |  |  | 5556 | *************OOBELib Session Ends*************
    amt3.log
    01/31/14 11:25:37:570 | [DEBUG] |  |  |  | PCDService |  |  | 5496 | Failed to get enigma data from hive : 519
    01/31/14 11:25:37:581 | [DEBUG] |  |  |  | PCDService |  |  | 5496 | No value for key [ADOBEID] in hive [916387098118488076034526] in cache : 519
    01/31/14 11:25:37:581 | [INFO] |  |  |  | AMT |  |  | 5496 | Running in PROV_APP
    01/31/14 11:25:37:581 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value WorkFlowType [SilentActivator]
    01/31/14 11:25:37:581 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value SubWorkFlowType [First_Launch]
    01/31/14 11:25:37:581 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value ShowEULA [false]
    01/31/14 11:25:37:581 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value TrialGrace [30]
    01/31/14 11:25:37:581 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value TrialLeft [-1]
    01/31/14 11:25:37:581 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value BuyURL [http://www.adobe.com/go/buy?]
    01/31/14 11:25:37:581 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value LaunchMode [prechrome]
    01/31/14 11:25:37:581 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AdobeIDCreated [false]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppLaunchPath [C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Support Files\Contents\Windows\Illustrator.exe]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppAMTBkGndFilePath [C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Support Files\Contents\Windows\AMT\LMResources\background.png]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppAMTLogoFilePath [C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Support Files\Contents\Windows\AMT\LMResources\adobelogo.png]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppAMTLicenseAFAQFilePath [C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Support Files\Contents\Windows\OBLRes\fr_FR\LicenseFAQ.html]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppAMTConnectionFAQFilePath [C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Support Files\Contents\Windows\OBLRes\fr_FR\ConnectionFAQ.html]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AdobeCode [{CCDC3E53-DF98-434F-821A-C253C61DA2CD}]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value DriverAdobeCode [{F2321021-08A2-44D6-B1DF-BDB415F23EC3}]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppName []
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppRunningLEID [Illustrator-CS7-Win-GM]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppDriverLEID [Illustrator-CS7-Win-GM]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppLicensingLEID [Illustrator-CS7-Win-GM]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppRunningLocale [fr_FR]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppListOfLocales [fr_FR{|}fr_CA]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppProcessID []
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value ProductID []
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value ProductVersion [0.0]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value Platform []
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppPath [C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Support Files\Contents\Windows]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppAMTPath [C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Support Files\Contents\Windows\AMT]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppDriverAMTPath [C:\Program Files (x86)\Common Files\Adobe\Adobe Illustrator CC\Support Files\Contents\Windows\AMT]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppLicensingAMTPath [C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Support Files\Contents\Windows\AMT]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppHostAppType [ALM_HostAppType_LicensedProduct]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppEULAFolderPath [C:\Program Files\Adobe\Adobe Illustrator CC (64 Bit)\Legal]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value TrialExpired [0]
    01/31/14 11:25:37:582 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppSerialNumber [916387098118488076034526]
    01/31/14 11:25:37:583 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value AppTrialSerialNumber [916387098118488076034526]
    01/31/14 11:25:37:583 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value NoTrial [0]
    01/31/14 11:25:37:583 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value UpgradeCheckRequired [0]
    01/31/14 11:25:37:583 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value BonusLaunchCode []
    01/31/14 11:25:37:583 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value HasSAASBit [0]
    01/31/14 11:25:37:583 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value ForcedActivation [0]
    01/31/14 11:25:37:583 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value ExtendedProfileRegURL [http://www.adobe.com/go/adobemembership_fr?&source=PCSTHX]
    01/31/14 11:25:37:583 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value ClaimSource [nag_trial]
    01/31/14 11:25:37:583 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Key Value HasSubscriptionBit [0]
    01/31/14 11:25:37:583 | [INFO] |  |  |  | uiswitch |  |  | 5496 | SilentActivator
    01/31/14 11:25:37:587 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Silent Activator
    01/31/14 11:25:37:587 | [INFO] |  |  |  | uiswitch |  |  | 5496 | Launched
    01/31/14 11:25:37:587 | [ERROR] |  |  |  | AMT |  |  | 5496 | Licensing has been refused.  Application must exit.
    01/31/14 11:25:37:587 | [INFO] |  |  |  | AMT |  |  | 5496 | Starting Data Collection for SWTag_Init()
    01/31/14 11:25:37:588 | [INFO] |  |  |  | AMT |  |  | 5496 | DoISOTagging() productCanonicalLEID = Illustrator-CS7-Win-GM;outMappedLEID =  Illustrator-CS7-Win-GM, unused =
    01/31/14 11:25:37:588 | [INFO] |  |  |  | AMT |  |  | 5496 | DoISOTagging() productPayloadCode = {CCDC3E53-DF98-434F-821A-C253C61DA2CD};driverPayloadCode =  {F2321021-08A2-44D6-B1DF-BDB415F23EC3}
    01/31/14 11:25:37:588 | [DEBUG] |  |  |  | PCDService |  |  | 5496 | Failed to read value for key [] in hive [Illustrator-CS7-Win-GM] from master : 4
    01/31/14 11:25:37:588 | [INFO] |  |  |  | AMT |  |  | 5496 | SWTag_Init() Tags Arguments ; Illustrator-CS7-Win-GM;
    01/31/14 11:25:37:593 | [INFO] |  |  |  | performance |  |  | 5496 | AMTObtainProductLicense took 177.889618 ms
    PDApp.log
    01/31/14 11:25:37:763 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 5556 | Considering following LEID for applet version switching : Illustrator-CS7-Win-GM
    01/31/14 11:25:37:764 | [WARN] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 5556 | Dynamic XML Not Found
    01/31/14 11:25:37:765 | [ERROR] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 5556 | Received Serial : 916387098118488076034526
    01/31/14 11:25:37:767 | [ERROR] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 5556 | Unable to fetch enigma data
    01/31/14 11:25:37:767 | [ERROR] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 5556 | Product not running under subscription
    01/31/14 11:25:37:767 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 5556 | Detected identifier in LEID: CS7
    01/31/14 11:25:37:767 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 5556 | Detected identifier in LEID: CS7
    01/31/14 11:25:37:767 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 5556 | Detected identifier in LEID: CS7
    01/31/14 11:25:37:767 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 5556 | Not updating the applet version for appletID: LWA_UI appletVersion: 3.0
    01/31/14 11:25:37:767 | [WARN] |  | ASU | PDApp | PDApp.AppletManager |  |  | 5556 | Unable to get the applet switching info... Response is: 8
    01/31/14 11:25:37:778 | [INFO] |  | ASU | PDApp | PDApp |  |  | 5556 | DWA AppletID argument not specified on command line. Trying to find the existing instance
    01/31/14 11:25:37:778 | [INFO] |  | ASU | PDApp | PDApp |  |  | 5556 | This is the first instance so creating a thread for listening to the created pipe
    01/31/14 11:25:37:779 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 5580 | Pipe thread started
    01/31/14 11:25:37:779 | [INFO] |  | ASU | PDApp | PDApp |  |  | 5556 | Starting AsyncMessageProcessor

    Hi erastyle,
    Actually the Licensing information for the package is missing hence it is not launching any applications. You need to Reserialize the products using APTEE which you can find it on the Machine where you have created the package. If you dont have the access to that Machine then please download and install Creative Cloud Packager and it will download APTEE in the below mentioned location.
    Windows:
    C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\CCP\utilities
    Once downloaded please follow this KB article to use the Tool.
    http://helpx.adobe.com/creative-cloud/packager/provisioning-toolkit-enterprise.html
    Please let us know if it helps.
    Regards,
    Abhijit

  • Print group name on a page of Report

    I have sorted my data on my report, printing a group on each page of my report.
    On each page, i would like to print the name of the current group (easy) but also the name of the previous page group. How can i do that ?
    Using GroupName()...?

    duplicate - please do not post multiple times

  • Interactive report - order column by other column values

    Hi Oracle experts,
    could you please advise how to order column A by values of column B in Interactive report ?
    When clicking on header of "Countries" column in order to sort it acs/desc I would like to order it by values of column "Sort_order" which stores values from 1 to 100.
    The goal is to order "Countries" not alphabetically, but according to values of "Sort_order" column.
    Any ideas?
    Thanks in advance for your help.
    Best regards,
    Konrad

    962622 wrote:
    Hi Oracle experts,Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and update your profile with a real handle instead of "962622".
    When you have a problem you'll get a faster, more effective response by providing as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    could you please advise how to order column A by values of column B in Interactive report ?
    When clicking on header of "Countries" column in order to sort it acs/desc I would like to order it by values of column "Sort_order" which stores values from 1 to 100.
    The goal is to order "Countries" not alphabetically, but according to values of "Sort_order" column.
    Any ideas?I'm not an expert on Interactive Reports, so there may be a less brute force method using the built-in features, but here's an approach that's worked in the past.
    Modify the query to generate the column as:
    '<!-- '|| to_char(sort_order, '009') || ' -->' || countryi.e. prefix the country name with an HTML comment containing the required ordinal number. This won't be visible in the report, but will be considered when sorting in SQL.
    In the IR Column Attributes set the column's Display Text As property to Standard Report Column so APEX won't escape the HTML tags.
    This method has side effects: some IR filters won't work; aggregate calculations can't be applied to the column; and report exports contain the HTML rather than the expected value.
    Edited by: fac586 on 02-Oct-2012 13:28
    From APEX 4.2 IR columns have support for HTML Expressions, so Re: Report formatting/sorting issue using a hidden column and HTML Expression should be used, as it's purely declarative and provides better separation of concerns. (Still a problem on report exports though. Whilst the sort column can be suppressed using a condition, the hidden column can't be "unhidden" to replace it.)

  • How to create a Quarterly report only till selected month?

    Hi
    I am trying to create a Quarterly Financial Report with HFM as data source but could not figure the logic.
    I want to have columns Q1, Q2, Q3, Q4 with month as User selected prompt. The columns should be populated only till the period user selects.
    Say for example, user selects period - May, columns should be Q1(Jan+Feb+Mar), and Q2(Apr+May). Any ideas please?
    Thanks in Advance,
    PM

    Hiding the columns that have no data would do the trick. So when the latest period having data is May, Q2 would have the total of Apr and May anyway as Jun has no data in it yet and would be suppressed along with the months and quarters following.
    However, if you need the report to look same even when it is run in the future (when there is data in Jun, Jul etc.) then you will need to calculate quarters instead of getting the quarter totals from the period dimension and use advanced suppression maybe to suppress the following months (as they have data now you cant suppress them using no data suppression).
    using the advanced suppression you can do lots of things to meet such complex requirements, however they take a lot of time to think and implement, and also to maintain later on.
    hope this helps.
    Bulent

  • CUPS printing to remote server doesn't work under Leopard

    So i have an ubuntu system running cups 1.2.8 as a print server. i have an epson stylus colour 760 plugged in and configured and working.
    i also had a macmini running tiger printing to it fine via ipp. now it didn't occur to me that something as simple (and important) as printing would be severely broken under Leopard. basically, after the upgrade, i can't print at all to the remote cups server.
    the symptoms are that the job queue will pause; even after clicking on 'resume', it will start the progress bar, and then after 100%, it will just pause again.
    i have on the cups server (qbic)
    EpsonPrinter
    Description: Epson Stylus 760 Colour
    Location: Small Bedroom
    Make and Model: Epson Stylus Color 760 - CUPS+Gutenprint v5.0.0.99.1
    Printer State: idle, accepting jobs, published.
    Device URI: usb://EPSON/Stylus%20COLOR%20760
    And on the macmini:
    qbic
    Description: qbic
    Location:
    Printer Driver: Epson Stylus Color 760 - Gutenprint v5.1.3
    Printer State: stopped, accepting jobs, not published.
    Device URI: ipp://192.168.1.244/ipp/EpsonPrinter
    None of the following work
    - used lpd://192.168.1.244/EpsonPrinter
    - tried ipp://192.168.1.244/ipp/EpsonPrinter
    - tried ipp://192.168.1.244/EpsonPrinter
    The error messages from the macmini are:
    I [01/Jan/2008:23:19:52 +0000] Printer "qbic" started by "ytl".
    I [01/Jan/2008:23:19:52 +0000] [Job 25] Started filter /usr/libexec/cups/filter/cgpdftoraster (PID 791)
    I [01/Jan/2008:23:19:52 +0000] [Job 25] Started filter /usr/libexec/cups/filter/rastertogutenprint.5.1 (PID 792)
    I [01/Jan/2008:23:19:52 +0000] [Job 25] Started backend /usr/libexec/cups/backend/ipp (PID 794)
    E [01/Jan/2008:23:20:02 +0000] [Job 25] Destination printer does not exist!
    E [01/Jan/2008:23:20:02 +0000] PID 794 (/usr/libexec/cups/backend/ipp) stopped with status 4!
    I [01/Jan/2008:23:20:02 +0000] Hint: Try setting the LogLevel to "debug" to find out more.
    I [01/Jan/2008:23:20:02 +0000] [Job 25] Backend returned status 4 (stop printer)
    I [01/Jan/2008:23:20:02 +0000] Saving printers.conf...
    The job never appears on the cups server jobs list; however a tcpdump does show that there is communication:
    x@qbic:~$ sudo tcpdump -i eth0 port 631
    tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
    listening on eth0, link-type EN10MB (Ethernet), capture size 96 bytes
    23:27:55.397616 IP 192.168.1.204.49599 > qbic.ipp: S 3571921204:3571921204(0) win 65535 <mss 1460,nop,wscale 3,nop,nop,timestamp 660419916 0,sackOK,eol>
    23:28:05.490215 IP qbic.ipp > 192.168.1.204.49599: S 3610561258:3610561258(0) ack 3571921205 win 5792 <mss 1460,sackOK,timestamp 2498972 660419916,nop,wscale 2>
    23:28:05.490269 IP 192.168.1.204.49599 > qbic.ipp: . ack 1 win 65535 <nop,nop,timestamp 660419916 2498972>
    23:28:05.490285 IP 192.168.1.204.49599 > qbic.ipp: P 1:155(154) ack 1 win 65535 <nop,nop,timestamp 660419916 2498972>
    23:28:05.490301 IP qbic.ipp > 192.168.1.204.49599: . ack 155 win 1716 <nop,nop,timestamp 2498972 660419916>
    23:28:05.490315 IP 192.168.1.204.49599 > qbic.ipp: P 155:457(302) ack 1 win 65535 <nop,nop,timestamp 660419916 2498972>
    23:28:05.490331 IP qbic.ipp > 192.168.1.204.49599: . ack 457 win 1984 <nop,nop,timestamp 2498972 660419916>
    23:27:55.453575 IP qbic.ipp > 192.168.1.204.49599: P 1:26(25) ack 457 win 1984 <nop,nop,timestamp 2498978 660419916>
    23:27:55.453705 IP 192.168.1.204.49599 > qbic.ipp: . ack 26 win 65535 <nop,nop,timestamp 660419917 2498978>
    23:27:55.453804 IP qbic.ipp > 192.168.1.204.49599: P 26:225(199) ack 457 win 1984 <nop,nop,timestamp 2498978 660419917>
    23:27:55.453861 IP qbic.ipp > 192.168.1.204.49599: P 225:354(129) ack 457 win 1984 <nop,nop,timestamp 2498978 660419917>
    23:27:55.453919 IP 192.168.1.204.49599 > qbic.ipp: . ack 225 win 65535 <nop,nop,timestamp 660419917 2498978>
    23:27:55.453959 IP 192.168.1.204.49599 > qbic.ipp: . ack 354 win 65535 <nop,nop,timestamp 660419917 2498978>
    23:27:55.456571 IP 192.168.1.204.49599 > qbic.ipp: F 457:457(0) ack 354 win 65535 <nop,nop,timestamp 660419917 2498978>
    23:27:55.456636 IP qbic.ipp > 192.168.1.204.49599: F 354:354(0) ack 458 win 1984 <nop,nop,timestamp 2498978 660419917>
    23:27:55.669906 IP qbic.ipp > 192.168.1.204.49599: F 354:354(0) ack 458 win 1984 <nop,nop,timestamp 2498999 660419917>
    23:27:55.670050 IP 192.168.1.204.49599 > qbic.ipp: . ack 355 win 65535 <nop,nop,timestamp 660419919 2498999>
    23:28:08.470574 IP qbic.ipp > 192.168.1.255.ipp: UDP, length 183
    Any help is appreciated!

    The default setting under Tiger was CUPS, under Leopard it is Bonjour.
    To access CUPS
    http://localhost:631/printers/

Maybe you are looking for