SAP_PA Service - Configuring for IT 0019

Hi Experts
I have done the necessary steps such that using HCM Forms and SAP_PA Service, IT 0019 gets updated when a particular form is submitted but I think i missed some point somewhere as it is not updating IT 0019.
Can any1 help me with it? The Custom form was already updating IT 0000,0001, 00014 and 0041 and I added the service for IT0019 on similar lines but the config doesnt work.
Has any1 done it in the past and help me do it the right way?

Have you checked your decoupled infotype framework config? You might have IT0019 marked as "read only" in there which would stop any kind of update even from HCM P&F.

Similar Messages

  • No active service configuration for service: FormsService

    Hi All,
    I am using a java application to render pdf from XDP. Whenever i perform action to download or view pdf, i am getting the below error message in my eclipse. Please assist. Thanks.
    Error in rendering PDF :ALC-DSC-023-000: com.adobe.idp.dsc.registry.service.NoActiveServiceConfigurationException: There is no active service configuration for service: FormsService."

    Hi Pushkar,
    I am unable to uninsatll the service component. The service is still running and not let me stop and re-install.
    Is there is any way for me to stop the servie explicitly?
    thanks.

  • Traffic/Service configuration for ISG

    Need help in configuration so that the following requirements should be met:
    A set of target IP Addresses to be excluded in the traffic defined for a service (access to those IPs should be allowed, only that the traffic should not be qualified under service usage)
    Please let me know about this as quickly as possible as its urgent for me.
    Thanks.

    No Service Authentication is done successfully using RADIUS. We have two services INTERNET & INTRANET and the question here is how to configure the IP traffic for a particular service i.e either for INTERNET or INTRANET service. To be more specific on the details:
    We are using CISCO ISG as a gateway for both INTERNET and INTRANET access. We are having a separate billing server connected with AAA server. We are able to successfully bill the authenticated users when they are accessing the INTERNET service (for both prepaid and postpaid).
    But our problem is when a user who is authenticated and is accessing the INTRANET pages, he getting charged for that service and amount is deducted from his/her account. To be precise over the solution required:
    - Exclude the charging/billing for the user when he accesses INTRANET service.
    - At the same time charge/bill him when he is accessing INTERNET service.
    Any suggestions regarding CISCO ISG configuration in this regard for how to achieve the above requirement is highly apppreiciated.
    Thanks.

  • Services configuration for sql server 2008r2 in a Windows Cluster

    Hello,
    We have a Windows Server 2008 Cluster with Sql Server 2008r2 installed on node 2; when node 2 fails (we don't still know why, it's a 'bluescreen' long history), the service goes from node2 to node1, but sometimes the services are not automatically activated.
    What is the theoretical startup settings for sql services (for the sql and the agent), manual, disabled, automatic... ?
    Also, sometimes, the service for the sql server in node2 stops, but we don't know why, and we are not able to see any significant information on the event viewer. How can we trace why Sql Server stopped ?
    Thanks !

    >What is the theoretical startup settings for sql services
    Manual.  The cluster will start them.
    >How can we trace why Sql Server stopped ?
    Look in the SQL Server Log.
    David
    David http://blogs.msdn.com/b/dbrowne/

  • REST API: Create Deployment throwing error BadRequest (The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.)

    Hi All,
    We are trying to access the Create Deployment method stated below
    http://msdn.microsoft.com/en-us/library/windowsazure/ee460813
    We have uploaded the Package in the blob and browsing the configuration file. We have checked trying to upload manually the package and config file in Azure portal and its working
    fine.
    Below is the code we have written for creating deployment where "AzureEcoystemCloudService" is our cloud service name where we want to deploy our package. I have also highlighted the XML creation
    part.
    byte[] bytes =
    new byte[fupldConfig.PostedFile.ContentLength + 1];
                fupldConfig.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
    string a = Encoding.UTF8.GetString(bytes, 0, bytes.Length);
    string base64ConfigurationFile = a.ToBase64();
    X509Certificate2 certificate =
    CertificateUtility.GetStoreCertificate(ConfigurationManager.AppSettings["thumbprint"].ToString());
    HostedService.CreateNewDeployment(certificate,
    ConfigurationManager.AppSettings["SubscriptionId"].ToString(),
    "2012-03-01", "AzureEcoystemCloudService", Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot.staging,
    "AzureEcoystemDeployment",
    "http://shubhendustorage.blob.core.windows.net/shubhendustorage/Infosys.AzureEcoystem.Web.cspkg",
    "AzureEcoystemDeployment", base64ConfigurationFile,
    true, false);   
    <summary>
    /// </summary>
    /// <param name="certificate"></param>
    /// <param name="subscriptionId"></param>
    /// <param name="version"></param>
    /// <param name="serviceName"></param>
    /// <param name="deploymentSlot"></param>
    /// <param name="name"></param>
    /// <param name="packageUrl"></param>
    /// <param name="label"></param>
    /// <param name="base64Configuration"></param>
    /// <param name="startDeployment"></param>
    /// <param name="treatWarningsAsError"></param>
    public static
    void CreateNewDeployment(X509Certificate2 certificate,
    string subscriptionId,
    string version, string serviceName, Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot deploymentSlot,
    string name, string packageUrl,
    string label, string base64Configuration,
    bool startDeployment, bool treatWarningsAsError)
    Uri uri = new
    Uri(String.Format(Constants.CreateDeploymentUrlTemplate, subscriptionId, serviceName, deploymentSlot.ToString()));
    XNamespace wa = Constants.xmlNamespace;
    XDocument requestBody =
    new XDocument();
    String base64ConfigurationFile = base64Configuration;
    String base64Label = label.ToBase64();
    XElement xName = new
    XElement(wa + "Name", name);
    XElement xPackageUrl =
    new XElement(wa +
    "PackageUrl", packageUrl);
    XElement xLabel = new
    XElement(wa + "Label", base64Label);
    XElement xConfiguration =
    new XElement(wa +
    "Configuration", base64ConfigurationFile);
    XElement xStartDeployment =
    new XElement(wa +
    "StartDeployment", startDeployment.ToString().ToLower());
    XElement xTreatWarningsAsError =
    new XElement(wa +
    "TreatWarningsAsError", treatWarningsAsError.ToString().ToLower());
    XElement createDeployment =
    new XElement(wa +
    "CreateDeployment");
                createDeployment.Add(xName);
                createDeployment.Add(xPackageUrl);
                createDeployment.Add(xLabel);
                createDeployment.Add(xConfiguration);
                createDeployment.Add(xStartDeployment);
                createDeployment.Add(xTreatWarningsAsError);
                requestBody.Add(createDeployment);
                requestBody.Declaration =
    new XDeclaration("1.0",
    "UTF-8", "no");
    XDocument responseBody;
    RestApiUtility.InvokeRequest(
                    uri, Infosys.AzureEcosystem.Entities.Enums.RequestMethod.POST.ToString(),
    HttpStatusCode.Accepted, requestBody, certificate, version,
    out responseBody);
    <summary>
    /// A helper function to invoke a Service Management REST API operation.
    /// Throws an ApplicationException on unexpected status code results.
    /// </summary>
    /// <param name="uri">The URI of the operation to invoke using a web request.</param>
    /// <param name="method">The method of the web request, GET, PUT, POST, or DELETE.</param>
    /// <param name="expectedCode">The expected status code.</param>
    /// <param name="requestBody">The XML body to send with the web request. Use null to send no request body.</param>
    /// <param name="responseBody">The XML body returned by the request, if any.</param>
    /// <returns>The requestId returned by the operation.</returns>
    public static
    string InvokeRequest(
    Uri uri,
    string method,
    HttpStatusCode expectedCode,
    XDocument requestBody,
    X509Certificate2 certificate,
    string version,
    out XDocument responseBody)
                responseBody =
    null;
    string requestId = String.Empty;
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
                request.Method = method;
                request.Headers.Add("x-ms-Version", version);
                request.ClientCertificates.Add(certificate);
                request.ContentType =
    "application/xml";
    if (requestBody != null)
    using (Stream requestStream = request.GetRequestStream())
    using (StreamWriter streamWriter =
    new StreamWriter(
                            requestStream, System.Text.UTF8Encoding.UTF8))
                            requestBody.Save(streamWriter,
    SaveOptions.DisableFormatting);
    HttpWebResponse response;
    HttpStatusCode statusCode =
    HttpStatusCode.Unused;
    try
    response = (HttpWebResponse)request.GetResponse();
    catch (WebException ex)
    // GetResponse throws a WebException for 4XX and 5XX status codes
                    response = (HttpWebResponse)ex.Response;
    try
                    statusCode = response.StatusCode;
    if (response.ContentLength > 0)
    using (XmlReader reader =
    XmlReader.Create(response.GetResponseStream()))
                            responseBody =
    XDocument.Load(reader);
    if (response.Headers !=
    null)
                        requestId = response.Headers["x-ms-request-id"];
    finally
                    response.Close();
    if (!statusCode.Equals(expectedCode))
    throw new
    ApplicationException(string.Format(
    "Call to {0} returned an error:{1}Status Code: {2} ({3}):{1}{4}",
                        uri.ToString(),
    Environment.NewLine,
                        (int)statusCode,
                        statusCode,
                        responseBody.ToString(SaveOptions.OmitDuplicateNamespaces)));
    return requestId;
    But every time we are getting the below error from the line
     response = (HttpWebResponse)request.GetResponse();
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <Code>BadRequest</Code>
      <Message>The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message>
    </Error>
     Any help is appreciated.
    Thanks,
    Shubhendu

    Please find the request XML I have found it in debug mode
    <CreateDeployment xmlns="http://schemas.microsoft.com/windowsazure">
      <Name>742d0a5e-2a5d-4bd0-b4ac-dc9fa0d69610</Name>
      <PackageUrl>http://shubhendustorage.blob.core.windows.net/shubhendustorage/WindowsAzure1.cspkg</PackageUrl>
      <Label>QXp1cmVFY295c3RlbURlcGxveW1lbnQ=</Label>
      <Configuration>77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0NCiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KDQogIFRoaXMgZmlsZSB3YXMgZ2VuZXJhdGVkIGJ5IGEgdG9vbCBmcm9tIHRoZSBwcm9qZWN0IGZpbGU6IFNlcnZpY2VDb25maWd1cmF0aW9uLkNsb3VkLmNzY2ZnDQoNCiAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLg0KDQogICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioNCi0tPg0KPFNlcnZpY2VDb25maWd1cmF0aW9uIHNlcnZpY2VOYW1lPSJXaW5kb3dzQXp1cmUxIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMSIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTA1LjEuNyI+DQogIDxSb2xlIG5hbWU9IldlYlJvbGUxIj4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIyIiAvPg0KICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+DQogICAgICA8U2V0dGluZyBuYW1lPSJNaWNyb3NvZnQuV2luZG93c0F6dXJlLlBsdWdpbnMuRGlhZ25vc3RpY3MuQ29ubmVjdGlvblN0cmluZyIgdmFsdWU9IkRlZmF1bHRFbmRwb2ludHNQcm90b2NvbD1odHRwcztBY2NvdW50TmFtZT1zaHViaGVuZHVzdG9yYWdlO0FjY291bnRLZXk9WHIzZ3o2aUxFSkdMRHJBd1dTV3VIaUt3UklXbkFrYWo0MkFEcU5saGRKTTJwUnhnSzl4TWZEcTQ1ZHI3aDJXWUYvYUxObENnZ0FiZnhONWVBZ2lTWGc9PSIgLz4NCiAgICA8L0NvbmZpZ3VyYXRpb25TZXR0aW5ncz4NCiAgPC9Sb2xlPg0KPC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=</Configuration>
      <StartDeployment>true</StartDeployment>
      <TreatWarningsAsError>false</TreatWarningsAsError>
    </CreateDeployment>
    Shubhendu G

  • Web service URL configuration for Xcelsius in BO XI3.1

    Currently we can evaluate the BOE R2 and BOE XI3.1, and we are facing such a problem:
    In R2, we configure the Web service URL for Tomcat in "...\Tomcat\webapps\businessobjects\enterprise115\desktoplaunch\WEB-INF\web.xml
    ", there is a parameter called "crystalxcelsius.webconnectorurl", we configure it like this:
    <context-param>
            <param-name>crystalxcelsius.webconnectorurl</param-name>
            <param-value>
                 http://XX:8080/dswsbobje/qaawsservices/queryasaservice
            </param-value>
    </context-param>
    How can we do the same configuration in BOE XI3.1?
    We cannot find the same web.xml because the folder structure has changed.
    After we deployed the Xcelsius dashboards from BOE R2 to BOE XI3.1, it failed and the error message shows:"Unable to load URL...".

    The Xcelsius team is investigating this issue. We'll update you when possible. Meanwhile here is a suggestion from another user.
    "The web service url setting was removed from XI R3 due to the changes in InfoView/CMC client action framework in XI R3. In XI R3, there are multiple web.xml files instead of just one web.xml. The parameters defined in Xcelsius' web.xml cannot be accessed by Crystal Report or WebI...
    Anyway, I have a workaround might work (I never tried it myself). In Xcelsius design time, add a flashvars range name "CEWebServiceURL" and bind the value of this range to a cell that has the url of the web service you want to use at run-time. The SWF should use this url to refresh LiveOffice at run-time."

  • Services missing for DUET Configuration

    Hi all,
    In configuring DUET Enterprise, certain services are missed out which are required for completing the configuration. The missed services are :
    /sap/bc/webdynpro/sap/saml2
    /sap/public/mysssocnt
    /sap/bc/srt/pm
    In SICF tcode, when I see the above services, Iam unable to find out.
    Can anybody clear me that, for these services, we need to install certain patches or any other alternative is there to get these services.
    Thanks & Regards,
    Kris

    Hi Holger,
    Thanks for your reply.
    As mentioned in chapter 3.3.2 Configure the Service Provider for StarterServices Endpoints for duet Enterprise.
    We need to perform some steps on the SAP system on T.code: soamanager.
    while performing step number 9 on chapter 3.3.2 we are unable to see
    Application and Scenario Communication tab (or the Service Administration
    tab) and we are stuck here.
    Moreover,
    while manually adding services describe in 3.3.2 chapter i am getting
    error "0 entities found!"
    Procedure iam following is desribed below:
    1. Go to T.code: soamanager.
    2. Click on Business Administration.
    3. click on Mass configuration.
    4. click Create
    5. In the Configuration Scenario section fill in the following:
    a. Enter the configuration scenario name, for example, StarterServices.
    b. Enter a description for the scenario, for example, Services used by
    Starter Services.
    6. Select the Provider tab and click Add.
    7. Select the Search tab.
    a. In the Search by field, select Service.
    b. In the Search Pattern field, enter the name of a starter service
    required service, for example CustomerERPByIDQueryResponse_In.
    c. In the Field field, select Both Names.
    d. Click GO.
    e. Click Add to Worklist.
    when i click on "go" as mentioned in step number 7 above i am getting
    error "0 entities found!".
    So we are assuming it might be due to the services missing in SAP(backend system).
    Please suggest on it.
    Thanks
    Kris

  • NW04 SP21 Activity Data Collector service unavailable for configuration

    Hello Portal experts,
    We have installed SP21 on NW04 and w were wanting to utilize the Activity Data Collector (http://help.sap.com/saphelp_nw04/helpdata/en/57/a21f407b402402e10000000a1550b0/frameset.htm) to perform some performance and usage analysis. When attempting to activate the service I find that it is not available.
    From:
    http://help.sap.com/saphelp_nw04/helpdata/en/46/e42c3ed63369b5e10000000a114a6b/frameset.htm
    1. Navigate to System Administration > System Configuration > Service Configuration.
    2. In the Portal Catalog, navigate to the portal service at Applications > com.sap.portal.activitydatacollector > Services > DataCollectionHook.
    3. ....
    Looking in the PDC we can see the par files for PCR but it doesn't appear we have anything for activitydatacollector.
    We did our due and searched in notes, sdn etc. and were not finding much to go on so any help is appreciated.
    Bryant

    I raised a SAP customer message about this and SAP support replied thus:
    "If you do not find the file com.sap.portal.activitydatacollector.par.bakin one of the following directories, please deploy the attached .sda
    files as explained below.
    \usr\sap\<SID>\JCxx\j2ee\cluster\serverX\apps\sap.
    com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd
    \usr\sap\<SID>\JCxx\j2ee\cluster\serverX\apps\sap.
    com\irj\servlet_jsp\irj\root\WEB-INF\deployment\temp
    Attached you can find the zip file data_collector. Please extract it anduse the SDM server to deploy the 2 SDAs inside with the following
    order:
    com.sap.portal.activityreportingframework.sda
    com.sap.portal.activitydatacollector.sda
    After that you should be able to configure and run the Activity Data Collector. "
    We deployed the sdas and after a restart, we were able to access this service.
    Thanks
    Raj Balakrishnan

  • When trying to access one website, Firefox says " This domain is not configured for this service. Please add it to your account."

    I am trying to access a fabric website I have used before and when I try to type in the domain name, a message appears saying "This domain is not configured for this service. Please add it to your account". How do I fix this?

    That message sounds like an address might have changed on the server...
    Are you trying to access the site directly using a bookmarks, or by typing into the address bar, or by following a link in a search engine? Sometimes links change making bookmarks and search engine entries obsolete, or Firefox's autofill feature suggests an address that no longer works, so if one approach doesn't work, you might try one of the others.

  • Configuration of Service procurement for Extend Classic

    Hi SRM Gurus,
    Can anyone send me the configuration documents for configuration of service procurement for extend classic scenario.
    I have referred to SRM Enterprise Buyer 5.0 Configuration (SRM 210) and SAP Library. But both of these doesn't talk about the configuration steps involved in that.
    Any documents, leads and help would be highly appreciated. My email id is [email protected]
    Thanks
    Ramgopal Verma

    Hi,
    In plant Y, you have to maintain Spl.procurement key in material master. In MRP 2 view assign External procurement & spl.procurement kery 40.
    In the plant X, create material master as inhouse production in MRP 2 view.
    Have to maintain BOM & Routing in plant X.
    Configure in SPRO> MRP> Planning> Define spl.procurement key.
    In this assign Issue plant as X.
    Run MRP for plant Y. System create Stock transport req in plant Y.
    Convert this req into stock transport order.
    In plant X, dependent req will create.
    Use MB1B mvt type 301for single level stock transport.
    For multi level stock transport use MB1B 303 - issue & 305 -receive mvt.
    Regards,
    Dharma

  • Service Configuration Tool (svc) for Archlinux

    Hello, I'm providing you with a very simple Service Configuration Tool for the management of system services (scripts located inside /etc/rc.d).
    DOWNLOAD LINK: http://aur.archlinux.org/packages.php?ID=30660
    Usage:
    svc DAEMON subcommand
    DAEMON = name of the service to manage
    subcommand = subcommand to pass to the service (e.g. start)
    Example (DAEMON=samba):
    svc samba enable
    svc samba disable
    svc samba configure
    It acts as a wrapper for services and provides a mechanism for enabling (starting and adding the daemon to /etc/rc.conf) and disabling (stopping and removing the daemon from /etc/rc.conf) them. The tool does not constrain your subcommands to only enable and disable, any other service subcommand should act as expected (the value of this subcommand is passed to the rc.d script directly).
    By its own, the script doesn't do much. It is with the help of a shell with a completion system (like zsh or recent versions of bash) that you can get the full benefits of it. For example, I only have to type "svc <TAB>" and all available system services will be available for completion, once a service is typed, it's subcommands (start, stop, restart, etc) will be available for completion too, along with enable and disable.
    Other feature I integrate into some rc.d scripts is the subcommand "configure", which simply calls an editor with the service configuration file (e.g. vim /etc/samba/smb.conf). By combining this and the "svc" tool I can easily configure some services (the ones that make sense, apache is not a good candidate for this since it's got many configuration files): "svc samba configure".
    This was done for two reasons: 1) I used opensolaris for over a year and a half, and when I switched back to linux there was a utility I really missed: "svcadm" (actually, the whole SMF is what I miss, but such a complete/beautiful init framework/service management replacement won't make it into gnu/linux any time soon); 2) As a system administrator, it's daunting to have to type "/e<TAB>/r<TAB>.<TAB>/$SERVICE_NAME $SUBCOMMAND" when I need to manage a service, it's much more pleasant to simply write "svc <TAB> $SERVICE_NAME $SUBCOMMAND" ($SERVICE_NAME and $SUBCOMMAND show options for completion when pressing <TAB>).
    Along with the "svc" script, a script for the zsh completion system is provided. Please contact me if you have an implementation for bash.
    Enjoy,
    Edgar Merino
    Last edited by bimbo (2009-10-08 01:53:58)

    bimbo wrote:
    You could easily get rid of those premade functions and integrate the functionality inside the _svc script:
    In the "svc()" function, for every option of the switch (case) statement, prefix the calls to the rc.d scripts with "sudo", e.g. "sudo ${SERVICES_DIR}/$1 start". If you want to constrain completion options for services to only "( start stop restart)", remove the "enable" and "disable" bindings defined in the "svc()" function and modify the "_svc()"  function (notice the underscore) like this:
    _svc() {
    case $CURRENT in
    2) # Show services under /etc/rc.d for completion
    _services
    3) # Show current service subcommands for completion
    # This is here so that _init_d works on the service name rather
    # than on the actual function name "svc"
    (( CURRENT-- ))
    shift words
    # CONSTRAIN COMPLETION OPTIONS TO ONLY start, stop and restart
    compadd start stop restart
    esac
    So, would I have to call it via _svc $DAEMON start or something similar, then?

  • UNX configurations for MS Analysis Services is only through XMLA!!??

    In BOBJ4.0, I just Wanted to confirm if the UNX configurations for MS Analysis Services is only through XMLA.
    Is there any way BOBJ4.0 can be configured to use MSAS OLEDB for OLAP?
    One of our client does not want to go thru XMLA connectivity to their MSAS CUBES, this is possible thru Universe Design Tool but not with IDT.
    Can anyone please help on this?

    UNX - XMLA
    UNV - OLEDB
    those are the choices.

  • SSL and custom domain configuration for cloud service

    Hi,
    I am doing custom domain mapping and SSL configuration for a cloud service web role. Another important aspect is Cloud service web role uses ADFS in between for authentication.
    I have custom domain mapped, SSL uploaded on cloud services Certificates
    tab in management portal, certificate .pfx and chaining certs .CER are added as below -
    <Certificate name="UATCert" thumbprint="A" thumbprintAlgorithm="sha1" />
    <Certificate name="Certificate1" thumbprint="B" thumbprintAlgorithm="sha1" />
    <Certificate name="Certificate2" thumbprint="C" thumbprintAlgorithm="sha1" />
    I see these certificates getting added properly to Azure cloud service web role instance VM.
    The problem is, when I access the custom domain,
    https://mysite.com/default.aspx in the browser ultimately after ADFS login I see
    https://cloudservice.cloudapp.net/default.aspx. My understanding is, cloudapp.net should not be seen in the browser to the client. Also I keep getting error of certificates stating "There is
    a problem with this website’s security certificate" when browser shows cloudapp.net url.
    How can I avoid display of cloudapp.net in browser and show only custom domain Url. Also how can I avoid this certificate error ?
    Thoughts? 
    http://sanganakauthority.blogspot.com/

    Hi kunal,
    Based what you described, I understand that you want to use the custom domain for cloud service web role and apply azure active directory authentication to the web role application.
    >>>The problem is, when I access the custom domain,
    https://mysite.com/default.aspx in the browser ultimately after ADFS login I see
    https://cloudservice.cloudapp.net/default.aspx. 
    As for above issue, I think you should make sure you have registered the web application in azure AD both "SIGN-ON URL" and "Reply URL" are
     https://mysite.com/default.aspx 
    >>>Also I keep getting error of certificates stating "There is a problem with this website’s security certificate" when browser shows cloudapp.net url.
    Try to upload a valid certificate (provided by CA) to cloud service for your custom domain.
    Best Regards,
    Fuxiang
    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. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • What accounts need to be configured for a service tax 10%,a balance sht a/c

    This below error occurred while clearing the entries.
    "Ex.rate diff.accts are incomplete for account 0003260423 currency INR"
    I have gone through this and found that, we should need to configure gain/loss accounts in OB09.
    I am not sure, what accounts need to be configured for a service tax account(3260423), Its a balance sheet account.
    Can someone guide me on this.
    Thanks
    Sudhir Krishna Kumar Singh

    Hello Sudhir,
    regarding to your incident, could you please try the following:
       1.The problem is probably caused by the settings in transaction OBA1.
         The system checks OBA1, if there is an entry for process KDF and
         the relevant G/L account 135090. If there is none -> F5 063 is
         created. Also the exchange rate difference accounts have to be
         maintained in OB09
         If you make a dummy entry in OBA1 & OB09 this account will be
         selected when trying to make an exchange rate difference posting.
         Please also check the documentation to field "No forex rate diff.
         when clearing in LC" in transaction OBY6.
       2.Basically solution is to create the mentioned account for exchange
         rate difference, in order to avoid error F5063.
         But, if you don't want to post that difference, I ask you to check
         the solution proposed into OSS note 546997.
    Hope this could help.
    regards
    Ray

  • Step by Step configuration for Emergency address service - (Hongkong)

    All,
            Can somebody guide me to configure  emergency address service ( EMPLOYEE_PERSINFO_ADDRESS) for Hong Kong ?
      I had configured Japan emergency service last year and I do have some idea . I want to see , if any body out there specifically work on Hong Kong EA service .  Please provide  steps to complete this task .
    Also I have to configure Hong Kong MOLGA(27) . Right now , all the Hong Kong employees has 99 .
    Thanks,
    Saquib Khan

    Hi,
    Check following ...................
    You define country-specific services. When an employee starts a service, the system determines the employee's country grouping and checks if there is a country-specific service definition in the V_T7XSSSERSRVCG and V_T7XSSSERSRVCGC views.
    If there is a country-specific service definition, the system uses this definition.
    If there is no country-specific service definition, the system uses the general service definition in the V_T7XSSSERSRV and V_T7XSSSERSRVC views. If the general service definition does not contain a resource object, the system does not display the service (see example 2).
    This enables you to define country-specific variations of services for certain countries while using a general service definition for all other countries.
    Activities
    Examples
    Example 1
    Your company has employees in seven different countries:
    Germany (01)
    Austria (02)
    Switzerland (03)
    Canada (07)
    USA (10)
    (Number in brackets = country grouping)
    The service for displaying a salary statement is the same for Germany, Austria, and Switzerland. For Canada and the USA, you need services with additional content.
    You define a general service for displaying the salary statement in the V_T7XSSSERSRV and V_T7XSSSERSRVC views.
    You define two additional services for the country groupings 07 and 10 in the V_T7XSSSERSRVCG and V_T7XSSSERSRVCGC views.
    When an employee from Germany, Austria or Switzerland starts the service for displaying salary statements, the system uses the service definition in the V_T7XSSSERSRV and V_T7XSSSERSRVC views.
    When an employee from Canada or the USA starts the service for displaying salary statements, the system uses the service definition in the V_T7XSSSERSRVCG and V_T7XSSSERSRVCGC views.
    Example 2
    Your company has employees in two different countries:
    Germany (01)
    Switzerland (03)
    (Number in brackets = country grouping)
    There is a service that is only relevant for employees from Switzerland.
    You define a general service without a resource object in the V_T7XSSSERSRV and V_T7XSSSERSRVC views.
    You define a country-specific service with a resource object for country grouping 03 in the V_T7XSSSERSRVCG and V_T7XSSSERSRVCGC views
    This service is only displayed for employees in Switzerland.

Maybe you are looking for

  • My apple id works on itunes but not on my ipod touch, what gives ?

    my apple id works on itunes but not on my ipod touch, what gives ?

  • I can't find a document on my Mac that i Have not deleted

    I take notes on text edit for class and I have tried looking for document today and I could not find it at all. If anyone could please help me I would be very grateful.

  • Paragraph Format being lost

    Hi there I'm working on an FAPI client to translate text in Frame Documents. One of the first things we do is store the formatting for each paragraph, and then write it back out to the translated document. However, in one document I'm working on, whe

  • Server  Error 500

    I get server Error 500. I have a servlet , when more than one user try to do samething at same time , after few attempts one user get Server Error 500, "servlet print method was invoked on another thread ...", sometime we get page , which says webpag

  • One Portal for ESS - multiple HCM backends?

    Hi all, I am wondering if I could run a portal (7.00) and connect this to a HCM backend with ECC 6 EhP2, thus requiring the BPs and content with WebDynpro/Java technology to be deployed in the portal and simultaneously connect to another HCM backend