Fill-down function not working for resources.

Hi,
I am running P6 version 8.2 and I am trying to use the 'fill-down' function to copy resources down for certain filtered activities but the option is always greyed out.
I can fill down just about anything else but for some reason it doesn't work with resources.
Can anyone fill me in on why this may be..?
Thanks.
Russell.

You can't use fill down on any column that is a list. Predecessors, Successors, Resources, Roles and Activity Codes can all be assigned to multiple activities by highlighting them, right clicking and going to Assign. This will bring up a window where you can choose what to assign.
I am not 100% sure on why you can't use fill down with resources but I imagine its because you are doing more than editing a value for each activity. You are linking an activity to a resource, each of which are objects in the database.

Similar Messages

  • HT1589 is holding down shift not working for anyone else?

    is holding down shift not working for anyone else?

    There has been an outage for both iMessage and FaceTime today.  Started at around Noon time, PDT.
    Click below for Apple's System Status:
    http://www.apple.com/support/systemstatus/

  • Drill down is not working for Pivot tables,but working for chart

    I have two reports and trying to navigate betwen summary report to detail report. But details report is displaying all the records .The filter condition is not working and displaying all the filters .I have Case statement in my filter.But the summary report column where the filter condition is applied is aggregated in the RPD level. Does this might be the reason ?. Is it passing different type of data type to details report ?. The filter condition is not working for Pivot table .But Chart is working fine and displaying the only selected records based on the filter condition.
    Please help me with the below issue.

    Hi sil174sss,
    Per my understanding you are experiencing the issue with the excel report which have add the drill down action, after export to excel only the expanded nodes included and the collapsed nodes is not shown, right?
    Generally, if we expand the nodes before export to excel then the excel will display the expanded details row and keep collapsed the details row which haven't expand, but we have the toggle "+","-" on the left of the Excel to help
    control the expand and collapse, when you click the "+" you can expand the collapsed notes to see the details rows.
    I have tested on my local environment with different version of SSRS and can always see the "+","-" as below:
    On the Top left corner you can find the "1","2", this help to control the "Collapse All" and "Expand All".
    If you can't see the "+","-" in the excel, the issue can be caused by the Excel version you are currently using, and also excel have limit support of this, please provide us the Excel version information and the SSRS version. You
    can reference to this similar thread:
    lost collapsing columns when export to excel
    Please try to export other drill down report to excel and check if they work fine, if they did, the issue can be caused by the drill down action you have added in this report is not correctly, if possible, please try to redesign the report.
    Article below about how to add  Expand/Collapse Action to an Item for your reference:
    http://msdn.microsoft.com/en-us/library/dd220405.aspx
    If your problem still exists, please feel free to ask
    Regards
    Vicky Liu

  • Replace function not working for XML CLOB data

    Hi all,
    I am generating XML using DBMS_XMLGEN in oracle 10g. After generating the XML, I am replacing the ROW tags with appropriate tag name using REPLACE function. Sometimes the tag name is not replaced correctly.
    Eg.I am replacing </Cargo_ROW> with </CargoDetail>. But sometimes in one xml, this tag is coming as </CargoDetROW> or </CargoDetaiW>. The XML size is always huge and the same tag is repeated so many time in the loop and in the same XML, only one tag will be replaced incorrectly. This also not happening for all XMLs.
    If any one knows the cause about this problem or solution, please share the same.
    thanks,

    Yes Anton, you are right..
    It was typecasting problem
    replace supports clob
    Check this out
    SQL> declare
      2  xmldata clob;
      3  Begin
      4  xmldata:='<Message transaction_log_id="" extraction_date="25/11/09 09:52:03 AM" versio
      5  <Transaction>
      6  <TransactionType>ORIGINAL</TransactionType>
      7  <ControlNumber>60022449779</ControlNumber>
      8  <BookingHeader>
      9  <PortCodeOriginal>GBSOU</PortCodeOriginal>
    10  <Contact>.</Contact>
    11  <PhoneContact>.</PhoneContact>
    12  </BookingHeader>
    13  <PartyInformation>
    14  <PartyDetails>
    15  <PartyId>10002866</PartyId>
    16  <Type>SHIP</Type>
    17  <Name1>L LTD.</Name1>
    18  </PartyDetails>
    19  </PartyInformation>
    20  <Cargo>
    21  <CargoDetROW>
    22  <CargoHeader>
    23  <CargoReceivedSeqNo>600015391790</CargoReceivedSeqNo>
    24  <CargoId>RW9330P013948</CargoId>
    25  </CargoHeader>
    26  <CargoDimensions>
    27  <Length>1</Length>
    28  <Width>2</Width>
    29  </CargoDimensions>
    30  </CargoDetail>
    31  <CargoDetROW>
    32  <CargoHeader>
    33  <CargoReceivedSeqNo>600015391791</CargoReceivedSeqNo>
    34  <CargoId>RW9330P01394AA</CargoId>
    35  </CargoHeader>
    36  <CargoDimensions>
    37  <Length>2</Length>
    38  <Width>2</Width>
    39  </CargoDimensions>
    40  </CargoDetail>
    41  <Cargo_ROW>
    42  <CargoHeader>
    43  <CargoReceivedSeqNo>600015391792</CargoReceivedSeqNo>
    44  <CargoId>RW9330P01322</CargoId>
    45  </CargoDetaiW>
    46  <CargoDimensions>
    47  <Length>1</Length>
    48  <Width>2</Width>
    49  </CargoDimensions>
    50  </Cargo_ROW>
    51  </Cargo>
    52  </Transaction>
    53  </Message>';
    54  xmldata:=to_clob(regexp_replac(xmldata,'</Cargo_ROW>|</CargoDetaiW>|</CargoDetROW>','</CargoDetail'));
    55  xmldata:=to_clob(regexp_replace(xmldata,'<Cargo_ROW>|<CargoDetaiW>|<CargoDetROW>','<CargoDetail>'));
    56  dbms_output.put_line(xmldata);
    57  end;
    58  /
    <Message transaction_log_id="" extraction_date="25/11/09 09:52:03 AM"
    version="1.0">
    <Transaction>
    <TransactionType>ORIGINAL</TransactionType>
    <Contro
    lNumber>60022449779</ControlNumber>
    <BookingHeader>
    <PortCodeOriginal>GBSOU</Por
    tCodeOriginal>
    <Contact>.</Contact>
    <PhoneContact>.</PhoneContact>
    </BookingHead
    er>
    <PartyInformation>
    <PartyDetails>
    <PartyId>10002866</PartyId>
    <Type>SHIP</Ty
    pe>
    <Name1>L
    LTD.</Name1>
    </PartyDetails>
    </PartyInformation>
    <Cargo>
    <CargoDetail>
    <CargoHea
    der>
    <CargoReceivedSeqNo>600015391790</CargoReceivedSeqNo>
    <CargoId>RW9330P01394
    8</CargoId>
    </CargoHeader>
    <CargoDimensions>
    <Length>1</Length>
    <Width>2</Width>
    </CargoDimensions>
    </CargoDetail>
    <CargoDetail>
    <CargoHeader>
    <CargoReceivedSeq
    No>600015391791</CargoReceivedSeqNo>
    <CargoId>RW9330P01394AA</CargoId>
    </CargoHe
    ader>
    <CargoDimensions>
    <Length>2</Length>
    <Width>2</Width>
    </CargoDimensions>
    <
    /CargoDetail>
    <CargoDetail>
    <CargoHeader>
    <CargoReceivedSeqNo>600015391792</Carg
    oReceivedSeqNo>
    <CargoId>RW9330P01322</CargoId>
    </CargoDetail>
    <CargoDimensions>
    <Length>1</Length>
    <Width>2</Width>
    </CargoDimensions>
    </CargoDetail>
    </Cargo>
    </Transaction>
    </Message>
    PL/SQL procedure successfully completed.
    SQL> Twinkle
    Edited by: Twinkle on Nov 26, 2009 6:05 PM

  • 'Image Set' in Contacts print function not working for envelopes

    I'm using 'Image Set' in Apple Contacts to insert a pic into my Christmas address labels, which works fine, but when I try to use the same function to try and print envelopes the 'set image' function will not work, and no image will appear. Ive tried quitting and restarts to no avail - any thoughts?

    I used to use this to print a report:
    ...but it doesn't work on my Windows 7 computers.  So, now I use this:
    ...and I'm happy again.    You may be, too, if you're using Windows 7.  I found this post helpful when I experienced this problem.
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

  • Search function not working for few days ??

    I try to search for object that I have searched before and got results.
    now I don't get any result on any search query I give. yesterday I thought , OK I will wait for tomorrow then it will be resolved. but now it's still not working ?
    for instance search on CL_SALV_TABLE is giving no results ?
    am I the only one experiencing this problem or is it community wide ?
    kind regards
    arthur

    Hi Arthur,
    we are aware of the current search problem and our development team is working on it. In future please report such bugs to [email protected]
    Regards,
    Folkert

  • CSS Menu drop down part not working for ie8 and flashing shut on iPhone 5 browser

    My CSS drop down menu will not show up in ie8 and flashes then shuts on iPhone 5 browsers (responsive design)..using code from a themeforest template. I am using CSS (HTML only) in the BC menu system. without further adieu here is the code.
    HTML (I removed the BC javascript)______________________
    <div id="navigation">
    <ul>
    <li><a href="/index.htm">Home</a></li>
    <li><a href="/about">About</a>
    <ul>
    <li><a href="/leadership">Leadership</a></li>
    <li><a href="/giving">Giving</a></li>
    <li><a href="/careers">Careers</a></li>
    <li><a href="/contact">Contact</a></li>
    </ul>
    </li>
    </ul>
    </div>
    CSS______________________
    #navigation {
    float: right;
    #navigation ul, #navigation li {
    list-style:none;
    padding:0;
    margin:0;
    display:inline;
    #navigation ul li{
    float:left; 
    position:relative;
    #navigation ul li a {
    font-family: Arial, sans-serif;
    display: inline-block;
    color: #888;
    padding: 40px 6px 10px 6px;
    margin: 0 5px;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    #navigation ul li a:hover{
    border-bottom: 3px solid #555;
    #navigation ul ul {
    opacity: 0;
    margin: -3px 0 0 5px;
    filter: alpha(opacity=0);
    position: absolute;
    top:-99999px;
    left: 0;
    background: #fff;
    border: 1px solid #dddddd;
    border-top: 3px solid #555;
    z-index: 999;
    #navigation ul ul li a:hover {
    border-bottom: 1px solid #ddd;
    #navigation ul ul li a {
    padding: 8px 0;
    display: block;
    width: 130px;
    margin: 0 16px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 12px;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid transparent;
    #navigation ul ul ul {
    position:absolute;
    top:-99999px;
    left:100%;
    opacity: 0;
    margin: -3px 0 0 0;
    z-index: 999;
    #navigation ul ul ul li a {
    border-bottom: 1px solid #dddddd !important;
    border-top: 1px solid transparent;
    #navigation ul ul li:last-child a, #navigation ul ul li:last-child a:hover {
    border-bottom: 1px solid transparent
    #navigation ul ul ul li:last-child a {
    border-bottom: 1px solid transparent !important
    #navigation ul li:hover>ul{
    opacity: 1;
    position:absolute;
    top:99%;
    left:0;
    #navigation ul ul li:hover>ul{
    position:absolute;
    top:0; left:100%;
    opacity: 1;
    z-index:497;
    background: #fff border: 0;
    #navigation ul li:hover > a {
    color: #444;
    #navigation ul ul li:hover > a {
    border-top: 1px solid transparent;
    color: #444;
    #current {
    font-weight: bold !important;
    color: #444 !important;
    border-bottom: 3px solid #555 !important;

    Well to show the menu it runs off opacity, Opacity is not cross browser and IE8 as you noticed will not work with it.
    This menu method of a CSS menu is also not mobile friendly.
    You will need the MS filters to work in older IE's
    http://css-tricks.com/snippets/css/cross-browser-opacity/

  • Synchronize function not working for IMAP

    I changed my email account from POP to IMAP.
    I didnt like having to look through all my unread messages on my iphone that I already read at work.
    IMAP settings are all correct (i was on the phone with Cox Communications).
    iPHone gets any emails immediately, but my laptop does not. HOWEVER, if I go into the MacMail menu "Mailbox" and select "Synchronize All Accounts" or choose 'Synchronize >( then select my IMAP account)" then the mail that my iPhone already received all pops up.
    The problem is that Mac Mail doesnt want to remember that I want to Synchronize it. I have to chose this function EVERY TIME I want to check my email.
    The result is that i do not get any emails at work on my laptop unless I manually Synchronzie each time before checking for mail.
    What can I do to get MacMail to remember that I want it Synchronized???

    I have a similarly large number of topic folders populated by rules triggered new mail. Some of my rules are on the mail servers, while some are on my own Macs. (In my case, there are multiple Macs involved; I gather from your message that there is only one MacBook Pro involved in your case.)
    I was in the middle of composing some comments on my understanding of how new messages are detected and processed by Mail.app, but I discovered some counterexamples in the process. Now I'm getting as confused as you may be.
    I'm not sure what the rules are for when each secondary mailbox is refreshed from the server. I do know that "Synchronize All Accounts" (or Synchronize > accountname) is an immediate action, not a request for continued action. I also know that sometimes you have to do an explicit Synchronize to update secondary mailboxes, that they are usually updated eventually, but sometimes it doesn't happen. I don't know why.
    Sorry not to have been more helpful. Maybe somebody else will come along who can go better.

  • Jump to Function not working for header items

    Hi Experts,
    I have a query using jump to function to access R3 tranaction,
    It has issue jump to transaction MB51
    Item Data:Material, plant, ...
    header data: posting date,...
    All settings in RSBBS are correct, but the posting date is not passed onto R3 report.
    I have tried similar transaction MR51and posting date can be passed to R3.
    any idears?
    Feng

    This is solution:
    In ERP system.
    Set MEMORYID in table MMIM_REP_CUST for fiekd BUDAT.
    Value for MEMORYID have to be from TPRA table and value for DTG upper than current timestamp
    After this recall mb51 and set this value in RSBBS assignment in BW system.
    Thanks Nikolay Ryzhov for this solution.

  • Search function not working for outlook 2007

    another screen shot

    rajugeorge wrote:hi bhg, thank you for the community welcome , much appreciatedi had initially tried to uncheck her data files option , thru search options. restarted outlook, and checked them back again. but that didnt helpshes got windows 7 64 bit, we have exchange server 2010 in our organisation.Emails are dragged and put in to the archive folders manually, the archive folder is stored on her network drive ( H drive namely )once again appreciate your helpcheersI haven't dealt with '07 in a while so to be please bear with me here, but under Search OptionsIndexing Options(Possibly) Advanced...What is the indexing location? I'm looking through my '10 Outlook so this may not be relevant in '07. Also are you using .OST or .PST? I would assume the mailbox is an .OST and the archive is a .PST. And again I don't have '07 in front of me so...

  • 'open in' function not working for MKV files

    Does anyone have an issue with using the 'open in' feature to play MKV files in another application? I have 3 applications that support MKV movie files but if I copy a MKV movie to GoodReader or FileBrowser and then use the 'open in' feature, it says there are no registered applications that support this file type. AVI files on the other hand work fine with all 3 applications offering themselves up in the 'open in' feature.
    I have 3 media players that support MKV files and I have tred reinstalling them all with no effect. I have also tried the open in from FileBrowser, Dropbox and GoodReader and then reinstalled these apps as well but still no success so I believe it is an issue with IOS. They all work fine on my iPad 1, this issue ony affects my iPad 2 but I set this one up as a new iPad and didn't restore it from my iPad 2 so not sure why this is. I spoke with one of the DEVs who was very helpful but he couldn't replicate this issue on his iPad 2.

    If "Open Containing folder" is grayed then the files are not longer in the original download location.
    Your More system details list shows the XULRunner 1.9.1 extension that is considered malware
    *XULRunner 1.9.1 true {68ED75C8-0369-4B3A-8F59-FC2787AC2C0C}
    *[[/questions/743526]]
    *[[/questions/749007]]
    You should also update the Flash and Java plugin.
    *http://www.mozilla.com/plugincheck/

  • JoinFieldValue function is not working for 'Partner'

    Hi All,
    I'm trying to get value from Partner in workflow, but there is an error message mentioned "<Partner>" is invalid, and then I'm looking for the online help, I found there is no referred record type for 'Partner', is JoinFieldValue function not working for 'Partner'?
    Does anyone know about it?
    Thanks in advance

    Using the Copy function link on a new Web Link Filed, you can pass parameters from one Object to another.
    1 - hit the "Copy" button on a CO Detail Page and grab the URL (This is the Destination Object, i'e I will pass information from Contact (Source) to this CO (Destination))
    Ex: https://secure-rmsomxxxx.crmondemand.com/OnDemand/user/CustomObject5.New?CustomObject5.NewForm.Id=XXXXXXX&OMRET1=CustomObject5.Detail%3fOMTGT%3dCustomObject5.Detail%26OMTHD%3dCustomObject5DetailNav%26CustomObject5.Detail.Id%3dXXXXXXX%26ocTitleField%3dName%26ocTitle%3dXXXXXXXXX%26ocEdit%3dY&OMTGT=CustomObject5.NewForm&OMTHD=CustomObject5PreCopyNav&OMRET0=CustomObject5.HomePage&OCTYPE=
    You would need only a small part from the above:
    https://secure-rmsomxxxx.crmondemand.com/OnDemand/user/CustomObject5.New?CustomObject5.NewForm.[Field you want to Copy]
    2 - Create a Weblink field on Contact and Expose it on the layout your role can see.
    3 - In the Weblink URL use the below
    https://secure-rmsomxxxx.crmondemand.com/OnDemand/user/CustomObject5.New?CustomObject5.NewForm.Description=%%%First_Name%%%
    Save your changes and you're done! you can now see that when you click the link you can pass the Contact First Name in the CO.
    Good Luck!
    Royston

  • Page-up/down not working for scrolling in grid (4.0EA1)

    when displaying data for a table, after clicking in a row, page-up/down does not work for scrolling; scrollbar is working and cursor-up/down; did work in 3.2
    when manually executing a select in the sql-worksheet, page-up/down are working in the result-grid.

    Yes, Thanks we noted it. BrianJ is working on it.
    B

  • Allow Custom Text Entry for Drop down not working For Dynamic form

    Dear All,
    In drop down field Allow custom text entry is working fine if the form is save as a static pdf form file.But if the form is save as a Dynamic pdf form file it is not working.I can enter custom text in drop down field but after filling it up when I click on next field the text from the drop down is disappearing.
    If any body can please help me to solve this problem.
    Thanks a lot in advance
    Regards
    Rakesh

    Dear Jimmypham,
    Thanks a lot for your quick response.But it's not working for me.I have even tried with a form having only single field and save it as a dynamic pdf file.In that form also it's not working.The text which I have entered is disappearing when I click outside of this field.
    Can you please help me to find out the solution for this problem.
    Regards
    Rakesh

  • Function Module not working for old Role

    Dears
    Function Module not working for old Role
    Function Module: /VIRSA/BAPI_AE_USERS_FOR_ROLES
    Before EHP4 upgrade this functional module working fine, but after updated users are not visible.
    We have chekced if the users are assigned directly users are visible but indirect (Position Based) assignment users are not apprearing.
    Pl check the fucntion module with given roles below and identify the root cause,
    EP_TRVL_ALL_CAB     - Old Role
    EP_TRN_TRVL_DRGC_V2 - New Role
    Regards
    Krishna Mohan CH
    9704500717

    Krishna,
    I do not think this BAPI is meant to be called by anyone but the application using it, and its functionality may therefore change without notice.
    What are you trying to achieve? Maybe there's a better way to do that...
    Frank.

Maybe you are looking for

  • How do I get rid of someone else's apps on my account?

    A few months ago I synched my new iPhone with my computer at work. It seems that, unknown to me at the time, someone had used the itunes on my computer to update their iPad. Suddenly, I had one million apps on my phone that I had never downloaded. It

  • After sinc with my Mac, SKYPE icon on my ipod does not open to skype service. how can i fix it or re-install skype

    After sinc-ing my ipod touch with my MacBok Pro, Skype icon on ipod touch does not open to Skype communication community service. I tried to download Skype from Apps Store using itunes, but received message that i need iOS 4.3...What should i do? how

  • Adobe flash player security problem

    Hello bodies I have problems with ExternalInterface and navigateToURL, How can I avoid flash player to show this box? when I've already enabled this setting Also I've checked some flash banners and disabled options above for test and they worked fine

  • Field Storing 'AND'  & 'OR' values

    hi Guys,   This is an urgent requirement . I need a field and DB table which stores either 'AND'  &  'OR' values . Thanks & Regards, Santosh

  • Adding a catch

    We have a BPEL process with couple FTP adapters. At the end of the process it is stating an SSH error resulting in a break in the connection. So i tried to add an scope and put my assign in there and my invoke then i created a reply below my scope to