Group Names

Group 1 and Group 2 are both based on the same field - with different specified orders (and different criteria for being in those specified) and custom titles for each of the items specified.  This works well. 
How do I access the title of the Group 2 entry I'm in?  The variable name is the same, probably because it's the same variable - and thus, I get the Group 1 name instead of Group 2.  What I want to do is further customize the title in a formula in some instances What I've done so far is created a formula, which returns the value "Total" or nothing (instead of nothing, I'd like to return Group2's title), and overlaid that on the Group2 title, which is has a suppression formula for the occasions that I want "Total" to appear.
My workaround is a solution, but does anyone know the answer to the base question?
Thanks.

If I were able to figure out how to attach a file, you'd see how I changed the sample you sent me.
But anyway...
Group 2 would have several specified entries - each made up of some specific customers.  These entries would have a custom title.
Group 1 would also have several specified entries.  Each one of these entries would be designed to be a roll-up of some of the Group 2 entries.  So here, each of the customers in all of the Group 2 entries that would be rolled up to the Group 1 entry are repeated in that group 1 entry.
Example:
Gr1 indicates Gr1 headings, same for Gr2
DT is detail
second column shows result of
GroupName ({Customer.Contact Last Name})
which gives same result regardless of which level it's executed at.
Gr1 (John Smith) has 6 last names specified for it - which is all of the group 2 names in each of John's teams.
Gr1John Smith's Responsibility
Gr2Team 1.........................John Smith's Responsibility
DT...Bergulfsen.................John Smith's Responsibility
DT...Caledonia..................John Smith's Responsibility
DT...Boswell.....................John Smith's Responsibility
DT...Alvarez......................John Smith's Responsibility
Gr2Team Red.....................John Smith's Responsibility
DT...Binford.......................John Smith's Responsibility
DT...Arsenault...................John Smith's Responsibility
Gr1Region Three
Gr2Team 2..........................Region Three
DT...Banks........................Region Three
DT...Baker.........................Region Three
DT...Camino......................Region Three
Gr2Blue Department...........Region Three
DT...Antoine......................Region Three
DT...Camel.......................Region Three
DT...Arnadis.....................Region Three

