How to adjust location of Details Group in NewsDisplayCollectionRenderer?

I am customize NewsBrowser layout for the news display.
I tries to move the Detail Command Group (i.e. Send To   Details   Give Feedback) to the "bottom left" of the news, since I configured the NewsDisplayCollectionRenderer (the default Collection Renderer for NewsBrowser) to 3 rows and 2 columns. Which parameter I should change to move the Detail Group location? as I know it is not part of the xml resource renderer can do.
Do I need to import the layout java class (right now is SimpleLayout) to change that?
My another question is where is the location of all the Java Classes that implements the Renderer?
Thanks for advice.
Kent

Hi Kent,
let's start with the second question:
Configuration - Content Management - User Interface - Mapping - Collection Renderer (or Resource Renderer or Layout Controller or whatever you like).
If you want the implementation class of the SimpleLayoutController, this is for example com.sapportals.wcm.rendering.layout.cm.SimpleLayoutController. Use any nice search tool like WinRAR or within NWDS/Eclipse ClassLocator to find the implementation. In this case it would be under within km.appl.ui.flex.control_core.jar to be found under ...\irj\root\WEB-INF\portal\portalapps\com.sap.km.cm.ui.flex\private\lib
About the first question, of which I'm unsure if i got it right: You want the commands appear on the left side instead of the right?! For this you'd have in fac to change the resource renderer implementation. See http://help.sap.com/saphelp_erp2004/helpdata/en/04/4c628bdff4f94f9b0934d0d926fa51/frameset.htm for an overview why at least the layout controller is definitely not responsible for that.
Check com.sapportals.wcm.rendering.resource.cm.XMLResourceRenderer, method render(), Component "action".
Hope it helps
Detlev

