Office 365 - sharepoint: In Advanced search Page, How to add custom column under property restrictions

 In Advanced search Page, How to add custom column under property restrictions?

Hi,
The Navigation control can be added into your HTML page in the Snippet Gallery:
The two links below about how to create HTML master page and adding snippets needed into it for your reference:
http://borderingdotnet.blogspot.jp/2012/12/how-to-create-html-masterpage-for.html
http://msdn.microsoft.com/en-us/library/office/jj822370(v=office.15).aspx
Feel free to reply if there still any question.
Best regards,
Patrick
Patrick Liang
TechNet Community Support

Similar Messages

  • How to add custom columns with BO data from GP to UWL

    Hi
    We have CE 7.1 in our project UWL taskitems only have GP workflow tasks.
    In UWL we can see that by default there are standard columns but now we need to add custom columns with data from ours BO associated to process instance
    For that we need to develop one custom connector for UWL where we can retrieve the values from custom conenctor to UWL.
    Currently our NWDS 7.1 does not have plugins for UWL Connector can anybody tell me where can I download this plugins?
    thanks in advance!
    Regards
    Cristian

    Hi,
    plz refer the following link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0ee5047-c7a0-2a10-70b7-9557e3e4d440
    Regards
    Manohar

  • How to add three columns under a column of Column Structure in BEx Query ??

    Hi all,
        I have created a Structure for Taxes (with 10 rows) under Rows and another Structure for Company under Columns and it has 3 columns like Company A, B & C. Now I want to have three columns (Actual, Forecast & Total) under each company A, B & C. It means it will have 9 columns under these 3 companies.
      The ACTUAL should calculated as:
              Version = 100 and
              Months = Plan Begin Month - 1.
      If the Plan Begin Month is 4 (April) then ACTUAL should be calculated for first 3 (4 - 1) months only.
       The FORECAST should calculated as:
              Version = 699 and
              Months = From 4 (April) to 12 (December).
       'Plan Begin Month' will be entered on the selection screen.
       How can I design this query, PLEASE ?
        Thanks in advance.
    Regards,
    Venkat.

    Hi Ravi,
        Thanks for your quick response.
        The ACTUAL should calculated as:
              Version = 100 and
              Months = Plan Begin Month - 1.
              If the Plan Begin Month is 4 (April) then ACTUAL should be calculated for first 3 (4 - 1) months only.
       The FORECAST should calculated as:
              Version = 699 and
              Months = From 4 (April) to 12 (December).
          I am unable to create the Restricted Key Figure with Version.
         How can I design it, PLEASE ?
    Thanks,
    Venkat.

  • How to add customized column in the time sheet CATS (transaction CAT2) ?

    Hello,
    I need to be able to add some columns in the time sheet CAT2 containing:
    - the name and first name of the person (in addition of the number), in display mode in the CATS time sheet.
    - a  text that I will found by reading some tables and values...
    Does anyone have any idea how to do so ? and if it's possible or not?
    Thanks a lot in advance for your help.
    Best regards
    Fanny GROUX

    Hi,
    Thanks a lot, it's really help...don't know why I didn't see this customized point before in SPRO.
    But I have an other issue, my new fields is added in the CATS screen and now I'm trying to put default value by using the user exit of extension CATS0009.
    When I complete the value of my new fields in structure CATSD_IMP, there are not taking into account and the CATS screen doesn't display the value.
    Am I using the wrong table ? wrong user-exit ? or my code ..
    Thansk a lot again for your help.
    Fanny GROUX

  • How to add custom columns to the list view in Finder

    Hi,
    I'm looking for a way to view additional file details in the list view in Finder, for example audio bit rate, so I don't have to do "Get Info" for each file separately. I couldn't find a way to add columns other than the ones listed on the view options dialog.
    Can anyone help me find a way to do it?
    Thanks,
    Tal

    Have you checked the Help menu for what you want to do? I found this in Apple support - List View Options
    Check the AppleScript Forums. There is probably a script that you can use.

  • How to add Custom fields ( under the Custom Tab) in RMMAIN ( SOLMAN 4.0)

    Hi Expert,
    I am working in SOLMAN 4.0
    i want to add some Custom fields in RMMAIN Transaction -Screen level..( under one custom tab)
    i have tried in EEWB, it is not helpful for RMMAIN
    is any Screen exit available for RMMAIN? or any other way?
    I ll give Reward points
    Thanks & Regaids
    Ganesh, R

    Hi,
    go through this...
    https://wiki.sdn.sap.com/wiki/display/Snippets/Displaycustomerfieldsinheaderoflogisticsinvoiceverification+transactions
    Thanks,
    Shailaja Ainala.

  • Add custom column in default list view in sharepoint

    Hello,
    How to add custom column in default list view in SharePoint 2013? In list view we have view fields section. But its not allowing to add any static text.  I want to add one button/textin view fields. How to add that?
    <View Name="{C7499466-A865-4742-8511-5536D2521D1C}" MobileView="TRUE" Type="HTML" Hidden="TRUE" DisplayName="All Documents" Url="/SectionManagement/SitePages/Untitled_1.aspx" Level="1"
    BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/15/images/dlicon.png?rev=23" ><Query/>
    <ViewFields>
    <FieldRef Name="LinkFilename"/>
    <FieldRef Name="LinkFilenameNoMenu"/>
    </ViewFields>

    Hi,
    to add a field to a view use this
    <ViewFields>
    <FieldRef Name="LinkFilename"/>
    <FieldRef Name="LinkFilenameNoMenu"/>
    <FieldRef Name=[InternalNameOfCustomField]/>
    </ViewFields>

  • How to Enable Ratings on SharePoint List using Client Object Model for Office 365 SharePoint Site.

    How to Enable Ratings on SharePoint List using Client Object Model code for Office 365 SharePoint Site.
    Thanks in Advance
    Rajendra K

    Hi Rajendra,
    here you are the code and the blog, let me know if this helps
    using (ClientContext ctx = new ClientContext(https://yourSiteUrl))
    Web w = ctx.Web;
    List l = w.Lists.GetByTitle("yourListName");
    ctx.Load(l, info => info.Id);
    ctx.ExecuteQuery();
    string ListID = l.Id.ToString();
    Microsoft.Office.Server.ReputationModel.Reputation.SetRating(ctx, ListID, 1, 5);
    ctx.ExecuteQuery();
    http://blogs.technet.com/b/speschka/archive/2013/07/08/how-to-use-csom-with-ratings-in-sharepoint-2013.aspx
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

  • How to add a new  search criteria in Advance Search Page in OAF

    HI,
    In my application (R12) we can access customer related information from 2 places (2 different responsibilities as mentioned below), both are OAF pages.
    1. AX receivables
    2. Sales online
    From both the responsibilities we can perform search for customer related information as well (Simple as well as Advance Search).
    But Advance Search screen from 'Sales online' allows user to perform search, based on few additional fields as well such as 'Classification' (it's an lov based field).
    Now, User is asking to add that field on search page of AX receivables as well.
    So, how to add one more field (as search criteria), on an standard 'Customer' screen?
    Additional Info :
    1. LOV is based on HzPuiClassificationFilterVO
    2. And this VO is available on both pages. (oracle.apps.ar.hz.components.search.server.HzPuiClassificationFilterVO)
    So can we achieve this by Personalization only ? if yes plz share the steps as well.
    Regards,
    Adi

    Yes. It is possible through personalization.
    1. Create a criteria row under Advance Search
    2. Create a Result Item under advance table columns
    3. Create a Query Criteria Map based on the criteria and result item above.
    Please note the newly added criteria field should be in the Searchresults VO attributes list.
    Otherwise you need to extend the VO as well.
    Hope this helps.
    Regards,
    -Mukesh.

  • Publish wsp file to office 365 - sharepoint

    Dear,
    How can i deploy a wsp file to sharepoint on office 365?
    For example i want to publish the WireBaer print button to print an item from a list
    (https://infopathprinter.codeplex.com/)
    Thx in advance!

    Hi,
    According to your description, my understanding is that you want to deploy the wsp file to Office 365 SharePoint site.
    I suggest you can upload the wsp file to site settings-> solutions gallery, then you can activate the feature in the ribbon.
    Here is a similiar thread for your reference:
    http://community.office365.com/en-us/f/154/t/64010.aspx#244496
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • VS2013 changes my script tags when I edit a javascript file on Office 365 Sharepoint Developer

    I posted this issue on the sharepoint online thread, and was asked to move the discussion here:
    https://social.msdn.microsoft.com/Forums/office/en-US/24e7060f-bef8-492c-a7b1-4a0aa9279a53/office-365-sharepoint-developer-changes-my-script-tags-when-i-edit-a-javascript-file?forum=sharepointdevelopment
    On my Office 365 Sharepoint Developer site, I have a custom edit form page (editform2.aspx) created for a list and have added a script reference in the additionalpagehead like this
     <script src="/JavaScripts/angular/angular-formly-master/dist/formly.js" type="text/javascript"></script>
    Whenever I edit the file at /JavaScripts/angular/angular-formly-master/dist/formly.js using VS2013 and save it SharePoint replaces my script tag with this:
     <script src="/JavaScripts/angular/angular-formly-master/dist/formly.js~RF322607.TMP" type="text/javascript"></script>
    I thought maybe it had something to do with versioning on my Javascripts library , but versioning is not even enabled there.
    What's with that? How can I prevent it?

    Hi Russell_G,
    Actually this forum is to discuss the VS IDE, to really repro this issue, I'm afraid that it would require the high SharePoint development knowledge, but based on your previous
    thread, since the SharePoint members could repro this issue.
    You can submit this feedback to Microsoft Connect feedback portal: http://connect.microsoft.com/VisualStudio/feedback/CreateFeedback.aspx,Microsoft
    engineers will evaluate them seriously. Thanks for your understanding.
    If you submit it, please share us the link here, so we could get the latest information from the product team members.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Office 365 Sharepoint Developer changes my script tags when I edit a javascript file

    On my Office 365 Sharepoint Developer site, I have a custom edit form page (editform2.aspx) created for a list and have added a script reference in the additionalpagehead like this
     <script src="/JavaScripts/angular/angular-formly-master/dist/formly.js" type="text/javascript"></script>
    Whenever I edit the file at /JavaScripts/angular/angular-formly-master/dist/formly.js and save it SharePoint replavces my script tag with this:
     <script src="/JavaScripts/angular/angular-formly-master/dist/formly.js~RF322607.TMP" type="text/javascript"></script>
    I thought maybe it had something to do with versioning on my Javascripts library , but versioning is not even enabled there.
    What's with that? How can I prevent it?

    Hi Russell,
    According to your description, there is an issue when editing a .js file which is saved in a document library of your developer site.
    This is what I have done in my environment:
    1. Create a Document Library “JavaScripts” with the sub folders and formly.js file as you did;
    2. Create a custom list, a custom edit form “editform2.aspx” for it;
    3. Edit the “editform2.aspx” in SharePoint Designer 2013, reference the formly.js file like this in the “PlaceHolderAdditionalPageHead”:
    4. Edit the formly.js file in SharePoint Designer and save, repeat the process several times;
    It turns out that the “src” attribute of the script tag stays unchanged.
    To narrow down the issue, I would suggest you create another custom edit form for that list and test again to see if the issue still exists.
    Feel free to reply if there any progress.
    Thanks
    Patrick Liang
    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]
    Patrick Liang
    TechNet Community Support

  • Custom Site MailBox for Office 365 SharePoint 2013 online

    Is it possible to create programmatically create site mailbox for Office 365 SharePoint 2013 online?
    How to customize site mailbox email address like [email protected]

    Hi,
    In SharePoint 2013 Online, if you want to sync document library with local drive, you can use OneDrive to achieve it.
    http://office.microsoft.com/en-001/support/sync-onedrive-for-business-or-sharepoint-site-libraries-to-your-computer-HA102832401.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Hide Content Area in Advanced Search page

    How can we hide some Content Areas in the 'Advanced Search' page (3.0.9)?
    Thanks.

    You can create a test case based on the JHS Demo (shipped with JHeadstart 10.1.2.2) or the HR Schema (see http://www.oracle.com/technology/products/jdev/tips/muench/jhstutorial/index.html#setuphrschemaanddata). Please e-mail it to [email protected],
    * removing the cabo folder from the web root (public_html) before zipping it, it makes the zip much smaller
    * renaming the .zip file to something like .zipped, otherwise our mail server will not process it
    * including detailed steps to reproduce the problem.
    Thanks,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • Date picker not showing for datetime type in advanced search page

    Hi,
    I have an advanced search page in my SharePoint 2013 site. There is a property which is of type datetime. For that I'm not getting a date picker. I don't know why this is not working. It is showing the date picker in SharePoint 2010 but not in 2013. Can
    anyone help me on this? Thanks in advance.
    Thanks,
    Jawahar
    Im searching more abt me...........

    A date picker was never supported in Advanced Search.
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

Maybe you are looking for