Similar Messages

  • Not able to get group name by using memberof class, getting Total groups as 0 even I am member of that group.

    Not able to get group name by using memberof class, getting Total groups as 0 even I am member of that group. Through this memberof class I am trying to find full qualified name(DN) of my group.
    code I have used:
    //specify the LDAP search filter
                   String searchFilter = "(&(objectClass=user)(CN=Username))";
                   //Specify the Base for the search
                   String searchBase = "";
    Also I have used,
                 String searchFilter = "(&(objectClass=user)(CN=Username))";
                   //Specify the Base for the search
                   String searchBase = "ou=ibmgroups,o=ibm.com";
    But in both cases I am getting value for Total groups as 0.
    Code Reference:
    * memberof.java
    * December 2004
    * Sample JNDI application to determine what groups a user belongs to
    import java.util.Hashtable;
    import javax.naming.*;
    import javax.naming.ldap.*;
    import javax.naming.directory.*;
    public class memberof     {
         public static void main (String[] args)     {
              Hashtable env = new Hashtable();
              String adminName = "CN=Administrator,CN=Users,DC=ANTIPODES,DC=COM";
              String adminPassword = "XXXXXXX";
              String ldapURL = "ldap://mydc.antipodes.com:389";
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              //set security credentials, note using simple cleartext authentication
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,adminName);
              env.put(Context.SECURITY_CREDENTIALS,adminPassword);
              //connect to my domain controller
              env.put(Context.PROVIDER_URL,ldapURL);
              try {
                   //Create the initial directory context
                   LdapContext ctx = new InitialLdapContext(env,null);
                   //Create the search controls          
                   SearchControls searchCtls = new SearchControls();
                   //Specify the search scope
                   searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
                   //specify the LDAP search filter
                   String searchFilter = "(&(objectClass=user)(CN=Andrew Anderson))";
                   //Specify the Base for the search
                   String searchBase = "DC=antipodes,DC=com";
                   //initialize counter to total the group members
                   int totalResults = 0;
                   //Specify the attributes to return
                   String returnedAtts[]={"memberOf"};
                   searchCtls.setReturningAttributes(returnedAtts);
                   //Search for objects using the filter
                   NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);
                   //Loop through the search results
                   while (answer.hasMoreElements()) {
                        SearchResult sr = (SearchResult)answer.next();
                        System.out.println(">>>" + sr.getName());
                        //Print out the groups
                        Attributes attrs = sr.getAttributes();
                        if (attrs != null) {
                             try {
                                  for (NamingEnumeration ae = attrs.getAll();ae.hasMore();) {
                                       Attribute attr = (Attribute)ae.next();
                                       System.out.println("Attribute: " + attr.getID());
                                       for (NamingEnumeration e = attr.getAll();e.hasMore();totalResults++) {
                                            System.out.println(" " +  totalResults + ". " +  e.next());
                             catch (NamingException e)     {
                                  System.err.println("Problem listing membership: " + e);
                   System.out.println("Total groups: " + totalResults);
                   ctx.close();
              catch (NamingException e) {
                   System.err.println("Problem searching directory: " + e);
    Any help will be highly appreciated.

    Not able to get group name by using memberof class, getting Total groups as 0 even I am member of that group. Through this memberof class I am trying to find full qualified name(DN) of my group.
    code I have used:
    //specify the LDAP search filter
                   String searchFilter = "(&(objectClass=user)(CN=Username))";
                   //Specify the Base for the search
                   String searchBase = "";
    Also I have used,
                 String searchFilter = "(&(objectClass=user)(CN=Username))";
                   //Specify the Base for the search
                   String searchBase = "ou=ibmgroups,o=ibm.com";
    But in both cases I am getting value for Total groups as 0.
    Code Reference:
    * memberof.java
    * December 2004
    * Sample JNDI application to determine what groups a user belongs to
    import java.util.Hashtable;
    import javax.naming.*;
    import javax.naming.ldap.*;
    import javax.naming.directory.*;
    public class memberof     {
         public static void main (String[] args)     {
              Hashtable env = new Hashtable();
              String adminName = "CN=Administrator,CN=Users,DC=ANTIPODES,DC=COM";
              String adminPassword = "XXXXXXX";
              String ldapURL = "ldap://mydc.antipodes.com:389";
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              //set security credentials, note using simple cleartext authentication
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,adminName);
              env.put(Context.SECURITY_CREDENTIALS,adminPassword);
              //connect to my domain controller
              env.put(Context.PROVIDER_URL,ldapURL);
              try {
                   //Create the initial directory context
                   LdapContext ctx = new InitialLdapContext(env,null);
                   //Create the search controls          
                   SearchControls searchCtls = new SearchControls();
                   //Specify the search scope
                   searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
                   //specify the LDAP search filter
                   String searchFilter = "(&(objectClass=user)(CN=Andrew Anderson))";
                   //Specify the Base for the search
                   String searchBase = "DC=antipodes,DC=com";
                   //initialize counter to total the group members
                   int totalResults = 0;
                   //Specify the attributes to return
                   String returnedAtts[]={"memberOf"};
                   searchCtls.setReturningAttributes(returnedAtts);
                   //Search for objects using the filter
                   NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);
                   //Loop through the search results
                   while (answer.hasMoreElements()) {
                        SearchResult sr = (SearchResult)answer.next();
                        System.out.println(">>>" + sr.getName());
                        //Print out the groups
                        Attributes attrs = sr.getAttributes();
                        if (attrs != null) {
                             try {
                                  for (NamingEnumeration ae = attrs.getAll();ae.hasMore();) {
                                       Attribute attr = (Attribute)ae.next();
                                       System.out.println("Attribute: " + attr.getID());
                                       for (NamingEnumeration e = attr.getAll();e.hasMore();totalResults++) {
                                            System.out.println(" " +  totalResults + ". " +  e.next());
                             catch (NamingException e)     {
                                  System.err.println("Problem listing membership: " + e);
                   System.out.println("Total groups: " + totalResults);
                   ctx.close();
              catch (NamingException e) {
                   System.err.println("Problem searching directory: " + e);
    Any help will be highly appreciated.

  • Report Manager problem: The user or group name 'BUILTIN\Administrators' is not recognized. (rsUnknownUserName)

    Hello,
    I have a big  problem with Reporting Services 2005 working on Windows 2003 Server.
    RS work as Network service, on subdomain reporting.mydomain with SSL wildcard certificate *.mydomain,
    Anonymous access: disabled and basic authentication: enabled
    ReportManager and reportServer has defualt virtual folders  (/reporting, /reportserver)
    My problem is:
    1) I can't manage security roles and site settings with report maanger. when I try assign roles to new user or group I get followng error:
    "The user or group name 'BUILTIN\Administrators' is not recognized. (rsUnknownUserName) Get Online Help"
    when i try to execute reports in report manager, parameters controls are not displayed correctly (very simple text boxes) and I can see:
    The selected report is not ready for viewing. The report is still being rendered or a report snapshot is not available. (rsReportNotReady)
    and I can't see my report in browser (IE 6.0) but only export to PDF, Excel...
    other functionality are working  fine i.e upload new files, creatign folders....
    2) Also my reportserver virtual folder does not work correctly.
    When I navigate to mydomain/reportserver I can see content of this virtual folder, than when I navigate to ReportService.soap i can see normal ReportServer view
    reporting.mydomain - /Reportserver/
    [To Parent Directory]
           Montag, 10. April 2006    16:31        <dir> bin
      Dienstag, 6. September 2005    01:12       488278 Catalog.sql
      Dienstag, 6. September 2005    01:12        14738 CatalogTempDB.sql
          Freitag, 21. April 2006    19:45        10555 Copy of rsreportserver.config
          Freitag, 14. April 2006    17:29           76 global.asax
           Freitag, 15. Juli 2005    01:12        26582 ModelGenerationRules.smgl
           Montag, 10. April 2006    16:31        <dir> Pages
           Montag, 10. April 2006    16:31        <dir> ReportBuilder
            Montag, 13. Juni 2005    14:07          143 ReportExecution2005.asmx
            Montag, 13. Juni 2005    14:06       196337 ReportingServices.wsdl
            Montag, 13. Juni 2005    14:07          131 ReportService.asmx
            Montag, 13. Juni 2005    14:07          131 ReportService.soap
            Montag, 13. Juni 2005    14:07          139 ReportService2005.asmx
          Dienstag, 13. Juni 2006    20:01        10580 rsreportserver.config
            Montag, 13. Juni 2005    14:07        11845 rssrvpolicy.config
           Montag, 10. April 2006    16:31        <dir> Styles
           Freitag, 17. Juni 2005    01:09         2673 web.config
    but me reports are not displayed correctly, I can run reports but top bar with parameters, export and print function are not displayed in correct format.
    (simple textboxes, and icons)
    reporting.mydomain/ReportServer - /
    Microsoft SQL Server Reporting Services Version 9.00.1399.00
    I think it is security issue. What schould i do to solve this problems?
    Wojtek

    Hi Wojtek
    I just wanted to know if you found a solution for part (1).  I just recently encountered the problem where:
    "when i try to execute reports in report manager, parameters controls are not displayed correctly (very simple text boxes) and I can see:
    The selected report is not ready for viewing. The report is still being rendered or a report snapshot is not available. (rsReportNotReady) "
    However all my reports are run from the most recent data.  The rsReportNotReady message appears in Report Manager but not the Report Server interface; the latter is able to render the reports.   But both have incorrectly displayed textbox inputs.
    Thanks
    nemo

  • How can i send an e-mail to several mail adress typing a group name, similar procedure used un gmail

    IN IPAD AIR How can i send an e-mail to several mail adress typing a group name, similar procedure used un gmail wich is very frendly

    Before all these updates, one used to be able to create a Group (such as Buddy List), then send emails by clicking on that Group Name.  Has not worked for a long time now, though.  I wish they would bring it back.

  • How can we retrieve the Group name from oid?

    Hi:
    In following request object, we can get all the user related information from oid except group name where a particular user belongs to.
    For instance user id, first name, last name and email etc but we could not get the group name.
    PortletRenderRequest pReq = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    pReq.getUser()……
    Please advice, how I we get the hold of group name from orcldefaultprofilegroup (oid)?
    I would really appreciate your reply.
    Thank you.
    - Ali Raza.

    I am not sure about the PDK API to get the group name. But using LDAP API its easy to get the User Group.
    If you find the answer to get the group name using PDK API, Please update in forum. It will really help others.
    --Balaji S                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Can we have a group name in oracle database???

    Hello,
    what i want to know is that can we have a group name, a set of all usernames for a database,
    the whole purpose is to simplify the grant statement, rather then doing this
    grant select to <user1>
         grant select to <user2>
         grant select to <user3>
         it would be simple to do
         grant select to <group1>
         where group1 consists of user1,user2 and user3...
         cheere

    all_users
    describe all_users
    Name                                      Null?    Type
    USERNAME                                  NOT NULL VARCHAR2(30)
    USER_ID                                   NOT NULL NUMBER
    CREATED                                   NOT NULL DATE

  • How to search a property value in a TDMS and return the group name.

    Hi.
    Please help
    I want to search a TDMS file by property value and then return the group names or channels.
    I am using labview 8.2 with the connectivity toolkits.

    The error # is -2558
    I try to close the TDMS file before it reach the search part but still give me the error code -2558
    Attachments:
    search and read property value per group.jpg ‏77 KB

  • When I enter a group name into the Bcc field and try to send the message, I get "[group name] is not a valid e-mail address..."

    Been using the same template to send a weekly newsletter for a year or two but now with a recent update to Thunderbird the group name is rejected when I try to send the message:
    With a group name in Bcc field, when I press "Send" and try to send the message, I get this alert: "[group name] is not a valid e-mail address because it is not of the form user@host. You must correct it before sending the e-mail."

    This has been reported as [https://bugzilla.mozilla.org/show_bug.cgi?id=1060901 Bug #1060901]. If you have an account on Bugzilla, please consider voting for that issue.
    Several other people have sent in the same support request as you, noting this happened after they upgraded to version 31.1.
    The exact error message is: XXXX is not a valid e-mail address because it is not of the form user@host. You must correct it before sending the e-mail.
    '''This happens in Thunderbird 31.1.0 when your mailing list description includes several words separated by spaces.'''
    Although not ideal, these workarounds should let you use your mailing lists until a proper fix is implemented:
    * While composing an email open the address book and select the list you are trying to send to, highlight all the names in the list and drag them to the To: box. This uses your existing data without modifying it.
    * Replacing the blanks " " between the words in such lists' descriptions with an underscore "_". This requires modifying your mailing list(s) description(s).
    * Downgrade to a previous version and disable automatic updates (Windows)

  • Setting the Link Group Name in  Deep Link based on the value of a column

    Using Jdeveloper 11g, Jheadstart 11g
    Is it possible to override the link group name in deep linking. For example can I conditionally set that field based on the value of the item.
    Regards
    Edited by: aliegeh on Jul 25, 2010 8:35 AM
    Edited by: aliegeh on Jul 25, 2010 8:43 AM

    Thanks for the suggestion.
    Here is what I am trying to do:
    I have a table with one visible column that has the following entries:
    1. Create
    2. Modify
    3. Verify
    4. Approve
    5. View
    If the user clicks on row 1 (Create) then the link group name should be "CreateEmployees" to create new employees
    If the user clicks on row 3 (Verify) then the link group name should be "MaintainEmployees" for verification and so on.
    (This is role based and each role will have access to one or more of the rows in the tabler)
    It basically mimics a work-flow type of scenario.
    I tried to modify the template and looked at the line:
    action="$JHS.facesConfigGenerator.addItemGroupLinkTaskFlowCall((${JHS.Current.item})}" but got stuck there.
    Is there a way to change "JSH.current.item" in the template to read the group link name from another column say by using #if statements.
    One way I also tried was to introduce a column for each action such as CreateAction, VerifyAction etc which kind of agrees with your suggestion but the drawback is the need to modify the table if another task is required.
    Regards
    Edited by: aliegeh on Jul 25, 2010 8:36 AM
    Edited by: aliegeh on Jul 25, 2010 8:42 AM

  • How to change Group-name of custom step-type?

    Hello,
    i´m using TS4.1 and miss a input-parameter which was avaiulable in TS3.5.
    I have some labview-vis which should be TS-teststeps and they all shoul be placed in a group.
    Do do this i open the "Types" and select one of my created types. The i rightclick the step and select properties.
    In the tab "Menu" i can set a name for the step BUT the parameter to set the Group is no more available?
    This was also in the Tab Menu in TS 3.5 but now in TS4.1 there is only Item-name.
    Where can i set the Group-name od my steps?
    Thx
    Message Edited by OnlyOne on 06-10-2008 08:14 AM

    Hi!
    Now you can go in the Insertion Palette in TS 4.1 (the Step Palette on the left side) and right click on Customize... (see attachement)
    There you have the menu where you can change the group for all steps in the palette.
    So now you have the possibility to change, create and move groups inside your palette.
    Best regards
    Ken
    Attachments:
    Customize.jpg ‏85 KB

  • How to remove prefix from AD group names in ldap auth. provider?

    Hi all,
    I'm using weblogic 10.3.5 and LDAP authentication provider for accessing microsoft AD.
    Group names in AD are created and look like this: PREFIX_basic_user, PREFIX_advanced_user...
    but enterprise roles in ADF application are created like this: basic_user, advanced_user...
    Is there a way to map AD groups to enterprise roles trough LDAP Authentication provider without adding PREFIX_ on enterprise roles in ADF application?
    Thanks in advance

    Powershell (or vbscript if you want to be old school).
    You can trigger a powershell script which will remove the offending user(s) easily enough with out resorting to a TOLDAP pass.  Nearly any script type thing would work but powershell is preferred.  It can be triggered separately from the TO AD stuff and will take multiple objects to run in one pass if you can construct the command line (or create a text file and feed it in).
    Otherwise, TOLDAP is the way to write to AD...
    Peter

  • LabVIEW 8.0:: How to get the group name of a user logged to a NI Security Domain?

    Hello all,
    I am using LabVIEW 8.0 PDS.
    I created a new local domain called "MyDomain" in the "NI Domain Account Manager" . I added a new User called "MyUser" and a new group called "Maintenance". I set "MyUser" to be a member of the "Maintenance" group. Then, I configured LabVIEW to invoke the login dialog at start-up in order to log "MyUser" with the correct password.
    I would like to get the group name of the current user logged programmatically in a VI. I tried with the VI Server >> Application >> Security properties and methods and also with the properties and methods of the NI Security Class but it seems to be not so simple as I believed at start.
    I do not find any informations or KB on this (all the documents I found deal with LV DSC or TestStand).
     The final goal is to be able to manage a list of user for my application. Each user is a member of a group ("Administrator", "Operator", "Maintenance") and depending on the group, the user can or cannot access to some parts of the application.
    Thanks for your help.
    Matthieu
    Eurilogic

    Re,
    Here is a screenshot of this functions...
    If you really own LV DSC 8.2 the best thing to do is to reinstall it.
    Regards, 
    Message Edité par Richard K. le 04-02-2007 04:00 AM
    Richard Keromen
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Découvrez, en vidéo, les innovations technologiques réalisées en éco-conception
    Attachments:
    security.jpg ‏3841 KB

  • Skill Group Name is not coming on Cisco CTI Tool Kit real time status

    Hi,
    I have UCCE 9.0.3 in my environment but when supervisor is monitoring agent state on CTI Toolkit Team Real Time Status we are not able to see Skill Group name.
    For your reference I have enclosed screen shot of that.

    Hi,
    first, read this document: Recommended Tracing Levels for Troubleshooting IPCC Issues. Apply the recommended trace levels to the following services:
    CTI OS Server
    CTI Server
    But first take note of the original values (so you can switch back to normal tracing).
    Dump the logs for both the above services: How to Use the Dumplog Utility.
    For instance: dumplog ctisvr /hr 1 /of c:\temp\ctisvr.log
    Post the logs to here.
    G.

  • Group name in which a particular user is member

    Hi all,
    I would like to be able to get the group name in which a particular user is a member.
    I have created 2 groups: CHEFS and EMPLOYEES.
    The Chefs are members of both groups. The "normal" Employee is the member only of EMPLOYEE group.
    I have the navigation plsql portlet. And I would like to enable any links of this portlet only for chefs. At default these are disabled.
    Now I make it with the function get_user_group:
    =========================================
    create or replace function get_user_group
    v_username IN VARCHAR2,
    v_groupname IN VARCHAR2
    return boolean
    as
    var_groupname varchar2(50);
    begin
    select upper(name)
    into var_groupname
    from portal.wwsec_group
    where id in (select group_id from portal.wwsec_flat
    where person_id in (select id from portal.wwsec_person
    where user_name=upper(v_username)))
    and name=v_groupname;
    return true;
    exception
    when no_data_found then
    return false;
    end;
    =====================================
    But the user needs DBA privileges to select on the tables of PORTAL-User.
    I don't want to give this privileges to user.
    Is there any other way to get the usergroup?
    Regards
    Leonid Pavlov

    There are portal API's that look like they would do exactly what you are asking for. Take a look at the wwsec_api functions, specifically, is_user_in_direct_group or is_user_in_group in http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/PLSQL/DOC/PLDOC_9026/D:/PDK/pdkjuly/pdk/plsql/doc/pldoc_9026/index.html.
    These API's are specific to 9.0.2.6. You'll have to ask someone who knows other versions if you are running something else.

  • 'Error 30644: Page Group name should be unique' after page group is removed

    Hi, I have removed a page group with name 'X'. But when i tried to create a new page group with the same name 'X', i encountered the following error message:
    'Error 30644: Page Group name should be unique'
    What could i do to create page group with the same name 'X'?
    Thanks for any replies!

    I just tried this on a 9.0.2.2.14 version and was able to add, delete, and add again witout an error. It is possible that there was some kind of error during the delete which caused a row in the DB to remain. Unfortunately, there is no way to be sure without delving into the tables and looking for the 'deleted' page group. Not recommended unless absolutely critical. Given that the display name is what is typically shown in most screens, is it reasonable for you to name the new one X1 with a display name of X? If so, that's the safest bet.

  • Showing Group Name in Email 'To' Box

    I want to send mail out to a group I've created in Address Book, but I want all recipients Blind Copied. Is there anyway I can set up Mail to show the Group Name in the 'To' box?

    Rob,
    I don't think so, but I think this too depends upon what the particular SMTP does when you send. The Group name, as you may have noticed, does appear in the copy of the message in your Sent mailbox. I haven't tried this with every SMTP I have available, because many of them do not allow the number of recipients in some of my groups. If I get a chance, I will test with other SMTP and small groups.
    Ernie

Maybe you are looking for

  • How do i use airport extreme to extend the range of my imac

    I have an 2012 Imac and I would like to plug the Internet to my imac and use the the imac wireless and use my airport express to extend the range of the imac wireless signal.  I am having an awfully hard time figuring this out - can anyone pass along

  • Adobe After Effects Wont Open

    The application wont open, even after the newest update was installed. It says "The application "Adobe After Effects CC" can't be opened. error 10810" How do I fix this?!?!

  • ABAP Mapping - Testing - IDoc - Trouble

    Hi Friends, There is one ABAP Mapping used in our system. The outbound interface is based on one message in external definition and inbound interface is IDoc. When I try to test this mapping in our PI System using the transaction "SXI_MAPPING_TEST",

  • Gif images in pdf file generated from Reports 6i

    Hello, When I generate pdf file from Reports Builder 6i and open this file with Acrobat Reader 5.0 I get that some of my gifs are black or other color. When I generate the same report to the live previewer everything is OK. Is it a Reports 6i bug? An

  • How can I use the Adobe reader if the PDF documents are in iBooks?

    The Adobe reader asks me to look for an "Open in" button but iBooks does not appear to have one. I like IBooks because it synchronises nicely with the computer, and I can read the PDFs but I cannot highlight, add comments or add bookmarks unless I us