How do I use CreateBookmarksFromGroupTree and NOT guid in the name for my top level?

Post Author: Barbdcg
CA Forum: Deployment
I have a report that I have created that uses uses groups and I wanted export a PDF using the CreateBookmarksFromGroupTree option. While that works, I get an ugly top level bookmark name that starts with the name of my report, then followed by a GUID;
Report {49E72CC5-7FFD-44F8-831B-EA8F543F7D82}.rpt
So, how do I Put in a name of my own choosing as the top-level bookmark or at least get rid of the guid?
Any help or suggestions would be appricated.
Thanks,
Barb

Post Author: Barbdcg
CA Forum: Deployment
Still no answer??? I can not figure this one out!!  HELP!!!

Similar Messages

  • How do I use CreateBookmarksFromGroupTree and NOT get a "temp_" for my top level?

    I have a report that I have created that uses uses groups and I wanted export a PDF using the CreateBookmarksFromGroupTree option. While that works, I get an ugly top level bookmark name that starts with "temp_" then followed by two GUIDs "temp_13fef8e3-30ec-4bc5-ba77-b55d23c95e8f {87823BCB-7789-407C-8A7F-5096BE07A83E}".
    So, how do I:
    1) Get rid of this top level so it matches the Crystal Viewer (which has multiple top level bookmarks)
    2) Put in a name of my own choosing as the top-level bookmark.
    <!break>
    Any help or suggestions would be appricated.
    Thanks,
    Jim

    I would very much like to know how to avoid this also!!!

  • I can't log in the App store because an from Zambia which is not listed in Apple outlets. How do i go around this as apple products are using globally and not only in the listed countries. My product is a Mac book pro.

    I can't log in the App store because am from Zambia which is not listed in Apple outlets. How do i go around this as apple products are used globally and not only in the listed countries. My product is a Mac book pro. i feel this limits how i can use my product

    Unfortunately you have taken an Apple product outside of the area where Apple currently does business. There isn't legally a way around this. Apple cannot license apps to you where you currently live.

  • HT4427 how do I use a song from iTunes as the ringtone for my iPhone 5?

    how do I use a song from iTunes as the ringtone for my iPhone 5?

    Google will find several free ways to create ringtones for iphone.

  • I am using iCal on my iMac, iPad and iPhone using iCloud and when I set the alert for 1 day before and the second alert to 1 hr before, then save the alerts switched.  Was is this happening?

    I am using iCal on my iMac, iPad and iPhone and when I set the alert for 1 day before and the second alert to 1 hr before, then save the alerts switched.  Was is this happening?

    http://support.apple.com/kb/he57?viewlocale=de_de
    India
    (91) 1800 4250 744
    www.apple.com/in/support/
    hope it helps

  • Using contents of a String as the name for a variable

    I'm trying to write code that will evaluate the contents of a String variable and then use the contents as the name for an object. For example, my program will create an unknown number of Student objects. I would like to name the Student objects student1, student2,... . In the code below, how do I get the last line of the method to create a new Student called something like "student3" instead of "varName"? Thanks, Julie
    int numberOfStudents= 0;
    public void createStudent()
       numberOfStudents++;
       String varName = "student" + numberOfStudents;
       Student varName = new Student();
    }

    The name of the reference variable is irrelevant to the functional aspect of the application. The 'Name' should be a property of the student class. EG
    class Student {
    private String name;
    public String getName() { return name; }
    public void setName() { this.name = name; }
    public Student() { this(null); }
    public Student(String name) { setName(name); }
    now your code becomes
    public void createStudent() {
    numberOfStudents++;
    Student newStudent =
    new Student("student"+numberOfStudents);
    // now do something with the new student...
    If you're expecting to use the 'Student' instance outside of this method you need to store a reference to it somewhere more accessible (like a field, in a list or an array) or return the reference from this method...

  • How do I use FILE_GET_NAME and make my resulting dataset name unique?

    Okay, here's a case where I have a bunch of pieces to the puzzle -- a little knowledge here, a little knowledge there -- but I'm having trouble putting them together.
    I am working on an RFC that is called by XI as part of an interface.  This interface will execute every 15 minutes.  As part of the RFC's execution (which is very simple and straight-forward) I would like to write out a dataset of the processing results.  I have already learned how to use the OPEN DATASET, TRANSFER, and CLOSE DATASET commands, so I'm good to go there.
    Here's what I'd like to do:  Because this can run every 15 minutes, I don't want to keep overwriting my dataset file with the latest version.  I'd like to keep the dataset name unique so it doesn't happen.  Obviously, the first thought that comes to mind is adding a date/time stamp to the file name, but I'm not sure how -- or the best way -- to do this.
    Also, I was told I should put the file -- for now -- into the DIR_DATA directory.  I had no idea what this meant until I was told about t-code "FILE" and that this was the logical file name.  Someone in-house thought I'd need to use a function called FILE_GET_NAME to make things easier.
    Okay, so I need to use FILE_GET_NAME apparently, somehow plugging in DIR_DATA as the directory I need, and I want the resulting file name to have the date/time added at run time.  I'm thinking when it comes to batch processing and writing out datasets, this has to be something that someone's already "paved the road" doing.  Has anyone done this?  Do you have a little slice of code doing just this that you could post?  This would go a long way toward helping me understand how this "fits" together, and I would greatly appreciate any help you can provide.
    As always, points awarded to all helpful answers.  Thank you so much!

    hey,
    here is the brief description of logical & physical path.
    in the physical path, we will give total path of the file,where the file is located actually in the server.
    for example : /INT/D01/IN/MYFILE.
    this is the physical path in my client for a particular file.
    some times this have problems like D01 above in the path,
    is development system. if we move to quality, it will be Q01 etc..
    to make every file independent of the server location, we use logical path concept, which is nothing but, instead of giving the total physical path like above,we will give this logical path & file name. before that we will create a logical path in sap & assign some physical path to it.
    the below function module is used to get the actual physical path by giving the logical path name & file name
    *&      Form  GET_PHYSICAL_PATH
          text This form used to get the Physical Filepath by giving the Logical path & the File name.
    FORM GET_PHYSICAL_PATH.
      DATA : LV_FILE(132) TYPE C,
             V_LENGTH TYPE I   ,
             LV_LOGNAME LIKE FILEPATH-PATHINTERN.
      LV_LOGNAME = P_LPATH.
    *--this P_LPATH is a parameter in the selection screen
    *--this P_FNAME is the actual file name as below
    *--PARAMETERS : P_LPATH TYPE RLGRAP-FILENAME,
                    P_fname TYPE RLGRAP-FILENAME.
      CALL FUNCTION 'FILE_GET_NAME_USING_PATH'
           EXPORTING
                CLIENT                     = SY-MANDT
                LOGICAL_PATH               = LV_LOGNAME
                OPERATING_SYSTEM           = SY-OPSYS
                FILE_NAME                  = p_fname
           IMPORTING
                FILE_NAME_WITH_PATH        = LV_FILE
           EXCEPTIONS
                PATH_NOT_FOUND             = 1
                MISSING_PARAMETER          = 2
                OPERATING_SYSTEM_NOT_FOUND = 3
                FILE_SYSTEM_NOT_FOUND      = 4
                OTHERS                     = 5.
      IF SY-SUBRC <> 0.
        MESSAGE E000 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
    *--ur total physical(absolute) path will be in LV_FILE.
        V_FILEPATH = LV_FILE.
      ENDIF.
    ENDFORM.                    " GET_PHYSICAL_PATH
    unique naming for ur file names;
    after getting the physical path from the above function module, append date& time stamp to the file as below.
    CONCATENATE V_FILEPATH
                SY-DATUM
                SY-UZEIT
                INTO V_FILEPATH.
    This way you can make your file name unique always
    regards
    srikanth
    Message was edited by: Srikanth Kidambi

  • Is there a way to make 3g and not wi-fi the priority for sending text messages to someone using an iOS5 device?

    Here's the problem:  I am often in a building which has free wifi but the wifi requires that you accept the terms of use during every browsing session.  If I receive a text message from someone who is also using iOS5, the phone seems to default to wi-fi to send my response.  If I have not yet accepted the terms of use for the building's wi-fi, my phone wont send the text message response.  I don't know if that is because the phone is connected to a wifi signal albeit one that can't yet access the internet.  For whatever reason, the phone is just trapped in a "sending messge" loop and wont break out of it until I open my browser and accept the terms of use.  This is the situation notwithstanding the fact that I have 3g service and the signal is available to send sms/mms.
    Can anyone offer a suggestion other than disabling wi-fi?
    Thanks.

    Thank you for your reply.  I looked at my settings and the phone has been set on "send as SMS"--but for some reason, the phone is continuing to try to send it over wifi despite the lack of an internet connection on wifi.  It would seem that after a minute or more of trying, the phone would recognize that wifi wasnt available and would send it on SMS but it apparently doesnt.  I can, of course, turn off iMessage but I dont like the idea of having to do that everytime---particularly since an increasing number of my contacts are using iOS5 devices.
    Thanks again for your response but it does seem that there is an issue that needs to be addressed.

  • How do you use RGB And CMKY colours in the same document for print?

    I want to create a piece of work with a navy blue back ground and a font on top but don't want to change the colour just the RGB to CMKY mode so the colour looks slightly brighter sitting on top. I have seen this printed out in black and looks amazing but don't know how to create it. Could someone please help?

    Sophie,
    Your File>Document Color Mode (along with the Edit>Color Settings) determines how the colours are interpreted, more specifically fitting it into the colour gaumt in question. CMYK Color (Mode) had a narrower gamut of less bright colours, RGB has a wider gamut of more vivid colours.
    Your Window>Color palette expresses the colours in terms of your chosen combinations of CMYK or RGB (or a few others) values, which are then interpreted by the colour mode.
    This means that you can have four combinations: you may insert CMYK values in both CMYK and RGB mode, and you can insert RGB colours in both CMYK and RGB mode.
    You will find that most CMYK/RGB values will change once saved, owing to the fundamental differences between the two colour modes.

  • How to find out the used space and free space in the DB for attachments

    Hi,
    In CRM 5.2 web UI, we can save a transaction by saving attachments like work documents or text files.
    Could someone help me find out the used space, free space, maximum capacity on the CRM DB for these attachments.
    Thanks & Best Regards,
    Ramesh.

    Hi,
    check with  below table
    TNAPR   ---  Processing programs for output
    and NACE Transaction code
    NACE  --  out types
    Regards,
    Madhu

  • TS4009 Trying to restore my 4s using icloud and not been given the option to restore from icloud (it says it was last backed up yesterday)

    Hi, I have somehow deleted everything from my new 4s.  My last computer back up was on my old phone.  I have set up back up on icloud and it was last backed up yesterday.  When I follow instructions it says it should give me the option to restore from back up on icloud, but it doesn't.  What am I doing wrong ? (I have plugged it in and restored via computer and gone back to set up assistant, but it doesn't give me that resore option on the back up page)

    Settings/iCloud/Storage & Backup/Manage Storage, swipe sideways on the entry to reveal the delete button.

  • How can I get my data from a old iPad to a new iPad using iCloud and not iTunes

    How can I get my data from a old iPad to a new iPad using iCloud and not iTunes

    Restore from the iCloud backup - assuming that you were backing up to iCloud in the first place. If you weren't using iCloud for backup - then you are out of luck.
    If you were backing up to iCloud - you have to erase all contents on the iPad in Settings>General>Reset>Erase all content and settings - before you can restore from the iCloud backup.
    Read this article before you do anything else
    http://gigaom.com/apple/ios-101-set-up-and-restore-from-icloud-backup/

  • EXS-24 key range and note velocity data in name of file?

    Hi all,
    Cheers for any help in advance. Basically someone told me that if i was to put the key range and note velocity in the name of a file i want to put into EXS-24 it will automatically assign those values within the edit page.
    All i want to know is how do i do this and what order do i need to put this in the file name?
    cheers

    I already answered this in another forum where you posted it.

  • I have a 17" Mac Book Pro and a 13" Mac Book Pro...both use the same Apple ID. My wife now wants to change the Apple ID on the 13" to her Apple ID.  How do I do this and not loose the information on that computer?

    I have a 17" Mac Book Pro and a 13" Mac Book Pro...both use the same Apple ID. My wife uses the 13" and now wants to change the Apple ID on the 13" to her Apple ID.  How do I do this and not loose the information on that computer?

    Hello Teddy53149 and welcome to Apple Support Communities,
    Follow this procedure:
    Change your OS X account name and home directory name - Apple Support
    As they recommend and as always when you're messing with administrator accounts back everything up first.

  • I use i-tunes for backing tracks with an acoustic band...how can I get a playlist to play one song at a time and not go to the next one until I manually select it?

    I use i-tunes for backing tracks. How can I set up a play list to play only one song at a time and not go to the next one until I manually select it?
    Thanks

    Uncheck all the songs in the playlist. iTunes will then play one song and stop.
    Regards.

Maybe you are looking for

  • Cue 8.6.6 not transfer to cucm extension

    Hi Expert I have a router 2921 with cue 8.6.6 integrated with CUCM 8.6. My issue is when an incoming calls come to the router from PSTN the AA is playing the welcome message when i try to enter any extension register in cucm is not accepting the dtmf

  • Clarification for Pro 8 EULA

    I'd like to receive some clarification on an issue I certainly feel deserves it. Please keep in mind any reference to "original media" need not be digital at all or in any way under the control of Adobe before being loaded or converted to PDF format.

  • STO po number not appearing in VL10B transaction

    Dear Guru, I have created STO PO with inter plant transter and shipping tab is also coming as per required in STO but for further operation in VL10B transaction STO PO number is not appearing Pl let me know if i have missed anything important. Regard

  • How can I stop the recent and favorites from show on the screen of my i-phone and i-pad, this is a new feature of iso 8

    How can I stop the recent and favorites from show on the screen of my i-phone and i-pad, this is a new feature of iso 8

  • Error ORA-12162 with sqlplus

    Hi everybody, When I open sqlplus64, I take the user-name ans password and I have the error message ERROR: ORA-12162: TNS:net service name is incorrectly specified But while processing the user-name and password are the same I made ... I don't unders