SharePoint 2013: Hide/Unhide column based on another column.

Dear all,
I have a dropdown list "Correspondence Type".  What I want is to display/hide some fields when "Correspondence Type" is selected.
In the drop down list I have the following choices:  "IN" , "OUT".
What is happening is, when i am selecting "IN", the columns are being hidden/displayed as should be.  But when I am selecting "OUT", the approprite columns are not being hidden/displayed.
Please find below the code:
////////////////-----Code Starts here----/////////////
$(document).ready(function(){
    // -----  Hide the field at the begin if the default value is other.
    // Get a single select dropdown field
    var countryField = SPUtility.GetSPField('Correspondence Type');
    var countryFieldValue = countryField.GetValue();
    // Hide the City field if the selected value is Other
    if(countryFieldValue == 'IN') {
        SPUtility.GetSPField('Date Sent').Hide();
        SPUtility.GetSPField('Date Received').Show();
    else if (countryFieldValue == 'OUT'){
        SPUtility.GetSPField('Date Sent').Show();
        SPUtility.GetSPField('Date Received').Hide();
   $("select[title='Correspondence Type']").change(function() {
if ($("select[title='Correspondence Type']").val() == 'IN') {
$('nobr:contains("Date Sent")').closest('tr').hide();
$('nobr:contains("Date Received")').closest('tr').show();
} else if($("select[Correspondence Type']").val() == 'OUT'){
$('nobr:contains("Date Received")').closest('tr').hide();
$('nobr:contains("Date Sent")').closest('tr').show();
////////////////-----Code Ends here----/////////////
Anyone can help me out.
Many Thanks & Regards
Vinay

The issue is in this statement else
if($("select[Correspondence Type']").val() == 'OUT')
It should be 
else if($("select[title='Correspondence Type']").val() == 'OUT')
Nadeem Yousuf

Similar Messages

  • Filter column based on another column - OBIEE 11g

    Hi, I have kind of a strange requirement. I'm trying to build a dashboard that lets a user see data for the current day, last week, last month, or last year. I'm going to create a presentation variable called "date_range" where the user can choose one of those 4 options.
    Based on this, I've defined a column in answers with the following formula:
    cast
    case
    when 1 = 0 then "Query Time"."Date"
    when @{date_range}{'Day'} = 'Day' then Current_Date
    when @{date_range}{'Week'} = 'Week' then TIMESTAMPADD(SQL_TSI_DAY, -7, CURRENT_DATE)
    when @{date_range}{'Day'} = 'Month' then TIMESTAMPADD(SQL_TSI_DAY, -30, CURRENT_DATE)
    when @{date_range}{'Day'} = 'Year' then TIMESTAMPADD(SQL_TSI_DAY, -365, CURRENT_DATE)
    else TIMESTAMPADD(SQL_TSI_DAY, -10000, CURRENT_DATE)
    end as DATE
    Based on the 4 presentation variable, this should give the proper "start date" of when to pull data.
    Now I've added the actual date column from the date dimension. But I need to put a filter on the date dimension date column that says it's greater than or equal to the calculated column above. How do I do that?
    Thanks,
    Scott

    I always expect what you're expecting, but you can't filter a column on another column. The solution is just to write one formula that returns a literal, so it will be
    case when (your date column) >= (your long formula) then 'Y' else 'N' end
    Then filter that column on 'Y'.
    Regards,
    Robert

  • Find duplicates in one column based on another column

    Does anyone know if there is a way to have Numbers do the following:
    Column A contains a list of email address
    Column B contains another list of email address.
    I want to compare Column A against Column B to find the duplicates in Column A.
    Thanks,
    Awfers

    Asked and responded here:
    http://discussions.apple.com/thread.jspa?messageID=8367522
    Yvan KOENIG (from FRANCE vendredi 14 novembre 2008 14:22:47)

  • Tabular Form: Conditional column based on another column in table/form?

    Hi!
    I have 4 columns in table A:
    number (the question number)
    question (the question to be asked)
    type (TEXT, LOV are the 2 valid values)
    answer (the answer with text or a selection from the lov table below)
    I have 2 columns in table B:
    number (the question number)
    values (a single value for the lov's)
    In table B there can be mutiple rows for each number. Table A and table B
    join on the number.
    I want to build a tablular form on table A where for each row either a text
    box or a select list is displayed depending on the contents of the type column.
    So row 1 would display a text box when the type value is text; row 2 would
    display a select list when the type value is lov.
    Is this even possible? How do I refer to the type column in the conditional for the
    answer column? I am guessing that I will need to have 2 answer columns one
    that displays when the type column is TEXT and one that displays when the
    type column contains LOV. This is OK. Setting up the conditional is display is the issue at this point.
    Hopefully I have explained this well enough! :)
    Thanks!
    Dave Venus

    Hi Dave,
    Sorry for not responding sooner - I finish work at 3pm GMT.
    I'll take your first question first (3:28PM posting according to my display - not sure if you are on GMT time?):
    As far as I understand it, using the select_list_from_query() function generates the options that are required in the select list as HTML tags. Each instance of this function should create a SELECT tag and the results of the query should generate one or more OPTION tags within it.
    Second question (4:20PM posting):
    The HTMLDB_ITEM functions are listed in the documentation - here's a link to the online version:
    http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14303/api.htm#sthref2524
    Most of the examples that I have seen have been on this forum - simply search for HTMLDB_ITEM or one of its functions.
    I tend to leave the generation of tabular forms to the wizard as much as possible. The only exceptions are when I need to have access to more than the Primary Key for a row but don't want to show the field on screen. There are examples on the forum about concatenating the HTMLDB_ITEM functions into a single value - this hides ID fields from the user but makes them available to PL/SQL code.
    Third question (5:29PM posting)
    I did try using DECODE in my questionnaire but not for the feature that you needed. Originally, I wanted to use this to display one of a number of different fields (ie, my date, number or string field as appropriate to the question) but this didn't help as I couldn't get back to the right field during the update. If you have decode working for the select lists, then that's great!
    The first column should be hidden or sitting behind a checkbox as this should be the Primary Key for the row and should not be editable by the user nor would it normally be displayed.
    As long as your select statement creates the correct output (albeit that you may need to work on the layout!), you should have an updatable form. However, you will need to have the MRU processes in place and the appropriate buttons that trigger these. When I did my questionnaire, I created the form using a wizard to get all of the processes and buttons and then changed the select statement. If you haven't got the processes and/or buttons, we can go through adding these onto your page.
    Last question (9:08PM posting)
    As explained above, column 1 should normally be hidden. The INPUT tag you detail above is what I would expect to see. The value="6" attribute indicates that 6 is the Primary Key for that row - every row will have the same tag but different values for the "value" attribute. So, if it is hidden and these are the tags you see doing a View Source on the page, then everything is correct.
    OK. So now we have the data on screen and (hopefully?) we have the correct processes and buttons on the page.
    The next step would be validation and update of the data.
    Validation of the data can be handled by a normal page process - I can let you have example code if you want to validate the data (this will also explain how to loop through the rows - there are also methods that you can use to do this in javascript if you want). Updates should be handled by the processes and buttons on the page - again, if you haven't got these we can go through adding them in (although, if you haven't yet formatted your page, you may find it quicker to copy your select statement and create the page again using the same select statement).
    ORA-20001 errors are user defined errors. Do you mean the "data has changed" errors? If so, you will probably need to include the MD5 checksum functionality (it's shown in the document linked above).
    Finally, we'll keep this thread going so that you have all of your workings and my responses in one place, if that's ok with you?
    Regards
    Andy

  • Af:table how to conditionally disable a column based on another column

    Hi,
    I have an update able af:table of Employees record.
    I'm trying to disable(make read only) the "Salary" column if the manager_id is '146' on loading of the table
    Can this be done?
    Edited by: srihari manian on Aug 5, 2009 1:37 AM

    Hi Joseba,
    I tried the above approach,but getting the following error:
    java.lang.IllegalArgumentException: Cannot convert 100 of type class oracle.jbo.domain.Number to class java.lang.Long
         at com.sun.el.lang.ELSupport.coerceToNumber(ELSupport.java:293)
         at com.sun.el.lang.ELSupport.equals(ELSupport.java:154)
         at com.sun.el.parser.AstEqual.getValue(AstEqual.java:43)
         at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
         at org.apache.myfaces.trinidad.bean.FacesBeanImpl.getProperty(FacesBeanImpl.java:68)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.isDisabled(LabeledInputRenderer.java:220)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.getRootStateStyleClasses(LabeledInputRenderer.java:187)
         at oracle.adf.view.rich.render.RichRenderer.renderRootStyleAttributes(RichRenderer.java:803)
         at oracle.adf.view.rich.render.RichRenderer.renderRootStyleAttributes(RichRenderer.java:781)
         at oracle.adf.view.rich.render.RichRenderer.renderRootStyleAttributes(RichRenderer.java:748)
         at oracle.adf.view.rich.render.RichRenderer.renderAllRootAttributes(RichRenderer.java:710)
         at oracle.adf.view.rich.render.RichRenderer.renderAllRootAttributes(RichRenderer.java:689)
         at oracle.adfinternal.view.faces.renderkit.rich.LabelLayoutRenderer.encodeAll(LabelLayoutRenderer.java:233)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.encodeAll(LabeledInputRenderer.java:164)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1187)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.renderDataCell(BaseColumnRenderer.java:1133)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.encodeAll(BaseColumnRenderer.java:104)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1187)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.renderDataBlockRows(TableRenderer.java:1852)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._renderSingleDataBlock(TableRenderer.java:1552)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._handleDataFetch(TableRenderer.java:964)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:494)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1187)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:527)
         at org.apache.myfaces.trinidad.render.RenderUtils.encodeRecursive(RenderUtils.java:70)
         at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils$RenderCallback.invokeContextCallback(InvokeOnComponentUtils.java:97)
         at org.apache.myfaces.trinidad.component.UIXCollection.invokeOnComponent(UIXCollection.java:1024)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1406)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1312)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1406)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:159)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:675)
         at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils.renderChild(InvokeOnComponentUtils.java:29)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager._pprComponent(StreamingDataManager.java:616)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager.execute(StreamingDataManager.java:465)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._encodeStreamingResponse(DocumentRenderer.java:2608)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:969)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1187)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1494)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:771)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:202)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:685)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:261)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:193)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:54)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.wls.JpsWlsFilter$1.run(JpsWlsFilter.java:96)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.wls.util.JpsWlsUtil.runJaasMode(JpsWlsUtil.java:146)
         at oracle.security.jps.wls.JpsWlsFilter.doFilter(JpsWlsFilter.java:140)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:202)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3588)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2200)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2106)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1428)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Any suggestions
    Thanks,
    Srihari
    Edited by: srihari manian on Aug 5, 2009 1:56 AM

  • Manipulating report column based on another column value?

    Here is what I am trying to do.
    1.     I have a report region which has 2 columns.
    2.     Both the columns are setup as links to navigate to a different page. I am using <img src="#IMAGE_PREFIX#e2.gif" alt="Edit"> for link text report item attribute.
    3.     The value can be either in column 1 or 2 but not in both the columns at the same time.
    4.     If the value is existing in column1, the column 2 should display as null, which I have trouble with. I can see the images even though the value is null.
    Appreciate if you can let me know how to achieve this?
    Edited by: user552288 on Jul 15, 2009 7:45 AM

    Could you please post the current query which you are using?
    Instead of using the image display attribute in the report attributes column, can you include that part of the query.
    Something like:
    select
    (case when col1!=NULL then <img src="#IMAGE_PREFIX#e2.gif" alt="Edit">) else 'NULL' as Column1,
    (case when col2!=NULL then <img src="#IMAGE_PREFIX#e2.gif" alt="Edit"> ) else 'NULL' as Column2
    from table

  • Validate one column based on another column

    I am using a table view with LINEEDIT mode where 2 coulmns quantity and unit are open for edit. I want the unit field to be mandatory only when the quantity is entered. Is it possible to do this at the client level? if so, can someone post a sample code? Thanks!
    M~

    Asked and responded here:
    http://discussions.apple.com/thread.jspa?messageID=8367522
    Yvan KOENIG (from FRANCE vendredi 14 novembre 2008 14:22:47)

  • How to Fill list in excel based on another columns cell value

    Hello,
    I am facing issue while binding data to list i want to bind list or filter list based on another columns cell value

    If your list is a series of rows with column headers like the following:
    Column A
    Column B
    1
    Apple
    1
    Banana
    1
    Orange
    2
    Pineapple
    2
    Cucumber
    2
    Watermelon
    Then you can do this will Excel's built in filter functions. If you select the entire data table and then go to "DATA" then click the "FILTER" button a drop down will appear next to both headers (Column A and Column B in this case). You
    can then select the data you would like filtered from either column and Excel will hide that entire row.
    If this is not what you are looking for please post some examples of what you are trying to see.

  • Is it possible to create an invoive that keeps a running total in one column and in another column keep total of monies spent from a starting amount of funding?

    Is it possible to create an invoive that keeps a running total in one column and in another column keep total of monies spent from a starting amount of funding?

    Hi Sara,
    Many thanks for your reply.  We just brought Adobe Acrobat XI Pro complete
    with Adobe Forms Central, My manager asked whether I could use the forms
    part to create a summary tracking sheet for all of our contracts.
    Having looked at it I could see how to create a table that in the first
    column deleted costs from a starting fund, and in the last keeps a running
    total of all monies spent.
    I agree, Excel does seem to be much better suited to the task.  I was try
    trying to comply with her request
    Regards,

  • SharePoint 2013 Make Calculated Column based on Custom Column

    In SharePoint 2013, I am trying to create a Calculated Column that is a shortened display of another Custom Column. The Calculated Column would just show the first 100 characters concatenated with "..." like in the following formula:
    =LEFT([CustomColumn],100)&"..."
    However, every time that I go to create this calculated column, SharePoint doesn't provide my [CustomColumn] in the "Insert Column:" list. If I type it in anyway, SharePoint throws an error.
    Details on my Column, List, and Site below:
        Col. Type: Multiple lines of text
        Col. Group: Custom Columns
        Col. Text Type: Enhanced rich text
        List Content Type: Custom Type Inherits from Event
        Site Type: Publishing
    Also, to no avail, I found this similar post (link below), but creating the Site Column and Calculated Column
    before adding it to the Content Type did not work for me. 
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/26a7517e-ba43-4c49-95aa-3e6f7f4207ba/calculated-field-in-content-type-not-working
    Anyone out there know how to coax SharePoint into submission?!

    Multi lines of text are one of the types of columns which can't be used by calculated columns/fields. Among such unusable columns are also Lookup columns, People columns, External Columns, MMS columns, etc.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • How to set column value to blank based on another column's condition in validation settings in sharepoint 2010?

    I need to set a field to be blank when another field is blank:
    when [Return Date] is blank [when item has not been returned]
    [Received by]  should be set to blank
    I tried this:
    =IF(ISBLANK([Return Date]),ISBLANK([Received by]),TRUE)
    But it failed.
    Is this possible through list validation settings?

    Hi
    you cannot reference another column in a formula that creates a default value for a column.
    PF below link for the same.
    http://ricardoramirezblog.wordpress.com/2013/05/02/calculated-field-formulas-for-default-value/
    Regards,
    Rajendra Singh
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful
    http://sharepointundefind.wordpress.com/

  • Radio group in classic report based on another column on the same row.

    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    Application Express 4.1.0.00.32
    How can I have a radio group column based on an LOV utilizing another column on the same row of the report?
    For example: what if I had a survey application and depending on the likert scale that was assigned to the question there would be different possible answer choices:
    Question 1 on row 1 of the report: The class instructor was friendly?
    Likert scale choice is Agreement.
    Choices on Radio Group: Strongly Agree, Agree, Undecided, Strongly Disagree
    Question 2 on row 2 of the report: The class offered good materials?
    Likert scale choice is Quality.
    Choices on Radio Group: Excellent, Below Average, Average, Above Average, Excellent
    The radio group can change per row depending on the Likert scale assigned to the question which is assigned to a different column on the row.
    Can LOV utilize the column? :
    SELECT scale_text
    FROM scale_choices
    WHERE scale_category_choice_id = 2 <<= this would be the Likert scale identifier
    ORDER
    BY display_order

    Here is the answer:
    APEX_ITEM.SELECT_LIST_FROM_QUERY(
    p_idx IN NUMBER,
    p_value IN VARCHAR2 DEFAULT NULL,
    p_query IN VARCHAR2,
    p_attributes IN VARCHAR2 DEFAULT NULL,
    p_show_null IN VARCHAR2 DEFAULT 'YES',
    p_null_value IN VARCHAR2 DEFAULT '%NULL%',
    p_null_text IN VARCHAR2 DEFAULT '%',
    p_item_id IN VARCHAR2 DEFAULT NULL,
    p_item_label IN VARCHAR2 DEFAULT NULL,
    p_show_extra IN VARCHAR2 DEFAULT 'YES')
    RETURN VARCHAR2;

  • Remote upload into sharepoint 2013 document library (cloud based)

    We have a sharepoint 2013 in the cloud.
    Is it possible to have some kind of service (windows or web based) that can access a document library on said cloud server and put files into said document library?
    I don't think we have a lot of behind the scenes access to the cloud instance of 2013.

    Hi,
    As I said above, we could use the Client Object Model to upload the files without the user having to go to SharePoint in the browser first and logging in.
    We can use the credentials in the code as below, the code would copy files to SharePoint online, it worked well in my environment, you can check whether it works.
    public static void CopyDocuments(string srcUrl, string srcLibrary, string destUrl, string destLibrary)
    // set up the src client
    ClientContext srcContext = new ClientContext(srcUrl);
    SecureString passWord1 = new SecureString();
    foreach (char c in "Password01!".ToCharArray()) passWord1.AppendChar(c);
    srcContext.Credentials = new SharePointOnlineCredentials("[email protected]", passWord1);
    Web srcWeb = srcContext.Web;
    List srcList = srcWeb.Lists.GetByTitle(srcLibrary);
    ListItemCollection itemColl = srcList.GetItems(new CamlQuery());
    srcContext.Load(itemColl);
    srcContext.ExecuteQuery();
    // set up the destination context
    ClientContext destContext = new ClientContext(destUrl);
    SecureString passWord = new SecureString();
    foreach (char c in "Password01!".ToCharArray()) passWord.AppendChar(c);
    destContext.Credentials = new SharePointOnlineCredentials("[email protected]", passWord);
    // get the destination list
    Web destWeb = destContext.Web;
    destContext.Load(destWeb);
    destContext.ExecuteQuery();
    foreach (var doc in itemColl)
    try
    //if (doc.FileSystemObjectType == FileSystemObjectType.File) //Field or Property "FileAttachement not found."
    // get the file
    File file = doc.File;
    srcContext.Load(file);
    srcContext.ExecuteQuery();
    // build destination url
    string nLocation = destWeb.ServerRelativeUrl.TrimEnd('/') + "/" + destLibrary.Replace(" ", "") + "/" + file.Name;
    // read the file, copy the content to new file at new location
    FileInformation fileInfo = File.OpenBinaryDirect(srcContext, file.ServerRelativeUrl);
    File.SaveBinaryDirect(destContext, nLocation, fileInfo.Stream, true);
    catch (Exception ex)
    http://blog.blumshapiro.com/blog/2012/08/22/sharepoint-2010-using-the-client-object-model-to-move-files-and-folders-across-site-collections-and-subsites/
    Thanks,
    Jason
    Forum Support Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Jason Guo
    TechNet Community Support

  • DPm 2012 r2 problem after moving Sharepoint 2013 to a differnt SQL using another alias

    Hi,
    I have resently installed DPM 2012 r2 and I want to backup my Sharepoint 2013 farm. I can install the client on Sharepoint server and the SQL server. This is a new protection and I have earlier  moved the Sharepoint 2013 farm to a different SQL server
    not with the same name using the SQL alias method.
    When I try to create a Sharepoint backup I get the old SQL server name and error to check the SQL wss is running. The wss is running and the DPM user is local admin and sysadmin og the new SQL server. I added in hosts  the old SQL server name
    pointing to the new sql server ip address.
    I need to know if this is doable in DPM or must I do something else?
    thanks.
    Erró

    Here is the information you needed.
    * WRITER "SharePoint Services Writer"
    - Writer ID   = {da452614-4858-5e53-a512-38aab25c61ad}
    - Writer instance ID = {b8787079-eacd-4ced-9c7d-1e9aa5ac240a}
    - Supports restore events = TRUE
    - Writer restore conditions = VSS_WRE_ALWAYS
    - Restore method = VSS_RME_RESTORE_AT_REBOOT_IF_CANNOT_REPLACE
    - Requires reboot after restore = FALSE
    - Excluded files:
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Config"
    - Name: AVA_SP2013_Config
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Config
    - Caption: Configuration Database AVA_SP2013_Config
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Config"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_State_Svc"
    - Name: AVA_SP2013_State_Svc
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_State_Svc
    - Caption: Generic Database AVA_SP2013_State_Svc
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_State_Svc"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Content_Heimar"
    - Name: AVA_SP2013_Content_Heimar
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Content_Heimar
    - Caption: Content Database AVA_SP2013_Content_Heimar
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Content_Heimar"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Content_Wiki"
    - Name: AVA_SP2013_Content_Wiki
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Content_Wiki
    - Caption: Content Database AVA_SP2013_Content_Wiki
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Content_Wiki"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Content_ActiveProjects"
    - Name: AVA_SP2013_Content_ActiveProjects
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Content_ActiveProjects
    - Caption: Content Database AVA_SP2013_Content_ActiveProjects
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Content_ActiveProjects"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Content_Mysite"
    - Name: AVA_SP2013_Content_Mysite
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Content_Mysite
    - Caption: Content Database AVA_SP2013_Content_Mysite
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Content_Mysite"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Content_Mysite1"
    - Name: AVA_SP2013_Content_Mysite1
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Content_Mysite1
    - Caption: Content Database AVA_SP2013_Content_Mysite1
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Content_Mysite1"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Content_Mysite2"
    - Name: AVA_SP2013_Content_Mysite2
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Content_Mysite2
    - Caption: Content Database AVA_SP2013_Content_Mysite2
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Content_Mysite2"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Content_Mysite3"
    - Name: AVA_SP2013_Content_Mysite3
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Content_Mysite3
    - Caption: Content Database AVA_SP2013_Content_Mysite3
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Content_Mysite3"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Content_Mysite4"
    - Name: AVA_SP2013_Content_Mysite4
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Content_Mysite4
    - Caption: Content Database AVA_SP2013_Content_Mysite4
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Content_Mysite4"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_SharePoint_Admin_Content"
    - Name: AVA_SP2013_SharePoint_Admin_Content
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_SharePoint_Admin_Content
    - Caption: Content Database AVA_SP2013_SharePoint_Admin_Content
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_SharePoint_Admin_Content"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Secure_Store_Service_DB"
    - Name: AVA_SP2013_Secure_Store_Service_DB
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Secure_Store_Service_DB
    - Caption: Generic Database AVA_SP2013_Secure_Store_Service_DB
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Secure_Store_Service_DB"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_PerformancePoint Service Application"
    - Name: AVA_SP2013_PerformancePoint Service Application
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_PerformancePoint Service Application
    - Caption: Generic Database AVA_SP2013_PerformancePoint Service Application
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_PerformancePoint Service Application"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Managed Metadata Service"
    - Name: AVA_SP2013_Managed Metadata Service
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Managed Metadata Service
    - Caption: Generic Database AVA_SP2013_Managed Metadata Service
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Managed Metadata Service"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Word_Automation"
    - Name: AVA_SP2013_Word_Automation
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Word_Automation
    - Caption: Generic Database AVA_SP2013_Word_Automation
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Word_Automation"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Profile DB"
    - Name: AVA_SP2013_Profile DB
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Profile DB
    - Caption: Generic Database AVA_SP2013_Profile DB
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Profile DB"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\Sync DB1"
    - Name: Sync DB1
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\Sync DB1
    - Caption: Generic Database Sync DB1
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\Sync DB1"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_Social DB"
    - Name: AVA_SP2013_Social DB
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_Social DB
    - Caption: Generic Database AVA_SP2013_Social DB
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_Social DB"
    + Component "SharePoint Services Writer:\OldSQL.domain.com\AVA_SP2013_BDC_Service_DB"
    - Name: AVA_SP2013_BDC_Service_DB
    - Logical path: OldSQL.domain.com
    - Full path: \OldSQL.domain.com\AVA_SP2013_BDC_Service_DB
    - Caption: Generic Database AVA_SP2013_BDC_Service_DB
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\NewSQL.domain.com\NewSQL.domain.com\AVA_SP2013_BDC_Service_DB"
    + Component "SharePoint Services Writer:\6d68e675-85f9-4742-9dcc-d7df18d8c3ea\3cdf2288-dd08-4bc7-997d-6cad63d46328\Search_Service_Application_DB_fcb92dbb4fbd4b39808465c5301802cf"
    - Name: Search_Service_Application_DB_fcb92dbb4fbd4b39808465c5301802cf
    - Logical path: 6d68e675-85f9-4742-9dcc-d7df18d8c3ea\3cdf2288-dd08-4bc7-997d-6cad63d46328
    - Full path: \6d68e675-85f9-4742-9dcc-d7df18d8c3ea\3cdf2288-dd08-4bc7-997d-6cad63d46328\Search_Service_Application_DB_fcb92dbb4fbd4b39808465c5301802cf
    - Caption: OSearch Administration Database
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\OldSQL.domain.com\NewSQL.domain.com\Search_Service_Application_DB_fcb92dbb4fbd4b39808465c5301802cf"
    + Component "SharePoint Services Writer:\6d68e675-85f9-4742-9dcc-d7df18d8c3ea\014481c8-0135-4957-82ab-55bf8417321d\Search_Service_Application_CrawlStoreDB_85660a45376440f5be52b67bc3df014e"
    - Name: Search_Service_Application_CrawlStoreDB_85660a45376440f5be52b67bc3df014e
    - Logical path: 6d68e675-85f9-4742-9dcc-d7df18d8c3ea\014481c8-0135-4957-82ab-55bf8417321d
    - Full path: \6d68e675-85f9-4742-9dcc-d7df18d8c3ea\014481c8-0135-4957-82ab-55bf8417321d\Search_Service_Application_CrawlStoreDB_85660a45376440f5be52b67bc3df014e
    - Caption: OSearch Crawl Database
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\OldSQL.domain.com\NewSQL.domain.com\Search_Service_Application_CrawlStoreDB_85660a45376440f5be52b67bc3df014e"
    + Component "SharePoint Services Writer:\6d68e675-85f9-4742-9dcc-d7df18d8c3ea\5613596c-7658-4479-8fba-e87e9cc81578\Search_Service_Application_AnalyticsReportingStoreDB_11cce20eb0084a9b80594dbffc122fa9"
    - Name: Search_Service_Application_AnalyticsReportingStoreDB_11cce20eb0084a9b80594dbffc122fa9
    - Logical path: 6d68e675-85f9-4742-9dcc-d7df18d8c3ea\5613596c-7658-4479-8fba-e87e9cc81578
    - Full path: \6d68e675-85f9-4742-9dcc-d7df18d8c3ea\5613596c-7658-4479-8fba-e87e9cc81578\Search_Service_Application_AnalyticsReportingStoreDB_11cce20eb0084a9b80594dbffc122fa9
    - Caption: OSearch Analytics Reporting Database
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\OldSQL.domain.com\NewSQL.domain.com\Search_Service_Application_AnalyticsReportingStoreDB_11cce20eb0084a9b80594dbffc122fa9"
    + Component "SharePoint Services Writer:\6d68e675-85f9-4742-9dcc-d7df18d8c3ea\41d46cb5-c603-4f60-9b2e-1fc96903329d\Search_Service_Application_LinksStoreDB_df4336e1ef254b38adac1ee66311aa50"
    - Name: Search_Service_Application_LinksStoreDB_df4336e1ef254b38adac1ee66311aa50
    - Logical path: 6d68e675-85f9-4742-9dcc-d7df18d8c3ea\41d46cb5-c603-4f60-9b2e-1fc96903329d
    - Full path: \6d68e675-85f9-4742-9dcc-d7df18d8c3ea\41d46cb5-c603-4f60-9b2e-1fc96903329d\Search_Service_Application_LinksStoreDB_df4336e1ef254b38adac1ee66311aa50
    - Caption: OSearch Links Database
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{a65faa63-5ea8-4ebc-9dbd-a0c4db26912a}:\\OldSQL.domain.com\NewSQL.domain.com\Search_Service_Application_LinksStoreDB_df4336e1ef254b38adac1ee66311aa50"
    + Component "SharePoint Services Writer:\6d68e675-85f9-4742-9dcc-d7df18d8c3ea\efa26bb2-ccc6-4e86-92fe-a423462f943e\IndexComponentGroup_6d68e675-85f9-4742-9dcc-d7df18d8c3ea"
    - Name: IndexComponentGroup_6d68e675-85f9-4742-9dcc-d7df18d8c3ea
    - Logical path: 6d68e675-85f9-4742-9dcc-d7df18d8c3ea\efa26bb2-ccc6-4e86-92fe-a423462f943e
    - Full path: \6d68e675-85f9-4742-9dcc-d7df18d8c3ea\efa26bb2-ccc6-4e86-92fe-a423462f943e\IndexComponentGroup_6d68e675-85f9-4742-9dcc-d7df18d8c3ea
    - Caption: OSearch15 Content Index Catalog_6d68e675-85f9-4742-9dcc-d7df18d8c3ea
    - Type: VSS_CT_DATABASE [1]
    - Is selectable: TRUE
    - Is top level: TRUE
    - Notify on backup complete: FALSE
    - Paths affected by this component:
    - Volumes affected by this component:
    - Component Dependencies:
    - Dependency to "{0ff1ce15-0201-0000-0000-000000000000}:\IndexComponentGroup_6d68e675-85f9-4742-9dcc-d7df18d8c3ea"
    Erró

  • Auto populating a column prompt based on another column prompt

    Hi,
    Is it possible to auto-populate a column prompt, using the value of another column prompt?
    My situation is described as below.
    I have created a new dashboard prompt. This contains 2 column prompts, for example say col1 and col2. Both are multi-select prompts.
    col1 values - a,b,c,d.....
    col2 values - 5,2,8,7.....
    col1 and col2 values are picked from different tables. Also we have a mapping table which maps col1 and col2. Say a-5, b-10, c-1, d-3 etc...
    My requirement is, if a user selects values "a,d" for col1 prompt, col2 prompt must be automatically populated by values "5,3".
    Is this possible? If so, please help.
    Thanks,
    kc.

    If the actual filter criteria is only col1 the instead of displaying the values in the second prompt, make a separate report and only choose only the 2nd col in that report and make col1 as prompted and select appropriate title for that report.Place the report above the actual report in dashboard. So it will display only those records which are chosen in col1 from the prompt.

Maybe you are looking for

  • BPM: Loop condition not coming outside of the loop

    Hi Experts, I am working on BPM. In the loop I am giving the condition as (ForSyncResponse./p1:MT_Test_JDBC_Req_response/row_response/Row/indicator u2260 9) If indication not equal to the 9(Integer) then it should come out of the loop otherwise loop

  • Is there a way to control brightness in launchpad?

    Is there a way to control brightness in launchpad?   I have two administrative accounts, one in English and the other in Japanese because I sometimes need to install Japanese language software that requires this.  The strange thing is that the launch

  • .AI files opening as Text Imports in Illustrator

    I created two pieces of work last night, 2/4/15, using Adobe Illustrator and once completed I saved the files and haven't moved them from their original destination. I attempted to open the files today, 2/5/15, and have a pop up saying that it is ope

  • Places and faces not syncing with photo stream

    Hello, I put some of my pictures from my Mac Pro's iPhoto library into Photo Stream with the intention of grabbing them into my MacBook Pro's iPhoto library. They download and the events are generated but the Faces and Places information did not come

  • Error message not authorized for items on this computers

    when snycing i receive this error message and nearly every purchased song won't sync.