Similar Messages

  • Problem with "Uncommited changes" when viewing certain rows in detail group

    Hi Guys,
    When I try to view an row in a detail group I get a popup box saying that there's uncommitted changes. This will happen even when there's no changes in the master group. It will also happen for all rows in the detail group except for the first row listed.
    e.g.:
    Master Group is department
    Detail group is employees
    The detail group will display:
    Employee 1
    Employee 2
    Employee 3...
    If I select to view the details for employee 1 it will go to the form view without any problems, if I select any other row (2,3,4..) I get a popup box warning that there's uncommitted changes on the current page.
    If I go into the form view of employee 3 (confirming that there's uncommitted changes on the current page as I do) and then use the breadcrumbs to go back to the department screen then Employee 3 is the only detail group row I can go into without getting the uncommitted changes popup.
    How is it possible that different rows in a detail group can cause this popup to happen?
    I am using JDev 10.1.3.2
    and the pages where generated by JHS 10.1.2.26
    Is it possible that when the radio button that is used to select a detail group is changed that this is showing up as an uncommitted change in the javascript?
    I need a fix for this urgently so a fast response would be greatly appreciated
    Bar

    Im using a custom method to stack the detail groups and Im missing the line that adds the radio button to the ignore list:
    #if (${JHS.service.generateJavaScript})
    <afh:script text="addToIgnoreChangedFields(['${group.name}:${group.name}Table:selected']);" id="${group.shortName}IgnoreChangedFields"/>
    #end
    is there a certain place to add this in the template?

  • How to manually add second detail on master detail page

    Hi,
    Apex 4.1
    can anyone tell me which steps to take excactly to manually create a second detail region on a master-detail form ?
    So far I've copied the first detail region and customized it to the second detail table. Copied the processes and adjusted them.
    What happends now is whenever I push one of the 2 "add row" buttons the rows are always added to the last region shown on the page. (also if I try to change anything on the data on the form and submit it all kind of errors show up )
    It seems like the javascript:addrows() does not work for the region it's defined in, but how to adjust this ??
    If I'm forgetting any other steps please also let me know.
    Found multiple threads on this but so far no explanation on how to manually do this.
    Cheers
    Bas

    Bas,
    Multiple tabular forms or detail regions on a master-detail form are not yet supported. So you best option would be to make one or both of the detail regions read-only report regions with edit links on each row, which would take you to a detail edit page. Alternatively you could try to manually build two tabular form regions on your page, however you will not be able to use any of the built-in tabular form features then, incl the add-row functionality, the multi-row update processes and declarative validations. So all of this would need to be hand-coded in PL/SQL and JavaScript. We have plans to support multiple tabular form regions out of the box, but we don't yet when this might make it into APEX.
    Regards,
    Marc

  • Display image in detail groups in jheadstart 11.1.1.3.35

    Hi, I've been trying to make a project that should display one picture in one of the detail groups. but when i generate the jheadstart definition editor and run the project, it shows an empty box for the image (image is not loaded).
    I've seen the source code and every thing seems right and when i use that detail group as a master group the image display just fine.
    is jheadstart 11g have a problem for displaying image in detail groups? because I've heard this option works in 10g pretty fine.
    please help me how i can fix this problem and i have to say my project deadline is coming :(

    We are not aware of such a problem.
    To really check whether it is related to a detail group, can you temporarily make the detail group a top-level group, generate and run your application to see whether the problem goes away?
    Make sure you first uncheck the Same Page checkbox before you drag and drop the detail group to become a top group.
    There is a known ADF issue that when you upload a new image, the new image is only shown when you restart the session.
    Steven Davelaar,
    JHeadstart Team.

  • ** How to show the master query group for once in Report??

    Hi
    I've developed a master-detail groups at a report
    The master one has it's repeating frame and the detail one has another repeating frame and put at another page at the layout.
    The porblem is that the master one is shown (the same record) in pages for times equal to the number of the detail records which is own for that master record!
    Example:
    if the master record has got three details then the master data will be show for three times (three pages) at run time and then the page number 4 will show the three detail records.
    How to make the master data to be shown only for once (page number 1 only) and then show the detail three records at the next page (page number 2) at run time???

    Hi,
    the question back is, what you've done for this. At default the master record is only shown once. Could it be, that the master-fields are inside the repeating frame for the details?
    Regards
    Rainer

  • How to change the order of groups in AdvancedDataGrid

    Hello,
    I have a dataset similar to the following:
    Region   Sales
    ======   ======
    North     10
    North     15
    South     5
    East      20
    West      5
    West      4
    West      3
    I'd like to group by Region and sort the groups by the Sales subtotal for each group. I already have the data grouped correctly using GroupingCollection2. How can I sort the groups by the sales subtotal (it sorts by region name by default)? I've seen some posts that talk about creating a custom groupingObjectFunction and applying a group sort. But I'm still confused. Can someone give me some pointers on how to achieve this?
    So ideally, the AdvancedDataGrid would end up looking like this with the regions sorted by sales subtotal;
    Region    Sales
    ======    ======
    North
              10
              15
    subtotal 45
    East
              20
    subtotal 20
    West
              5
              4
              3
    subtotal 12
    South
              5
    subtotal 5

    Thanks, I looked at that earlier but it doesn't contain the solution I was hoping to find.
    I ended up not using GroupingCollection. I think GroupingCollection is cool, but it isn't really customizable to the extent I need.
    I just ended up transforming my data into a hierarchical form that could be used directly by AdvancedDataGrid. At the top level of my hierarchy, I have the detail txn groups, subtotal groups, and grand total groups. To sort the groups, I use custom SortFields. So, for example, if I want to sort by group name, I add a SortField for the groupName attribute. Both the Detail Group and the Subtotal Group share the same group name. Then I add a SortField for a summaryRow attribute. Only the subtotal group has that attribute. This ensures that the Detail Group is always followed by the associated Subtotal Group after sorting. I store my groups in an XMLListCollection and then set the sort attribute, then call refresh().
    Not ideal, but it works. If my requirements were more complex, perhaps my approach wouldn't have worked as well. But as it stands it works well and has good performance.
    I was hoping that ADG could handle this kind of sorting for me, but after looking at the source code, it seems like this is not possible without implementing my own custom GroupingCollection class and possibly other supporting classes.
    One key thing to note is that clicking the column header to sort within groups works fine. However, if you then attempt to sort at the group level, ADG hangs while trying to refresh itself. The trick is to assign the dataProvider.sort attribute to a temporary variable, then set it to null (this sort variable contains the ADG column sorts that the user clicked). Apply your group level sort and then reapply the dataProvider.sort attribute.

  • SAPScript: how tu adjust heigh and width of standard text (logo)?

    Hi!
    how to adjust heigh and width of standard text (logo)?
    I do not want to edit the logo, because it is used elsewhere, so I need to adjust heigh and width when using it in a form.
    For now stadard text comes over the window. Here is how I use it:
    INCLUDE ZHEX-LOGO OBJECT TEXT ID ST
    Will reward,
    Mindaugas

    Hi Mindaugas,
    While uploading using RSTXLDMC. You have to maintain your size of the logo.
    Go through below mentioned document.
    Upload TIFF files to SAPscript texts
    Description
    The report RSTXLDMC allows a TIFF graphics file to be uploaded from the file system of the R/3 GUI to a standard text in the R/3 word processor SAPscript. (TIFF is a registered trademark of the Aldus Corporation.)
    When uploading, the TIFF graphic is converted either into a black and white raster image (parameter type=BMON ) or as a color raster image with a maximum of 256 colors (parameter type=BCOL).
    The black and white raster images ( BMON) can be printed using the following printer types:
    PCL-5 printer
    PostScript printer
    Kyocera PRESCRIBE printer
    Device type SAPWIN (with SAPlpd 32-bit as of Version 2.41 for Windows NT or Windows 95)
    The color raster images (BCOL) can be printed using the following printer types:
    PCL-5 printer with color capability (e.g. HP Color LaserJet). Color graphics are not printed properly on monochrome PCL-5 printers (e.g. HP LaserJet 5), because the printer cannot set the color palette as required and does not perform any gray-level conversion.
    PostScript printer (color graphics are automatically converted to gray levels on black and white printers using PostScript) Device type SAPWIN (with SAPlpd 32-bit as of Version 2.41 for Windows NT or Windows 95) During TIFF graphic import, the basic set " Baseline TIFF 6.0 " of the TIFF specification 6.0 is supported.
    To maintain compatibility with earlier versions of the report RSTXLDMC, it is also possible to convert the TIFF graphic directly into a black and white raster image for a particular printer type when uploading. These are the three printer types PCL-5 (parameter type=PCL ), PostScript (parameter type=POST) and Kyocera PRESCRIBE (parameter type=PRES ). A raster image uploaded in this manner can only be printed using the appropriate printer type.
    Besides TIFF raster graphics, direct printer commands in the respective printer language (PCL-5, PostScript or Prescribe) can also be contained in the file which is to be uploaded (printer macros). They are then transferred to the standard text unmodified.
    The graphics are output by inserting the standard text into the document which is to be printed, directly or using an INCLUDE command. The printer commands, which for example draw a company logo on the page, are only output if the print request is processed by the printer driver corresponding to the macro type, otherwise they are ignored. Example: A macro of type PCL is contained in a print request. If the request is output to a printer with type HPLJIIID (to which the driver HPL2 is assigned), the macro data is sent to the printer. If the request is printed on a printer of type POSTSCPT (to which the driver POST is assigned), the output of the macro data is suppressed.
    In the standard text, the printer commands are inserted between the HEX ... ENDHEX command lines in hex notation. Various report parameters allow the graphic or printer macro to be placed on the page or at the current text position. Note: When the /:HEX command line which precedes the macro appears in the text, a line break is generally made before the graphic is output. The output of the macro therefore begins in the next text line at the left window border of the current page window, as long as a shift to the right is not specified (see below).
    If your own printer macros are uploaded and not TIFF files, you must ensure yourself that the normal (text) output of the driver is not impaired when the printer commands are inserted in the output from the uploaded file. The printer drivers pass the data contained in the file to the printer unmodified, therefore without control over the individual actions this triggers on the printer. For example, syntax errors should not be generated by the PostScript commands (type POST), or form feeds should not be contained in the file (unless this was intended) for PCL-5 (type PCL).
    Restrictions:
    In general, the output of graphics generated via RSTXLDMC from R/3 is not suitable for mass printing (that is, unless you are using the "Graphic resident on printer" feature): the R/3 spooler has to hold significantly more data in its output files. If the graphics occur several times in a spool request, the data also reoccurs. Apart from this, the network is more heavily loaded in sending the increased volume of data to the printer and the printer output is slowed significantly (varies according to printer model) if raster graphics are output as well as the text.
    If your graphics reside on your printer during a printing job, the degree of 'correctness' with which they are printed depends on the amount of memory available in your printer. R/3 print drivers are unable to determine whether the amount of memory available is enough! If one of the graphics that you have marked as resident is not displayed, try reloading the graphic and switching off the parameter "Graphic resident on printer".
    When printing black and white graphics on PCL-5 printers, image data is compressed in order to greatly reduce the file size.
    The output of graphics and macros on PCL-5 printers, PostScript printers and device type SAPWIN (type BMON, BCOL, PCL, POST) is adapted to the page orientation used, that is if landscape is used instead of portrait, the graphic is also turned when output. This is not the case for the PRESCRIBE printers (type BMON, PRES)! With these printers, the graphic is not automatically turned when landscape is used, but appears on the page in the identical position as for portrait. You are therefore recommended not to output raster images when printing in landscape on PRESCRIBE printers.
    PRESCRIBE printers do not support the resolutions 200 and 600 dots per inch when printing raster images.
    Not all PCL-5 compatible printers support the resolutions 200 and 600 dots per inch when printing raster images.
    TIFF graphics with compression type 2 ("CCITT Group 3 1-Dimensional Modified Huffman run length encoding ") can currently not be imported although this is a component of the Baseline TIFF 6.0 specification for monochrome images.
    Color TIFF graphics with full color representation (ie. a lot more than 256 colors) are automatically converted into 256 gray levels when uploading with type BCOL.
    When TIFF graphics are converted to black and white raster images (type BMON, PCL, POST, PRES) there is no default simulation of gray levels or colors of the original image on the printer (for example, by using different tones of gray). Each pixel of the original image is converted to a white or black pixel on the printer according to its intensity value.
    The parameter "Number of TIFF gray levels" does, however, allow a simulation of gray/colour tones of the original image through levels of gray on the printer, when using type PCL, POST or PRES. This parameter is ignored for type BMON.
    The conversion of TIFF graphics can be so time-consuming that it is recommendable to execute the report RSTXLDMC in batch processing. Note: in batch, the file is always read from the file system of the application server (ie. not from the file system of the GUI).
    The length of an individual text in the text file is limited. When importing TIFF graphics with very large dimensions, especially if more than 2 gray levels are used, a termination can therefore occur when saving the standard text ("EXPORT_TOO_MUCH_DATA"). This restriction can only be avoided by reducing the TIFF graphics. Note: The display of a raster image in Postscript or PRESCRIBE format needs from two to three times as much space as displaying in PCL-5.
    When processing very large TIFF images on PostScript printers, a print termination can occur with PS error message "limitcheck". In this case the internal memory of the printer is insufficient to scale the required raster image. This implementation limit cannot be influenced by changing the report parameters when importing.
    Requirement
    The file which is to be uploaded can contain the following formats/ commands:
    Baseline TIFF 6.0 raster image files. The image information of the TIFF file is converted into black and white/color raster images when uploading. Note: As the TIFF format allows a variety of variants, only a basic set of TIFF 6.0 formats is supported here described in the TIFF 6.0 specification as Baseline TIFF 6.0.
    PCL : PCL-5, Hewlett Packard Printer Control Language 5 for HP LaserJet 3, 4, 5 series and compatible printers. The data is output by the printer driver HPL2 only.
    PRES: Kyocera PRESCRIBE for Kyocera laser printers. The data is output by the printer driver PRES only.
    POST: Adobe PostScript or EPS format (encapsulated PostScript ) for PostScript printers. The data is output by the printer driver POST only. In the upload, one of the end-of-file markers (CTRL-D, hex $04) which may be contained in the PostScript file is not transferred.
    For PostScript files which contain a bounding box entry (for example, all EPS files) the macro/graphic can be scaled to a size specified by the user. In this case, a small lead text and trailer are generated by the report for the macro data and inserted in the standard text.
    Parameters of RSTXLDMC
    File name
    Path and file name of the file to be uploaded in the file system of the R/3 frontend (dialog processing) or in the file system of the application server (batch processing)
    Type
    Way which the data contained in the file is to be converted. Possible values are BMON, BCOL, PCL, POST and PRES. With parameter values BMON and BCOL, a TIFF 6.0 file is expected. This is converted into either a black and white raster image (BMON) or a color raster image (BCOL). These raster images are printer-independent and can be printed using various printer types (see above).
    With parameter values PCL, POST and PRES, either a TIFF 6.0 file or a file with printer commands in the appropriate printer langauge is expected. If the file is a TIFF file, it is converted into a black and white raster image for the printer type specified in the parameter. The presence of a TIFF file is recognized automatically. If the file is not a TIFF file, the file contents are regarded as the printer macro of the respective type. Data loaded with type PCL, POST or PRES can only be printed on the respective printer type.
    Resolution for TIFF raster images
    Resolution which should be used when importing a TIFF raster image, in dots per inch (dpi). If an allowed value is entered here, this overrides the resolution information in the TIFF file. The allowed values are:
    75 dpi
    100 dpi
    150 dpi
    200 dpi (not for type PRES, for PCL only HP LaserJet 4,5 series)
    300 dpi
    600 dpi (not for type PRES, for PCL only HP LaserJet 4,5 series)
    Changing the resolution affects the size of the graphic on the printer. If a resolution of 300 dpi is stated in the TIFF file and this parameter is set to 75 dpi, the graphic is four times as big when printed as at the outset.
    Note: Kyocera PRESCRIBE printers do not support 200 and 600 dpi resolutions.
    Note: Not all PCL-5 printers support resolutions 200 and 600 dpi, for example HP LaserJet 3 series does not, but LaserJet 4 and 5 series do.
    Graphic Resident on Printer
    Normally, graphics that occur more than once in a printing job (a company logo that appears on each page, for example) are sent to the printer repeatedly each time they are needed. In order to avoid this kind of redundancy, you can select this checkbox on the selection screen. The R/3 print driver then stores the graphic in the printer's memory and the printer retrieves the 'resident' graphic memory every time that re-occurs in your job.
    Caution: Whether or not the printer correctly reproduces the graphic depends on the amount of memory available in the printer during the printing job! You should avoid using this feature with color graphics since they take up a lot more memory than monochrome graphics.
    This parameter can only be used with types "BMON" and "BCOL".
    Absolute positioning
    Determines whether the macro/graphic is positioned absolutely or is to be output at the current text position. If this checkbox is selected, the graphic is positioned absolutely (parameters "X-position" and "Y-position" are used), if this checkbox is not selected, the graphic is positioned at the current text position (parameters "Reserved height" and "Shift to right" are used)
    Absolute X-position
    Horizontal position (space from left border) of the macro/graphic, if absolute positioning is required. This is the parameter XPOS of the HEX command.
    Absolute Y-position
    Vertical position (space from upper border) of the macro/graphic, if absolute positioning is required. This is the parameter YPOS of the HEX command.
    Reserve height automatically
    If this checkbox is selected, the system automatically inserts the actual height of the graphic during printing into the subsequent "Reserved height" parameter.
    Reserved height
    If positioned at the current text position, this parameter specifies the horizontal spacing to be reserved for the macro/graphic, which must not be printed with text from the paragraph. This is the parameter HEIGHT of the HEX command.
    Shift to right
    If positioned at the current text position, this parameter specifies the space between the left border of the macro/graphic and the left border of the page window. If this value is increased, the macro/graphic is shifted to the right. This is the parameter LEFT of the HEX command.
    Unit of measurement for positioning
    The unit of measurement in which the position values (X,Y, height, shift) are specified. Possible values are CM (centimeters), MM (millimeters), IN (inches), PT (typographic point = 1/72 inch), TW (1/20 point = 1/1440 inch)
    Text title
    Comment used for the attribute "Title" of the standard text generated as well as as a comment line in the text itself
    Line width
    Number of columns to be used in the standard text when generating the HEX...ENDHEX command lines. The default value is 132
    Text name
    Name of the standard text to be generated. If an * character occurs in the name, it is replaced by the value of the parameter "Printer type". For example, if the entry is ZHEX-IMAGE1-* and the printer type = PCL, the text name ZHEX-IMAGE1-PCL is generated. The default value for the name is ZHEX-MACRO-<printer type>, but the standard text can be named as required (take into account customer reserve). Standard texts are client-dependent!
    Note: The name of a standard text can be up to 32 characters long !
    Text ID
    ID of the standard text to be generated. The default value is ST (general standard texts)
    Text language
    Language key of the standard text to be generated. The default value is the logon language
    PostScript scaling
    Flag which determines how the macros/graphics of type POST are handled. If set to 'X', the report expects a PostScript comment line in the file
    %%BoundingBox llx lly urx ury (e.g. %%BoundingBox -1.5 0 21.4 14.1)
    as present, for example, in all EPS files, in which the dimensions and the position of the macro/graphic are specified (if a bounding box comment is not included, 0 0 1 1 is assumed as the default value). This information is then used by the report to insert PostScript commands which scale the macro/graphic to the size specified in the parameters "Width" and "Height" (listed below).
    If the flag is set to ' ' (blank), the PostScript file is transferred to the standard text without any additions (any transformations to the coordinate system used by the printer driver must already be contained in the file).
    The flag must be set to 'X' for the import of TIFF files for type POST.
    Width according to PS scaling
    Required width of the macro/graphic if the flag PostScript scaling is set. Can remain at zero for the import of TIFF files, the size is then determined by the resolution of the graphic.
    Height according to PS scaling
    Required height of the macro/graphic if the flag PostScript scaling is set. Can remain at zero for the import of TIFF files, the size is then determined by the resolution of the graphic.
    If you want to scale the PostScript graphic with these parameters, one of the two values, width or height, can be specified with zero. The graphic is then scaled so that the width-to-height ratio remains unchanged and the original graphic is not distorted.
    Unit of measurement for PS scaling
    Unit of measurement in which the parameters "Width" and "Height" are specified. Possible values are CM (centimeters), MM (millimeters), IN (inches), PT (typographic point = 1/72 inch), TW (1/20 point = 1/1440 inch)
    Number of TIFF gray levels
    Number of gray tones which are to be used on the printer for displaying the original image. Note: This parameter is only evaluated when using types PCL, POST or PRES!
    Possible values are 2,4,9. With the default value 2, each pixel of the original image is converted either to a white or a black pixel on the printer. With the value 4, each pixel of the original image is converted on the printer with 4 pixels, which simulate 4 different gray levels. With the value 9, each pixel of the original image is converted on the printer with 9 pixels which simulate 9 different gray levels.
    Note: With values 4 or 9 the resolution of the image is doubled or tripled. The restrictions on the possible resolutions (see previous parameter) then apply for the resulting resolution.
    Output
    Individual steps of the upload procedure are logged in the report list generated and, if necessary, errors reported. The uploading of TIFF graphics, in particular, is cancelled if there is a variant which is not supported. A message to this effect is then issued. If execution is successful, the report generates a standard text with the key specified in the parameters. If the standard text already exists, a window appears with a warning before the text is overwritten.
    Regards,
    Ameer Baba.

  • How to use locate my i pad mini

    How to use locate my ipad mini

    Hello angeleigh4,
    It seems you would like to learn how to use the location features of iCloud to find an iOS device. The following article will instruct you on how Find My iPhone works: 
    iCloud: Find My iPhone overview
    Find My iPhone helps you locate and protect your iPhone, iPad, iPod touch, or Mac if it’s ever lost or stolen. With Find My iPhone set up on your device, you can do the following:
    Locate your device on a map
    Play a sound on your device to help you find it
    Use Lost Mode to lock and track your device
    Note: If you put your iPhone 6 or iPhone 6 Plus in Lost Mode and you have credit and debit cards in Passbook for Apple Pay, Find My iPhone attempts to suspend your cards immediately, even if your iPhone is offline.
    Remotely erase all of your personal information from the device
    Note: If you erase your iPhone 6 or iPhone 6 Plus and you have credit and debit cards in Passbook for Apple Pay, Find My iPhone attempts to remove your cards immediately, even if your iPhone is offline.
    If you’re a member of a Family Sharing group, you can also use Find My iPhone to help find and protect your family members’ iOS 8 devices and Mac computers with OS X Yosemite. Family devices and computers must be set up to share their locations with other family members. For more information, see Set up Find My iPhone.
    When you set up Find My iPhone, Activation Lock is turned on automatically. Activation Lock makes it harder for anyone to use or sell your iPhone, iPad, or iPod touch if it’s ever lost or stolen. For more information, see the Apple Support article Find My iPhone Activation Lock.
    Access Find My iPhone
    Access Find My iPhone from any computer at icloud.com/#find, or download and use the free Find My iPhone iOS app. When accessing Find My iPhone from a computer, make sure you use a browser recommended in the Apple Support article System requirements for iCloud.
    Apple Support article: Troubleshooting Find My iPhone
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • How to adjust start up for iTunes Helper.exe

    XP Home, SP2, iTunes 7.1.0.59,
    in msconfig there are two start up iTunes releated items:
    iTuneshelper.exe,
    qttask.exe
    I wish to tweak my system and remove these from Starting up, thus, msconfig startup, and access them only when I start iTunes or something related to Quick Time.
    Please advise in explicit detail how to adjust the settings for both iTunes and Quick Time so as to have them only start when I turn them on manually.
    Thank you in advance,
    Robert
    HP Pavilion ZE 4230   Windows XP   1.83Ghz, 512 RAM, 40GB HDD, 250GB external HDD

    qttask is just the system tray icon for Quicktime. You can stop this from the advanced tab of Qicktime preferences.
    There isn't a simple adjustment for iTunesHelper.exe. It doesn't use significant resources unless something is wrong and you should leave it alone.
    There is a short piece on what the background processes do here:
    http://docs.info.apple.com/article.html?artnum=302488
    If you must control iTunesHelper startup, maybe something like Winpatrol would help help.
    http://www.winpatrol.com/

  • How to adjust volume on Audio Timelines

    A couple questions about volume adjustment on the various Audio Timelines on Premiere Pro CS 5.
    1) How to adjust volume level of an mp3 on the Audio 2 timeline?
    2) How to adjust or mute volume of an 'individual' video clip on the Video 1 and Audio 1 timeline? (I have many clips on the timeline and know how to mute them all, but in this case, I'm looking to only mute certain clips in the timeline.)

    Along with the material covered in the Help File, that Ann linked to, see this ARTICLE. It goes into a little more detail on the differences between Clip Keyframes and Track Keyframes (generated with Audio Mixer). While the effect of those can be the same, there are nuances, that one should make note of.
    Good luck,
    Hunt

  • Using Gmail in iPhoto and cannot find any of my groups to email.  I have at least seven or eight groups that I email, each containing over 50 addresses. Is there a way to locate my email groups using iPhoto to send out mail in Gmail? Using version 9.5.1

    Using Gmail in iPhoto and cannot find any of my groups to email.  I have at least seven or eight groups that I email, each containing over 50 addresses. Is there a way to locate my email groups using iPhoto to send out mail in Gmail? Using version 9.5.1  (902.17) OS is Mavericks 10.9.1.

    Your question and description is not very clear to me, so hopefully something here will help:
    1. Gmail is a service not an app or a place. So you need to access the service with an app - that can be iPhoto, Mail, Outlook or any other mail client, or even a Web Browser like Safari or Firefox.
    So you can't "go to GMail" as you write, but instead you go to an application set up to use the GMail service.
    2. iPhoto is not a mail client. It's a handy way to email pics to Grandma, but for what you're doing you need to use an app that supports all of the Gmail service. iPhoto doesn't. There is no way around that.
    3. How to send to groups will vary depending on what app you use to access the GMail service. All of these apps can receive photos from iPhoto, either - as in the case of Mail and Outlook, via the Share function - or, in the case of all the rest - via a Media Browser.
    For help sending to Groups using any of these other apps you need to ask omn their respective forums. But the workflow is quite simple:
    Using Mail or Outlook set in the iPhoto Prefereneces:
    1. Select the pic(s) you want to share.
    2. Choose email from the Share function
    3. Make your selections re size etc
    4. The email opens up in Mail or Outlook
    - from there you need to figure out how to use the email client.
    Using any other app:
    1. In the mail app create a new email
    2. Click on the Attach button or link
    3. Use the Media browser to select the pic(s) you want to send
    4. Attach them
    - from there you need to figure out how to use the email client.
    For help accessing your photos in iPhoto see this user tip:
    https://discussions.apple.com/docs/DOC-4491

  • How to adjust animation start point for text presets

    Hi All,
    I am applying text animation from standard presets - Multi-line group. The presetI am using is production.ffx. it works fine, but I cannot figure out how to adjust its start time. The animation starts in about 3 sec, but I need to trigger it earlier (about 1 sec).
    please, advise
    Thanks!

    Select the text layer.  Press U to reveal all keyframes.  Move the keyframes.

  • Page break doesn't work  for the detail group

    I have this report created for Quotations which spreads in 3 logic panels.The report comprises 1 parent group and 6 child groups.Now I want the last child group to appear in a seperate page under the heading 'Annexure'.For this, I set the 'Page break after' for the repeating frame of another group positioned just above this detail group in question. But in the new page not only does the child group get printed but also the master group members and some boiler plate objects i created there.How can i get rid of this problem?
    Thanks
    Jay

    Jay,
    Seems something wrong in your reports layout which is a bit harder to underdtand from your description. You can post with a graphical representation of your reports layout model.
    BTW, why don' you try the page you want as annexure in trailer section?
    Thanks
    The Oracle Reports Team

  • Is there a process for using Detail Group Regions?

    Hi Guys,
    I have a question regarding dynamically displaying stacked detail groups. I want to display a detail group depending on a value that is set in the master group.
    The documentation surrounding the Detail Group Regions is vague. Is there a set process on how to do this or even a documented case on how to get it to work? We have tried using Detail Group Regions but when we did the form of the master group was not displayed.
    Regards
    Bar
    JHS: 10.1.3.2.51
    JDev: 10.1.3.2.0.4066

    Steven,
    Below is a stripped down version of my app def including the group layout settings. Even with no rendered expression only the relationship and address detail groups appear (person and organization are missing), and instead of the SeachDetails/SearchCriteria form fields the organization table appears above the detail groups.
    If I create detail group regions for all four detail groups then no detail groups are displayed and its the address table that appears instead of the form fields.
    Regards,
    Bar
    <Service name="MainAppModule">
    --<Group layoutStyle="table-form" name="main_Search">
    ----<RegionContainer name="Regions">
    ------<ItemRegion name="SearchDetails">
    --------<Item/><Item/>
    ------</ItemRegion>
    ------<ItemRegion name="SearchCriteria">
    --------<Item/><Item/><Item/><Item/>
    ------</ItemRegion>
    ------<GroupRegion name="main_PersonGroupRegion" groupName="main_Person" title="Person Group Region"/>
    ------<GroupRegion name="main_OrganizationGroupRegion" groupName="main_Organization" title="Organization group Region"/>
    ----</RegionContainer>
    ----<Group layoutStyle="table-form" samePage="true" name="main_Person">
    ------<Item/>
    ------<RegionContainer name="Regions">
    --------<ItemRegion name="PersonRecord">
    ----------<Item/><Item/>
    --------</ItemRegion>
    --------<ItemRegion name="PersonDetails">
    ----------<Item/><Item/><Item/><Item/>
    --------</ItemRegion>
    ------</RegionContainer>
    ----</Group>
    ----<Group layoutStyle="table-form" samePage="true" name="main_Organization">
    ------<Item/>
    ------<RegionContainer name="Regions">
    --------<ItemRegion name="PersonRecord">
    ----------<Item/><Item/>
    --------</ItemRegion>
    --------<ItemRegion name="PersonDetails">
    ----------<Item/><Item/><Item/><Item/>
    --------</ItemRegion>
    ------</RegionContainer>
    ----</Group>
    ----<Group layoutStyle="table-form" samePage="true" name="main_Relationship">
    ------<Item/>
    ------<RegionContainer name="Regions">
    --------<ItemRegion name="RelationshipRecord">
    ----------<Item/><Item/>
    --------</ItemRegion>
    --------<ItemRegion name="RelationshipDetails">
    ----------<Item/><Item/><Item/><Item/>
    --------</ItemRegion>
    ------</RegionContainer>
    ----</Group>
    ----<Group layoutStyle="table-form" samePage="true" name="main_Address">
    ------<Item/>
    ------<RegionContainer name="Regions">
    --------<ItemRegion name="AddressRecord">
    ----------<Item/><Item/>
    --------</ItemRegion>
    --------<ItemRegion name="AddressDetails">
    ----------<Item/><Item/><Item/><Item/>
    --------</ItemRegion>
    ------</RegionContainer>
    ----</Group>
    --</Group>
    </Service>

  • Impossible insert in Detail Group

    Hi to all,
    I am using JDeveloper 10.1.2 and developing an application using ADF Business Components and JheadStart 10.1.2.
    I created a Group :
    - Layout Style     table
    - View Object Usage     ComptesSystemeView1
    and a Detail Group :
    - Layout Style     form:
    - View Object Usage     UtilisateurView1
    - Single-Row Insert allowed?     True
    with the Application Structure file Editor
    I run the application (the row ‘AABERT1’ is selected in the ComptesSysteme table) and i go to the Utilisateur-form page.
    When i use the create button in the detail-form, the application give me this error message :
    JBO-25013: Too many objects match the primary key oracle.jbo.Key[AABERT1 ].
    How can i create a new row in a Detail Group page ?
    Could you help me please ?
    Regards
    Laurent

    Laurent,
    This looks like a probklem within ADF Business Components. Can you try this in the ADF BC tester: create a new row for the nested UtilisateurView1 and see whether you get the same error? If so, check the Primaryn key attributes of this VO, may be the only key attribute is then foreign key attributeb that references ComptesSystemeView1?
    Steven Davelaar,
    JHeadstart Team.

Maybe you are looking for

  • FCE issues: editing audio, displaying video frames

    Hello friend. How do I display the video frame in the timeline? I have selected it but all it shows are a bunch of boxes with Xs in them. Why? Also, I want to manipulate the audio in this clip but I don't see where you do that. I see the waveforms an

  • Any easy way to print envelopes from photo tray?

    I have a new C309 printer that works well printing from three different PCs.  What I want to do is load the photo tray with a few #10 envelopes so that I can print one without having to change out paper in the main tray. The problem is, by the time I

  • Attribute filter in query

    in GL_Account having attribute Indicator: G/L Account (P&L) Indicator: G/L Account (Balance). and both are navigational attribute. now how to restrict values of both attribute in Query. let say Indicator: G/L Account (P&L) having values = X so in que

  • Create type problem

    I want to create a simple (not composite) data type using CREATE TYPE CREATE TYPE mytype under number (number(9)); Obviously it was wrong. Am I trying in vain? I mean CREATE TYPE can be used just to create composite types.

  • Itouch and internet

    with my itouch i have wireless ok but cannot connect to internet