Cannot see managed properties values in search result webpart- Sharepoint online

Hi,
Cannot see custom managed properties at site collection level in ResultScriptWebPart for SharePoint online. where as it is visible when i create managed properties @SSA (Search Service Application) level.
Below are the steps which I followed:
1) I have added few custom managed properties at Search Site collection level in SharePoint online.
2) Mapped those properties to user profile crawled properties
3) We are using those custom managed properties in ResultScriptWebPart(People Search Core Results) by using ItemTemplate
I cannot see those managed properties in search result.When I debug it in browser it comes as null.
But when I add these managed properties @SSA (Search Service Application) level I can see the value in search result webpart.
  What is the reason value doesn't get populated  at Site Collection level?
Thanks,
Prashant A

Hi Prashant,
Based on your description, the site collection managed property cannot work in SharePoint Online.
For troubleshooting this issue, I recommend to verify the things below:
Please make sure that the full crawl has been run after creating the managed property.
Please check if the managed property is set to be searchable.
Please search with this managed property to see if the results can be returned.
Thanks,
Victoria
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]
Victoria Xia
TechNet Community Support

Similar Messages

  • ADFS SSO and SharePoint 2013 on-premise Hybrid outbound search results from SharePoint Online - does it work?

    Hi, 
    I want to setup an outpund hybrid search for SharePoint 2013 on-premise to SharePoint Online.
    But I'm not shure if this works with ADFS SSO.
    Has somebody experience with this setup?
    Here's my guide which I'm going to use for this installation:
    Introduction
    In this post I'll show you how to get search results from your SharePoint Online in your SharePoint 2013 on-premise search center.
    Requirements
    User synchronisation ActiveDirectory to Office 365 with DirSync
    DirSync password sync or ADFS SSO
    SharePoint Online
    SharePoint 2013 on-premise
    Enterprise Search service
    SharePoint Online Management Shell
    Instructions
    All configuration will be done either in the Search Administration of the Central Administration or in the PowerShell console of your on-premise SharePoint 2013 server.
    Set up Sever to Server Trust
    Export certificates
    To create a server to server trust we need two certificates.
    [certificate name].pfx: In order to replace the STS certificate, the certificate is needed in Personal Information Exchange (PFX) format including the private key.
    [certificate name].cer: In order to set up a trust with Office 365 and Windows Azure ACS, the certificate is needed in CER Base64 format.
    First launch the Internet Information Services (IIS) Manager
    Select your SharePoint web server and double-click Server Certificates
    In the Actions pane, click Create Self-Signed Certificate
    Enter a name for the certificate and save it with OK
    To export the new certificate in the Pfx format select it and click Export in the Actions pane
    Fill the fields and click OK Export to: C:\[certificate
    name].pfx Password: [password]
    Also we need to export the certificate in the CER Base64 format. For that purpose make a right-click on the certificate select it and click on View...
    Click the Details tab and then click Copy to File
    On the Welcome to the Certificate Export Wizard page, click Next
    On the Export Private Key page, click Next
    On the Export File Format page, click Base-64 encoded X.509 (.CER), and then click Next.
    As file name enter C:\[certificate
    name].cer and then click Next
    Finish the export
    Import the new STS (SharePoint Token Service) certificate
    Let's update the certificate on the STS. Configure and run the PowerShell script below on your SharePoint server.
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    $X64CertPath = "c:\[certificate name].cer"
    # get the encrypted pfx certificate object
    $PfxCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # import it
    Set-SPSecurityTokenServiceConfig -ImportSigningCertificate $PfxCert
    Type Yes when prompted with the following message.
    You are about to change the signing certificate for the Security Token Service. Changing the certificate to an invalid, inaccessible or non-existent certificate will cause your SharePoint installation to stop functioning. Refer
    to the following article for instructions on how to change this certificate: http://go.microsoft.com/fwlink/?LinkID=178475. Are you
    sure, you want to continue?
    Restart IIS so STS picks up the new certificate.
    & iisreset
    & net stop SPTimerV4
    & net start SPTimerV4
    Now validate the certificate replacement by running several PowerShell commands and compare their outputs.
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    # get the encrypted pfx certificate object
    New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # compare the output above with this output
    (Get-SPSecurityTokenServiceConfig).LocalLoginProvider.SigningCertificate
    [/code]
    ## Establish the server to server trust
    [code lang="ps"]
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    Import-Module MSOnline
    Import-Module MSOnlineExtended
    # set the cerficates paths and password
    $PfxCertPath = "c:\[certificate name].pfx"
    $PfxCertPassword = "[password]"
    $X64CertPath = "c:\[certificate name].cer"
    # set the onpremise domain that you added to Office 365
    $SPCN = "sharepoint.domain.com"
    # your onpremise SharePoint site url
    $SPSite="http://sharepoint"
    # don't change this value
    $SPOAppID="00000003-0000-0ff1-ce00-000000000000"
    # get the encrypted pfx certificate object
    $PfxCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 $PfxCertPath, $PfxCertPassword, 20
    # get the raw data
    $PfxCertBin = $PfxCert.GetRawCertData()
    # create a new certificate object
    $X64Cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
    # import the base 64 encoded certificate
    $X64Cert.Import($X64CertPath)
    # get the raw data
    $X64CertBin = $X64Cert.GetRawCertData()
    # save base 64 string in variable
    $CredValue = [System.Convert]::ToBase64String($X64CertBin)
    # connect to office 3656
    Connect-MsolService
    # register the on-premise STS as service principal in Office 365
    # add a new service principal
    New-MsolServicePrincipalCredential -AppPrincipalId $SPOAppID -Type asymmetric -Usage Verify -Value $CredValue
    $MsolServicePrincipal = Get-MsolServicePrincipal -AppPrincipalId $SPOAppID
    $SPServicePrincipalNames = $MsolServicePrincipal.ServicePrincipalNames
    $SPServicePrincipalNames.Add("$SPOAppID/$SPCN")
    Set-MsolServicePrincipal -AppPrincipalId $SPOAppID -ServicePrincipalNames $SPServicePrincipalNames
    # get the online name identifier
    $MsolCompanyInformationID = (Get-MsolCompanyInformation).ObjectID
    $MsolServicePrincipalID = (Get-MsolServicePrincipal -ServicePrincipalName $SPOAppID).ObjectID
    $MsolNameIdentifier = "$MsolServicePrincipalID@$MsolCompanyInformationID"
    # establish the trust from on-premise with ACS (Azure Control Service)
    # add a new authenticatio realm
    $SPSite = Get-SPSite $SPSite
    $SPAppPrincipal = Register-SPAppPrincipal -site $SPSite.rootweb -nameIdentifier $MsolNameIdentifier -displayName "SharePoint Online"
    Set-SPAuthenticationRealm -realm $MsolServicePrincipalID
    # register the ACS application proxy and token issuer
    New-SPAzureAccessControlServiceApplicationProxy -Name "ACS" -MetadataServiceEndpointUri "https://accounts.accesscontrol.windows.net/metadata/json/1/" -DefaultProxyGroup
    New-SPTrustedSecurityTokenIssuer -MetadataEndpoint "https://accounts.accesscontrol.windows.net/metadata/json/1/" -IsTrustBroker -Name "ACS"
    Add a new result source
    To get search results from SharePoint Online we have to add a new result source. Run the following script in a PowerShell ISE session on your SharePoint 2013 on-premise server. Don't forget to update the settings region
    if(-not (Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue)){Add-PSSnapin "Microsoft.SharePoint.PowerShell"}
    # region settings
    $RemoteSharePointUrl = "http://[example].sharepoint.com"
    $ResultSourceName = "SharePoint Online"
    $QueryTransform = "{searchTerms}"
    $Provier = "SharePoint-Remoteanbieter"
    # region settings end
    $SPEnterpriseSearchServiceApplication = Get-SPEnterpriseSearchServiceApplication
    $FederationManager = New-Object Microsoft.Office.Server.Search.Administration.Query.FederationManager($SPEnterpriseSearchServiceApplication)
    $SPEnterpriseSearchOwner = Get-SPEnterpriseSearchOwner -Level Ssa
    $ResultSource = $FederationManager.GetSourceByName($ResultSourceName, $SPEnterpriseSearchOwner)
    if(!$ResultSource){
    Write-Host "Result source does not exist. Creating..."
    $ResultSource = $FederationManager.CreateSource($SPEnterpriseSearchOwner)
    $ResultSource.Name = $ResultSourceName
    $ResultSource.ProviderId = $FederationManager.ListProviders()[$Provier].Id
    $ResultSource.ConnectionUrlTemplate = $RemoteSharePointUrl
    $ResultSource.CreateQueryTransform($QueryTransform)
    $ResultSource.Commit()
    Add a new query rule
    In the Search Administration click on Query Rules
    Select Local SharePoint as Result Source
    Click New Query Rule
    Enter a Rule name f.g. Search results from SharePoint Online
    Expand the Context section
    Under Query is performed on these sources click on Add Source
    Select your SharePoint Online result source
    In the Query Conditions section click on Remove Condition
    In the Actions section click on Add Result Block
    As title enter Results for "{subjectTerms}" from SharePoint Online
    In the Search this Source dropdown select your SharePoint Online result source
    Select 3 in the Items dropdown
    Expand the Settings section and select "More" link goes to the following URL
    In the box below enter this Url https://[example].sharepoint.com/search/pages/results.aspx?k={subjectTerms}
    Select This block is always shown above core results and click the OK button
    Save the new query rule

    Hi  Janik,
    According to your description, my understanding is that you want to display hybrid search results in SharePoint Server 2013.
    For achieving your demand, please have a look at the article:
    http://technet.microsoft.com/en-us/library/dn197173(v=office.15).aspx
    If you are using single sign-on (SSO) authentication, it is important to test hybrid Search functionality by using federated user accounts. Native Office 365 user accounts and Active Directory Domain Services
    (AD DS) accounts that are not federated are not recognized by both directory services. Therefore, they cannot authenticate using SSO, and cannot be granted permissions to resources in both deployments. For more information, see Accounts
    needed for hybrid configuration and testing.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Show properties in the Search Result window

    Hello all,
    I would like to add few properties in the Search Result window such that the corresponding values are visible at a glance rather than checking the same in the respective Details wondow.
    Example: Ia have created new Properties like ReqNo, ReqDate... and would like them to appear in the Search Result window.
    Please help me solve this.
    Im also reading the UI topic given in help.sap.com but am unable to find the answer.
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu

    Hi Ritu,
    Go to KM Config > Content Management > User Interface > Settings > Layout Set and put "Search" in the filter.   You should see "SearchResultLayoutSet" and this is the Layout Set that is used to display Search Results.   Within the Collection Renderer there is Displayed Properties, this is what you need to focus on.
    There are some other threads and documents associated with your question here on SDN.   If you do a search for "SearchResultLayoutSet" in the SDN search you should get enough information to achieve your objective.
    Sorry for the brief reply but I have one foot out the door heading for the airport and won't be back online for another couple of days.
    Let me know how you go
    Paul

  • Add custom properties to People Search Results

    Good morning,
    I am trying to include some custom properties to our Search Results. These are the steps I have followed so far:
    Create User Profile Service Property and sync to AD. The property is populated for different users.
    Run full crawl
    Create managed property on the Schema, and map this to the crawled property
    Created a new version of the Item_Person.html template and changed its title.
    Upload to the Display Templates gallery, and created a new Result Type with this as its template
    Added the new property to the mso:ManagedPropertyMapping tag
    Went to Search Result Types, and selected "Update" on the Property Sync alert
    On the new template, the new property appears on the object ctx.CurrentItem, but its value is null.
    Am I missing something? Tried running full crawl and incremental crawl. Even tried removing the index first.

    Hi,
    Please try to add custom properties using Central Admin.
    I find a thread with the same question, check this:
    http://sharepoint.stackexchange.com/questions/123090/add-custom-properties-to-people-search-results
    More information:
    http://blogs.technet.com/b/tothesharepoint/archive/2013/09/11/how-to-display-values-from-custom-managed-properties-in-search-results-option-1.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • HELP: Cannot See Child Node Values.

    I'm trying to print out child node values from following code, I can print child node name but cannot see child node values. Can somebody help me t o figure out this problem
    FOR childelement in 0..lengthchild-1
    LOOP
    IF childelement = 0 THEN
    kounter := kounter + 1; END IF;
    chnode := xmldom.item(childnodelist,childelement);
    v_childnode := xmldom.getNodeName(chNode);
    dbms_output.put_line('Child Node Name : '| |v_childnode);
    IF (v_childnode) is not null THEN
    chnodevalue := xmldom.getNodeValue(chnode);
    dbms_output.put_line('Child Value Is :'| |chnodevalue);
    ELSE
    dbms_output.put_line('Child Value Is NULL');
    chnodevalue:= null;
    END IF;
    End Loop;

    if you don't see any of the key values..
    and you know exactly what you are doing..
    you can create the registry keys and values.
    But make sure you know exactly what you are doing; adding and changing registry keys, might end up with a corrupt operating system.
    Please try the settings on a virtual environment, before applying to the production.
    If anything mess up with changing the registry you got your back covered, but if you're brave enough do it on the production server without doing the test on a VM. 
    Every second counts..make use of it. Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.

  • HT204074 cannot see manage devices on account menu

    New computer, loaded itune, tried to sync ipad, wouold not allow due to already have 5 computers link to my apple account.  try to deactivate computer but cannot see manage device on the accoubnt menu

    OH MY GOSH!! I just figured it out. Good thing, because I was not going to be able to function until I did.
    The reason I didn't have a "manage devices" option is because I had not authorized any of my devices (Windows PC, iPod Touch, iPhone) to automatically download anything from my iCloud.
    Once I went into my settings and did so, I suddenly had "manage devices," and all three of my devices showed up.
    Here's the link to show you how to enable automatic downloads on a Mac, PC, or device (iPhone, iPod Touch).
    http://support.apple.com/kb/HT4539
    Hope that helped!
    I guess iTunes isn't sexist after all...

  • Search results webpart

    Hi,
    I am looking to configure "Search Results webpart" to display items that are currently checked out by the current logged in user. I want the results to be shown from the current site.
    Can you please list steps to configure the result sources and property filters to achieve the same.
    techie

    Hi techie,
    This behavior can be altered in Document Library Settings ->
    Versioning Settings -> Draft Item Security
    Select the option Any user who can read items.
    This will allow all users to see draft items including the crawling account.
    Reference:
    https://support.microsoft.com/kb/2304855?wa=wsignin1.0
    Thanks,
    Eric
    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]
    Eric Tao
    TechNet Community Support

  • Managed custom properties at site collection level when used as refiner returns no value in search result web part

    I have created certain crawled properties and mapped them to the OOB managed properties( refineable active )  in search schema at site collection level and tried to use them as refiner in the search
    site at farm level but it returns no value.
    But when i use the same crawled property and map it to a service level OOB metadata property ( refineable active ) and use it in search as refiner it returns result , Can you help as to why this difference is there.
    What steps should i do so that site level refiners also work in the enterprise search 
    Thanks in advance

    Hi  Dextar,
    According to your description, my understanding is that you want to create a site level refiner in SharePoint 2013.
    Here is a detailed blog you can refer to:
    http://blogs.technet.com/b/tothesharepoint/archive/2013/11/11/how-to-add-refiners-to-your-search-results-page-for-sharepoint-2013.aspx
    Be aware that any changes in the manage property required full crawl.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Modify xsl such a way that search core results is similar to style of peopel search results webpart

    Hi
    We have a custom Contacts list where all the fields are single line of text columns.
    A new scope has been created for the above Contacts list.
    Now, the Search core results webpart should be able to get the search results for a given search criteria across all the columns. As of now, it is fetching only for column.
    I'm using the xslt tabular view to dsiplay the search results.
    Please provide me inputs to achieve the above functionality.

    Hi Kusuma,
    Here is an article about showing the contact list item in people search results web part with modifying the search scope rules and managed properties mapping, you can take a look.
    http://johnliu.net/blog/2012/9/25/sharepoint-showing-contacts-in-people-search-results.html
    Thanks
    Daniel Yang
    TechNet Community Support

  • Error while opening file from search result in SharePoint Server 2013

    Hi All,
    I have configured a file system search in SharePoint serve 2013, it is crawling the data and displaying in search result.
    But while click on file to open, it gives error "Cannot find 'file://filesystemPath/filename'. Make sure the path or internet address is correct.".
    I have given 'Everyone' to read and execute rights on shared folder (used in file system).
    Please guide me.
    Thanks in advance
    Dharmender Sharma

    Hi,
    Please check whether this issue occurred on all files or a specific file from the shared folder.
    1. If this issue occurred on a specific file, please check if the file exists in the shared folder, whether someone deleted it.
    2. If this issue occurred on all files , please check the network and make sure the shared folder is online
    Feel free to reply if the issue still exists.
    Best regards
    Wendy Li
    TechNet Community Support

  • Error opening PDF files from search results webpart on anonymous SharePoint 2013SP1 site with IE

    Clicking search results, in the strict sense pdf files, using IE on an anonymous SharePint 2013SP1 site, I received the error: There was an error opening this document. The filename, directory name, or volume label syntax is incorrect.
    I would like to solve this problem on the server side.
    Starting position:
    SharePoint 2013 SP1
    Web Application:
    based on template 'Publishing Portal'
    Anonymous Access enabled
    Claims based authentication: Integrated Windows Authentication NTLM
    Client Integration disabled
    Site Collection:
    Anonymous Access enabled for 'Entire Web site' => group 'Anonymous Users' was created
    added permission to open items: $Web.AnonymousPermMask64 = "ViewListItems, ViewVersions, ViewFormPages, Open, ViewPages, UseClientIntegration, OpenItems"
    Client side solutions:
    c1) Open Link with “Open in new tab” or “Open in new window” => OK
    c2) Disable IE Add-on “Adobe Acrobat Sharepoint OpenDocuments Component” => OK
    c3) Set bDisableSharePointFeatures to 1 in regetit => OK
    Server side solutions:
    S1) Turn off Client Integration => didn't work, still same error
    S2) Modify DOCICON.XML => didn't work, still same error
    I gave these two options a chance:
    first: <Mapping Key="pdf" Value="icpdf.png" OpenControl="SharePoint.OpenDocuments"/>
    then: <Mapping Key="pdf" Value="icpdf.png" OpenControl="AdobeAcrobat.OpenDocuments"/>
    I modified DOCICON.XML on both hives 14 and 15.
    Remarks:
    - After changingparameters I allways did an IISreset.
    - As far as I understood I can only change bDisableSharePointFeatures on Client Side.
    Any help, suggestion, idea wellcome!
    Thanks!

    Hi folks, here's the reason for my problem. I used the oob search result web part. The result items (PDF items) are rendered by the template Item_PDF.html/Item_PDF.js. This template holds a code snippet that assigns a certain OpenControl to the PDF item - that's hard coded. So, no matter what you configure in DOCICON.XML, the PDF item will be opened with the control "PdfFile.OpenDocuments". Solution is e.g. just to leave the OpenControl blank.   
    template:
    /_catalogs/masterpage/Display Templates/Search/Item_PDF.html
    /_catalogs/masterpage/Display Templates/Search/Item_PDF.js
    code before:
    ctx.CurrentItem.csr_OpenControl = "PdfFile.OpenDocuments";
    code after:
    ctx.CurrentItem.csr_OpenControl = "";
    Enjoy
    Harry

  • Finding relevant search results in sharepoint 2013

    I had a 5 word documents Test1, Test 2, test 3, test 4 and test 5 and i had variant, score, geoname and complex variant like the below.
    Test 1
    Variant : 501
    Score : 500
    GoeName : 502
    Test 2
    Variant : 500
    Score : 502
    GoeName : 501
    Test 3
    Variant : 502
    Score : 501
    GoeName : 500
    Test 4
    Variant : 602
    Score : 601 GoeName : 600
    Complex variant : 500
    Test 5
    Variant : 500
    Score : 700
    GoeName : 701
    Complex variant : 600
    I uploaded all those files in document library and crawled the documents. when i search for variant : 500 using search box instead of getting Test 2 word document which matches exactly what i typed in the search box it is pulling test 4 document. which has
    Complex variant : 500 in it.
    How can i get relevant search results??
    If i search for variant: 500 i should get Test 2 and Test 5 document. If i search for Complex variant : 500 then i should get Test 4 document.

    If you think about it as a string matching process you'd expect to get documents all the documents back as they all contain 'Variant' and '500'. The search engine, from start to finish, would need to understand and honour contextual searching to automatically
    pick up on that.
    If you want to return those results perfectly then you need to surface them as metadata on the items, add those terms as mapped properties which you can search and refine on then build a custom search page for it.

  • Creating customized search results in SharePoint 2013

    I am trying to customize search result through display template. my template has two block for Rendering. how to customize search result such as following image:

    Hi Dastani,
    There are two ways to display your results.
    In Search result web part by creating the display type.
    Content Search web part
    As per your above image, I guess you are talking about the content search web part. So for that you need to modify the both control template as well as item display
    template. I don't think you will get the desire result as per your block , During the render process the item template call for each item (indexed item in the
    search corpus).
    Basant Pandey
    http://sharepointfordeveloper.blogspot.com/

  • Folder name showing in the search result in SharePoint 2013

    Hello,
    In SharePoint 2013, when user search for a document within a folder, Search content along with Folder name and icon getting displayed in the search result. I am trying to hide Folder name from search result. Please suggest some way to achieve this.
    Thank you
    Jyotiraaditya

    Hi,
    As I understand, you want to search without folders in SharePoint 2013.
    You can do the steps to achieve your request:
    In search center in results page, click Edit page.
    In search results web part, click dropdown in the upper right corner -> click Edit Web Part.
    Click Change query -> in Property filter field -> choose contenttype, not contains, folder  -> click Add property filter -> ok.
    Thanks,
    Dean Wang

  • Managed property in a site collection (powershell - SharePoint online)

    Link to my site collection -> https://web.domain.com/sites/SC/_layouts/15/listmanagedproperties.aspx?level=sitecol
    when opening an url similar to this one and filter on a property name refinablestring00
    What I need is to is to add a mapping to do is to add a mapping
    Mappings to crawled properties
    With powershell.
    Assume that a full crawl has finished. That all crawled properties exist.
    I want to add "ows_GoPro_x0020_Code" and I also want to change the Alias to "ProjectNumber"
    What is the best way to do this via powershell for SharePoint 2013 online?
    Do I need to build a sandboxed solution for this?

    HI,i would recommend  run the PowerShell cmdlet to check if this website exists. Here are the detailed steps:
    1. Set up the SharePoint Online Management Shell Windows PowerShell environment
    http://technet.microsoft.com/en-us/library/fp161372.aspx
    2. Run the command Get-SPOSite, it will return all site collections.
    3. Check if the problematic public site collection is shown in the result. If it shows up, run another command to remove it. For example:
    Remove-SPOSite -Identity https://expertsharepoint/sites/site1 -NoWait
    This will remove the site collection named https://expertsharepoint/sites/site1 from the site collections list and moves it to the Recycle Bin.
    4. Delete the site from the Recycle Bin:
    Remove-SPODeletedSite -Identity https://expertsharepoint/sites/site1
    Anil Avula[MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

Maybe you are looking for

  • Actionscript is causing Flash to crash everytime, Here are my error reports

    Someone please help, I have built an animation and can't apply the stop action to my final frame so the animation just replays over and over. BIG PROBLEM. Console saying: Jul 19 20:23:22 Brad-Haynes-Computer crashdump[230]: Flash crashed Jul 19 20:23

  • Updating Bank Details Periodically.

    Hi Experts, Does SAP provide a functionality to update the bank details with which the organisation transacts using a middleware such as XI/PI????? More specifically I wanted to know whether SAP has some built in component that would allow retreival

  • String in SSFC_BASE64_CODE

    Hi, I need to use SSFC_BASE64_CODE FM. I define variable of type c, but I can define it only up to 65535. I have a large file do decode to base64 (much more than 65KB). When using string I get incorrect variable string. Can I decode my string by part

  • Installation problems for Adobe Director 11.5 for Mac OS X Lion

    I've downloaded other Adobe products from this site before, like Photoshop Lightroom, etc. There were no problems concerning installation with that. But when I downloaded the Adobe Director 11.5 for Mac recently, the process of installation stops in

  • Library Dimension

    Hi everybody! i'm italian so... sorry for my bad english! i'm using aperture and it's really cool... but i've a question: i've imported 1.4 GB of pictures (only jpeg pictures, not RAW) and i have modified some pictures (i think 30-40 pictures, nothin