Namespace naming tips

Hi All,
I'm a newbie in XI and I'm facing my first of a long road of issues on this area
I'm creating an integration scenario in Integration Builder and I'm asked for a namespace. I haven't been able to find anything that explains what is expected here.
Can you give any advice about this?
thanks in advance,
David R.

Hi David,
check these links
http://help.sap.com/saphelp_nw04/helpdata/en/a3/cc132914cf41e4a193c32627a87542/frameset.htm
http://help.sap.com/saphelp_nw04/helpdata/en/4e/83623c9c6b530de10000000a114084/frameset.htm
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6bd6f69a-0701-0010-a88b-adbb6ee89b34
Hope they give the required information
Regards
Vishnu

Similar Messages

  • There is a new app with an ugly orange T named Tips on my phone now. How do I get it off my phone. It is an Apple App not a purchased app and looks like a Tennessee advertisement.

    There is a new app with an ugly orange T named Tips on my phone now. How do I get it off my phone. It is an Apple App not a purchased app and looks like a Tennessee advertisement.

    It is part of iOS 8, and cannot be removed.  You can move the app to another page, or hide it in a folder.  You can turn off the notifications for the App in the notifications center control pane.

  • Namespace naming standard

    Namespace naming standard- Is it better to have names like ‘InfoNs’ or the name with folder structure like ‘ld:logical/plans/InfoNs’.
    Thanks

    You are better off to pick a namespace independent of folders etc. The purpose of a namespace is to allow to uniquely identify between two elements with the same name - not to indicate what folder something lives in (I know, DSP uses folder names for namespace by default). If you use the same namespace (say - Inventory) for all the elements in your Inventory dataspace, then you can do nice things like...
    for $c in Customer()
    return
    <Customer_Envelope>
    $c
    for $o in Order()
    return
    <Order_Envelope>
    $o
    If you use different namespaces, instead of using $c for the CUSTOMER element - you will have to create a new Customer element with the correct namemspace.

  • Error deleting VHD: There is currently a lease on the blob and no lease ID was specified in the request

    When attempting to delete a VHD's blob you may receive the following error:
    There is currently a lease on the blob and no lease ID was specified in the request
    While these errors are expected if a VHD is still registered as a disk or image in the portal, we have identified an issue where a lease remains even if the blob is not registered as a disk or image in the portal.
    If you receive one of these errors, first make sure the VHD is not in use:
    In the Windows Azure management portal, if the disk shows up under Virtual Machines,
    Disks, and the Attached To column is not blank, you should first remove that VM in the
    Attached To column by going to VM Instances, selecting the VM, then clicking
    Delete.
    If Attached To is blank, or the VM in the Attached To column was already removed, try removing the disk by highlighting it under
    Disks and clicking Delete Disk (this will not physically delete the VHD from blob storage, it only removes the disk object in the portal). If you have multiple pages of disks it can be easier to search for a specific disk by
    clicking the magnifying glass icon at the top right.
    If Delete Disk is grayed out, or the disk is not listed under Disks, but you still cannot reuse it or delete it, review the options below.
    Breaking the lease
    You can use the
    Lease Blob API to break the lease in this scenario, which is also available in the Windows Azure PowerShell assembly
    Microsoft.WindowsAzure.StorageClient.dll using
    LeaseAction Enumeration.
    To use the BreakLease.ps1 script to break the lease:
    Download Azure PowerShell by clicking Install under Windows here:
    http://www.windowsazure.com/en-us/manage/downloads/
    Start, Search, type Windows Azure PowerShell and open that console.
    Run Get-AzurePublishSettingsFile to launch a browser window to
    https://windows.azure.com/download/publishprofile.aspx to download the management certificate in a
    .publishsettings file in order to manage your subscription with PowerShell.
    Get-AzurePublishSettingsFile
    Run Import-AzurePublishSettingsFile to import the certificate and subscription information. Replace the path below with the full path to the .publishsettings file if you didn't save it to your
    Downloads folder. If you saved it to Downloads you can run it as-is, otherwise replace the path with the full path to the
    .publishsettings file.
    Import-AzurePublishSettingsfile $env:userprofile\downloads\*.publishsettings
    Copy the script below into a text editor such as Notepad and save it as
    BreakLease.ps1.
    Run Set-ExecutionPolicy to allow script execution:
    Set-ExecutionPolicy unrestricted
    Run BreakLease.ps1 with the URL to the VHD in order to break the lease. The script obtains the necessary storage account information, checks that the blob is not currently registered as a disk or as an image, then proceeds to break the
    current lease (if any).
    Sample output:
    BreakLease.ps1 -Uri 'http://clstorage.blob.core.windows.net/vhds/testvm1-testvm1-2012-06-26.vhd'
    Processing http://clstorage.blob.core.windows.net/vhds/testvm1-testvm1-2012-06-26.vhd
    Reading storage account information...
    Confirmed - storage account 'clstorage'.
    Checking whether the blob is currently registered as a disk or image...
    Confirmed - the blob is not in use by the Windows Azure platform.
    Inspecting the blob's lease status...
    Current lease status: Locked
    Unlocking the blob...
    Current lease status: Unlocked
    Success - the blob is unlocked.
    BreakLease.ps1
    Param([string]$Uri = $(Read-Host -prompt "Please specify a blob URL"))
    $ProgressPreference = 'SilentlyContinue'
    echo "Processing $Uri"
    echo "Reading storage account information..."
    $acct = Get-AzureStorageAccount | ? { (new-object System.Uri($_.Endpoints[0])).Host -eq (new-object System.Uri($Uri)).Host }
    if(-not $acct) {
    write-host "The supplied URL does not appear to correspond to a storage account associated with the current subscription." -foregroundcolor "red"
    break
    $acctKey = Get-AzureStorageKey ($acct.StorageAccountName)
    $creds = "DefaultEndpointsProtocol=http;AccountName=$($acctKey.StorageAccountName);AccountKey=$($acctKey.Primary)"
    $acctobj = [Microsoft.WindowsAzure.CloudStorageAccount]::Parse($creds)
    $uri = $acctobj.Credentials.TransformUri($uri)
    echo "Confirmed - storage account '$($acct.StorageAccountName)'."
    $blobclient = New-Object Microsoft.WindowsAzure.StorageClient.CloudBlobClient($acctobj.BlobEndpoint, $acctobj.Credentials)
    $blobclient.Timeout = (New-TimeSpan -Minutes 1)
    $blob = New-Object Microsoft.WindowsAzure.StorageClient.CloudPageBlob($uri, $blobclient)
    echo "Checking whether the blob is currently registered as a disk or image..."
    $disk = Get-AzureDisk | ? { (new-object System.Uri($_.MediaLink)) -eq $blob.Uri }
    if($disk) {
    write-host "The blob is still registered as a disk with name '$($disk.DiskName)'. Please delete the disk first." -foregroundcolor "red"
    break
    $image = Get-AzureVMImage | ? { $_.MediaLink -eq $blob.Uri.AbsoluteUri }
    if($image) {
    write-host "The blob is still registered as an OS image with name '$($image.ImageName)'. Please delete the OS image first." -foregroundcolor "red"
    break
    echo "Confirmed - the blob is not in use by the Windows Azure platform."
    echo "Inspecting the blob's lease status..."
    try {
    $blob.FetchAttributes()
    } catch [System.Management.Automation.MethodInvocationException] {
    write-host $_.Exception.InnerException.Message -foregroundcolor "red"
    break
    echo "Current lease status: $($blob.Properties.LeaseStatus)"
    if($blob.Properties.LeaseStatus -ne [Microsoft.WindowsAzure.StorageClient.LeaseStatus]::Locked) {
    write-host "Success - the blob is unlocked." -foregroundcolor "green"
    break
    echo "Unlocking the blob..."
    $request = [Microsoft.WindowsAzure.StorageClient.Protocol.BlobRequest]::Lease($uri, 0, [Microsoft.WindowsAzure.StorageClient.Protocol.LeaseAction]::Break, $null)
    $request.Timeout = $blobclient.Timeout.TotalMilliseconds
    $acctobj.Credentials.SignRequest($request)
    try {
    $response = $request.GetResponse()
    $response.Close()
    catch {
    write-host "The blob could not be unlocked:" -foregroundcolor "red"
    write-host $_.Exception.InnerException.Message -foregroundcolor "red"
    break
    $blob.FetchAttributes()
    echo "Current lease status: $($blob.Properties.LeaseStatus)"
    write-host "Success - the blob is unlocked." -foregroundcolor "green"
    Alternate method: make a copy of the VHD in order to reuse a VHD with a stuck lease
    If you have removed the VM and the disk object but the lease remains and you need to reuse that VHD, you can make a copy of the VHD and use the copy for a new VM:
    Download CloudXplorer. This will work with other
    Windows Azure Storage Explorers but for the sake of brevity these steps will reference CloudXplorer.
    In the Windows Azure management portal, select Storage on the left, select the storage account where the VHD resides that you want to reuse, select
    Manage Keys at the bottom, and copy the Primary Access Key.
    In CloudXplorer, go to File, Accounts,
    New, Windows Azure Account and enter the storage account name in the
    Name field and the primary access key in the Secret Key field. Leave the rest on the default settings.
    Expand the storage account in the left pane in CloudXplorer and select the
    vhds container (or if the VHD in question is one uploaded to a different location, browse to that location instead).
    Right-click the VHD you want to reuse (which currently has a stuck lease), select
    Rename, and give it a different name. This will throw the error
    could not rename…there is currently a lease on the blob… but click
    Yes to continue, then View, Refresh (F5) to refresh and you will see it did make a copy of the VHD since it could not rename the original.
    In the Azure management portal, select Virtual Machines,
    Disks, then Create Disk at the bottom.
    Specify a name for the disk, click the folder icon under VHD URL to browse to the copy of the VHD you just created, check the box for
    This VHD contains an operating system, select the drop-down to specify if it is
    Windows or Linux, then click the arrow at the bottom right to create the disk.
    After the portal shows Successfully created disk <diskname>, select
    New at the bottom left of the portal, then Virtual Machine,
    From Gallery, My Disks, and select the disk you just created, then proceed through the rest of the wizard to create the VM.
    Thanks,
    Craig

    Just to add an update to this, it looks like the namespaces have changed with the latest version of the SDK. I have updated the script to use the new namespaces, namely: Microsoft.WindowsAzure.Storage.Blob.CloudPageBlob and Microsoft.WindowsAzure.Storage.CloudStorageAccount.
    Param([string]$Uri = $(Read-Host -prompt "Please specify a blob URL"))
    $ProgressPreference = 'SilentlyContinue'
    echo "Processing $Uri"
    echo "Reading storage account information..."
    $acct = Get-AzureStorageAccount | ? { (new-object System.Uri($_.Endpoints[0])).Host -eq (new-object System.Uri($Uri)).Host }
    if(-not $acct) {
    write-host "The supplied URL does not appear to correspond to a storage account associated with the current subscription." -foregroundcolor "red"
    break
    $acctKey = Get-AzureStorageKey ($acct.StorageAccountName)
    $creds = "DefaultEndpointsProtocol=http;AccountName=$($acctKey.StorageAccountName);AccountKey=$($acctKey.Primary)"
    $acctobj = [Microsoft.WindowsAzure.Storage.CloudStorageAccount]::Parse($creds)
    $uri = $acctobj.Credentials.TransformUri($uri)
    echo "Confirmed - storage account '$($acct.StorageAccountName)'."
    $blob = New-Object Microsoft.WindowsAzure.Storage.Blob.CloudPageBlob($uri, $creds)
    echo "Checking whether the blob is currently registered as a disk or image..."
    $disk = Get-AzureDisk | ? { (new-object System.Uri($_.MediaLink)) -eq $blob.Uri }
    if($disk) {
    write-host "The blob is still registered as a disk with name '$($disk.DiskName)'. Please delete the disk first." -foregroundcolor "red"
    break
    $image = Get-AzureVMImage | ? { $_.MediaLink -eq $blob.Uri.AbsoluteUri }
    if($image) {
    write-host "The blob is still registered as an OS image with name '$($image.ImageName)'. Please delete the OS image first." -foregroundcolor "red"
    break
    echo "Confirmed - the blob is not in use by the Windows Azure platform."
    echo "Inspecting the blob's lease status..."
    try {
    $blob.FetchAttributes()
    } catch [System.Management.Automation.MethodInvocationException] {
    write-host $_.Exception.InnerException.Message -foregroundcolor "red"
    break
    echo "Current lease status: $($blob.Properties.LeaseStatus)"
    if($blob.Properties.LeaseStatus -ne [Microsoft.WindowsAzure.Storage.StorageClient.LeaseStatus]::Locked) {
    write-host "Success - the blob is unlocked." -foregroundcolor "green"
    break
    echo "Unlocking the blob..."
    $request = [Microsoft.WindowsAzure.Storage.StorageClient.Protocol.BlobRequest]::Lease($uri, 0, [Microsoft.WindowsAzure.Storage.StorageClient.Protocol.LeaseAction]::Break, $null)
    $request.Timeout = $blobclient.Timeout.TotalMilliseconds
    $acctobj.Credentials.SignRequest($request)
    try {
    $response = $request.GetResponse()
    $response.Close()
    catch {
    write-host "The blob could not be unlocked:" -foregroundcolor "red"
    write-host $_.Exception.InnerException.Message -foregroundcolor "red"
    break
    $blob.FetchAttributes()
    echo "Current lease status: $($blob.Properties.LeaseStatus)"
    write-host "Success - the blob is unlocked." -foregroundcolor "green"

  • APD Analysis Process Designer - CRM Data Target

    Hi,
    I have now defined the DataTarget and by "Release data target for Replication from SAP BW" I get the error:
    <b>Error when processing function module /SVC/OBJ_F4_<MyDataTarget></b>
    what does it mean and how can I solve this situation?
    Thanks
    FedeX

    Hi!
    in case if you are not able to find the docu...here is the docu helop for the function group...
    "The function group CRMBW_ADAPTERS combines function modules that are necessary for implementing a data target adapter as part of the data upload from SAP BW. You can use the function modules delivered by SAP as a template for new adapters (for example, you can copy them).
    The function modules contained in this function group are divided into the following areas on the basis of their naming convention:
    o     Function modules for defining data targets
    -     CRMBW_OBJ_F4_*
    -     CRMBW_DET_F4_*
    -     CRMBW_CHECK_*
    o     Function modules for designing the analysis process
    -     CRMBW_LIST_*
    -     CRMBW_DETAIL_*
    o     Function modules for the data upload
    -     CRMBW_UPDATE_*
    The placeholder * stands for a data target adapter defined in the IMG activity .
    The corresponding adapter modules are called up dynamically during runtime at the appropriate points in the program, using the name of the data target adapter and applying the following program logic:
    CONCATENATE l_namespace l_nameconvention
      l_function l_target INTO l_funcname.
    TRY.
      CALL FUNCTION l_funcname
        EXPORTING
        IMPORTING
        TABLES
      CATCH cx_root.
        l_msgv1 = l_funcname.
        CALL FUNCTION 'BALW_BAPIRETURN_GET2'
          EXPORTING
            type   = 'E'
            cl     = 'CRMBW_ATTR_WRITE'
            number = '005'
            par1   = l_msgv1
          IMPORTING
            return = ls_return.
        APPEND ls_return TO et_return.
    ENDTRY.
    Consequently, if a function module does not exist or errors occurred when calling it up, a runtime error is not issued directly. Instead, the error is returned as a message in the return table for the instance calling up the function module.
    If you want to create customer-specific data target adapters, observe the following:
    o     Define the ID for the data target adapter in the IMG activity . Ensure that your entry begins with the letter Y or Z to avoid any naming conflicts with subsequent SAP enhancements.
    o     In this function group, implement adapter modules that begin with the namespace stored in the IMG activity mentioned above and with the naming convention, and that also fulfil the naming convention listed under Integration. In this way, you ensure that there are no naming conflicts with subsequent SAP deliveries.
    o     To provide the data upload with full support, implement all six adapter modules.
    With the following entry in the IMG activity , implement the function modules listed below.
    Data Target Adapter     Namespace     Naming Convention
    ZTARGET     /COMPANY/     MYLOAD_
    Function Modules
    /COMPANY/MYLOAD_OBJ_F4_ZTARGET
    /COMPANY/MYLOAD_DET_F4_ZTARGET
    /COMPANY/MYLOAD_CHECK_ZTARGET
    /COMPANY/MYLOAD_LIST_ZTARGET
    /COMPANY/MYLOAD_DETAIL_ZTARGET
    /COMPANY/MYLOAD_UPDATE_ZTARGET
    with regards
    ashwin

  • Eclipse BPEL Designer with Oracle BPEL Process Manager

    Gurus,
    I am tryting to develop a BPEL 2 process using Eclipse Helios BPEL Designer (v0.5).
    Request your help with a problem that I am facing, which is as follows:
    I am trying to create a Partner Link (PL) in my BPEL process, using the Partner Link Type (PLT) provided by TaskService (for user interactions) in BPEL Process Manager 11g integration services.
    However, the PLT is not recognized by Eclipse BPEL Designer. The Port Types in the WSDL show up but not the PLTs.
    I noticed that the PLT namespace being used in the TaskService WSDL is BPEL v1 namespace (namely, http://schemas.xmlsoap.org/ws/2003/05/partner-link/). I am able to work with PLTs from WSDLs with BPEL v2 namespce (namely, http://docs.oasis-open.org/wsbpel/2.0/plnktype)
    Is there anyway I can work with v1 PLTs using Eclipse BPEL 2 Process?
    Many Thanks,
    Pulkit Sharma

    Hi,
    I believe the Eclipse BPEL Designer is not a supported tool to create SOA composites. I suggest using Oracle JDeveloper 11g as it is a supported tool for development and is Oracle's go-forward IDE strategy.
    Hope this helps!

  • HP G72 - BIOS bricked - USB restore problems

    Hello!
    I disabled "Virtualization" in my BIOS of my HP G72-a05SG. But after saving, it rebooted and the NUMLOCK and CAPSLOCK lights are blinking 2 times, so, according to this site, the BIOS is corrupt. And my HP_TOOLS partition doesn't exist on my hard drive.
    So I've prepared my USB drive with "HP BIOS-Update (UEFI)" and "HP System Diagnostics (UEFI)" and followed the instructions of this. It doesn't recover from there, but the notebook's accessing the hard drive, the USB drive's beeing accessed all the time, but nothing happenes, no beep, no video output.
    Is my notebook completely bricked, or did I something wrong?
    Can somebody upload his/her HP_TOOLS partition from the hard drive so that I can try to recover the BIOS from there?
    I appreciate any help!
    Testificate
    This question was solved.
    View Solution.

    Fixed it myself using this wonderful guide (maybe this file naming tips are also useful). HP BIOS Update appeared and recovered the BIOS image from the stick. Yay! 

  • Importing from P2 cards..."invalid directory structure"

    FCP 5.1
    P2 cards
    I am trying to import the material from the P2 cards.
    I actually tranfered the content of the cards on my desktop and tried to File/Import/P2 Panasonic. I chose the Contents folder and i get this message: "invalid directory structure"...
    I have been able to do this operation in the past, but suddenly this happens.
    Any idea on what's going on?

    First off, does the CONTENTS folder have all six folders inside it?
    Second, do the folders have any additional naming to them other than CONTENTS? Like CONTENTS 1, CONTENTS 2. Can't do that....has to be CONTENTS only...no additional naming.
    Third, is this you issue:
    http://lfhd.blogspot.com/2007/01/p2-folder-naming-tip.html
    Shane

  • Beginner Workflow Questions

    Hi All,
    After wearing a Gopro helmet in a hockey game, I'm trying to use PE9 to edit the 1.5 hours of footage and make some sort of movie.  I have everything split into what I think will be relavent sections but now I find it a little overwhelming.  There are so many clips I can never tell where I am or where I want to go. 
    My Questions....
    1) Is there a way to rename all the clips in sequence?  For example, the original file is named GOoooo8.  Now I have about 10 GOoooo8's.  Any other naming tips?
    2) Can I tag the clips?  When I go back to organizer, the clips are still in the large original files instead of the new small files.
    3) Is there a way to get the "opacity: clip opacity" off of the timeline?
    Thanks!!
    Wally

    I do not know enough about those particular helmet cam clips to comment on the clips themselves. Most use proprietary codecs in order to fit lots of
    video in a small space, and that often means that they behave strangely in programs like Premiere Elements.
    As for the Opacity notation on your clips, that is one of your clip's properties and it is listed on your clip because it is often keyframed (as when you apply a fade in or fade out effect). You don't want to remove it. You can, however, click on it and, if you prefer, display Motion instead -- though I don't know if that's what you're trying to do.
    The Audio equivalents are Volume (displayed by default) and Balance.

  • Business Components Wizard and Turkish Characters

    Hi,
    JDeveloper Business Components wizard produces source code which includes turkish characters. For example entity class created for table named TIP is Tıp. Actually in Turkish lowercase for I is ı but I would like the source code to be produced with i instead of ı("Tip"), since we develop our code in English. Is there any way of doing this. Making wizard work with english language.
    Thanks in advance...

    I also tried to make new installation of Jdeveloper but it doesn't help anyway :( Nobody know what is wrong?

  • How do you add Silverlight to an exiating "Blank App (WIndows Phone)" project?

    I created a new Windows Phone project in VS, and I specified a template of "Blank App (Windows Phone)".
    I then added the following to App.xaml.cs:
    using System.IO.IsolatedStorage;
    I get an error with the squiggly red line underneath "IsolatedStorage" that says:
    The type or namespace named 'IsolatedStorage' does not exist in the namespace 'System.IO' (Are you missing an assembly reference?)
    If I create the project using the "Blank App (Windows Phone Silverlight)" then I do not get the error.
    This makes sense, as IsolatedSTorage is a Silverlight function.
    What I would like to know is how to "add" Silverlight to the first project so that the IsolatedStorage reference is valid.
    I assume I need to add a reference?

    You cannot. You can write a Windows Phone app as either a Silverlight app or a Runtime app, but you cannot add Silverlight to a Runtime app.
    To access app data in a Runtime app (and in a modern Silverlight apps: IsolatedStorage is a legacy API) you can use the Application Data and StorageFile API. See
    Accessing app data with the Windows Runtime and Managing app data for details.

  • How does EF Distinguish Regular Classes from Entity Classes?

    I'm newbie to EF, just read a couple of short articles on it the other day.  When reading them I didn't pick up on what criteria EF has for distinguishing regular classes from EF classes. Suppose for instance I wrote up a class for internal use only
    (but which happened to have the same name as one of my Sql Server tables).  Aside from reading my mind, how would EF know that I never intended this class for entity purposes?

    What are you talking about here? It's back to the namespaces.
    If you are making folders in a VS project, then that's a namespace. You crate a class in that namespace, then it should be decelerated with a namespace attribute specifying what namespace the class is in, and you woud have to use an Imports in VB or a Using
    statement in C# pointing to the namesapce where the class is located in the class that needs to use a class in another namespace. Or you don't use Import or Using and you give the full namespace path to the class in code of namespace.classname.The below DB
    first, only a part of the code in  namespace, the usage was installed into the DAL.Model namespace where I have a project called DAL and within the DAL  project I made a folder, a namespace,  named Model and pointed EF to that folder in doing
    an add of a new Item in VS. And everything about EF is in the DAL.MODEL namespace. You can have Jal2 class in the namespace and Jal2 in some other namespace. Ef could care less about Jal2 in the other not DAL.Model namespace.
    I don't care how you do it. I don't care if you are using EF DB first, Model first, Code first,  any other kind of first or you start making your own classes for data yourself, but you need to understand Namespaces in .NET, what they are for,and how
    to use them effectively in creating  .NET solutions. 
    Comon man, this is .NET 101 you should have figured out long ago.
    https://msdn.microsoft.com/en-us/library/ms973231.aspx#assenamesp_topic5
    using System;
    using System.Data.Objects;
    using System.Data.Objects.DataClasses;
    using System.Data.EntityClient;
    using System.ComponentModel;
    using System.Xml.Serialization;
    using System.Runtime.Serialization;
    [assembly: EdmSchemaAttribute()]
    #region EDM Relationship Metadata
    [assembly: EdmRelationshipAttribute("PublishingCompanyModel", "FK_Article_Author", "Author", System.Data.Metadata.Edm.RelationshipMultiplicity.ZeroOrOne, typeof(DAL.Model.Author), "Article", System.Data.Metadata.Edm.RelationshipMultiplicity.Many,
    typeof(DAL.Model.Article), true)]
    [assembly: EdmRelationshipAttribute("PublishingCompanyModel", "FK_Payroll_Author", "Author", System.Data.Metadata.Edm.RelationshipMultiplicity.One, typeof(DAL.Model.Author), "Payroll", System.Data.Metadata.Edm.RelationshipMultiplicity.Many,
    typeof(DAL.Model.Payroll), true)]
    #endregion
    namespace DAL.Model
        #region Contexts
        /// <summary>
        /// No Metadata Documentation available.
        /// </summary>
        public partial class PublishingCompanyEntities : ObjectContext
            #region Constructors
            /// <summary>
            /// Initializes a new PublishingCompanyEntities object using the connection string found in the 'PublishingCompanyEntities' section of the application configuration file.
            /// </summary>
            public PublishingCompanyEntities() : base("name=PublishingCompanyEntities", "PublishingCompanyEntities")
                this.ContextOptions.LazyLoadingEnabled = true;
                OnContextCreated();

  • Define prefix for objects from PCD

    Where and how to define a prefix which can be added in the beginning of a name  of iview, roles, etc.

    Hello Galina,
    By default, the portal allows administrators to create PCD objects u2013 such as iViews, pages, worksets and systems u2013 and enter any string for the objectu2019s ID prefix (namespace). By activating and configuring the naming conventions feature, you can set naming conventions for object ID prefixes.
    You can require that ID prefixes be based on the administrator who is creating or changing the object, or on the PCD path of the object.
    The naming conventions feature is controlled by the NamingConventionsSrv , which is contained in the com.sap.portal.namingconventions application
    The feature controls ID prefixes when an administrator creates an object or changes the objectu2019s ID. It does not check prefixes for the following:
    ■      Imported content
    ■      Copied content
    ■      Content from content mirroring
    ■      Content created via code
    Please read through these links to grasp more information
    [PCD ID Prefixes|http://help.sap.com/saphelp_nw70/helpdata/en/b0/2beb7a371c4649b2ceec901248ef31/frameset.htm]
    [Namespaces Naming Conventions|http://help.sap.com/saphelp_nw70/helpdata/en/43/6d9b6eaccc7101e10000000a1553f7/frameset.htm]
    Hope this helps,
    Regards,
    Shailesh

  • What is ResellerDomain in "Retrieve an authentication AAD security token"

    Hello Support,
    Please help us with below API Link
    POST https://login.windows-ppe.net/{ResellerDomain}.ccsctp.net/oauth2/token?api-version=1.0 HTTP/1.1
    Help us with ResellerDomain, what will replace this from our side.
    Best Regards,
    Harish Patel

    Hi Richard
    as per your instruction, i have done the changes but i'm getting below given error msg :
    {"error":"invalid_request","error_description":"AADSTS90002: No service namespace named 'znetcorp.onmicrosoft.com' was found in the data store.\r\nTrace ID: 23d60f90-dd82-4c8d-bfd1-f1f64d8db45a\r\nCorrelation
    ID: d783d187-3dc5-4692-b770-c9e4eaa10fb9\r\nTimestamp: 2015-04-28 04:17:34Z","error_codes":[90002],"timestamp":"2015-04-28 04:17:34Z","trace_id":"23d60f90-dd82-4c8d-bfd1-f1f64d8db45a","correlation_id":"d783d187-3dc5-4692-b770-c9e4eaa10fb9","submit_url":null,"context":null}

  • User Tables Naming convention / Namespaces

    Dear all,
    Does anybody know where to get Informations about SBO NameSpace Conventions ?
    I have 2 Questions for naming conventions
    1) Creating a UserDefinedTable like this
       Table Name  :  Z_NameSpace_MyTableName
       Is it necessary that any FieldName of the
       table uses the NameSpace Prefix ?
       Like this: NameSpace_PosNo
    2) Adding UDF to SBO Tables
       Is it necessary that UDF Fields uses the
       NameSpace Prefix ?
    Thanks

    Thomas,
    The NameSpaces are only used while creating a UserDefined Table.
    UserDefined Table :
    The convention for the name is NameSpace_MyTableName (without the Z_). Its length can't exceed 19 characters.
    When adding a user table, SAP Business One automatically adds the symbol @ as a prefix to the table name. For example: if you add a table named "ABC", the resulting table name will be "@ABC".
    When referring to a user defined table you must use the name including the prefix @.
    UserDefined Field :
    you do not have to add the NameSpace in the name of the field. Its length can't exceed 8 characters.
    When you create it using the UserFieldsMD object, the character "U_" will be added to its name, and created in the table.
    To conclude, the NameSpace is only used for the table.
    The DI API will add @ for the table, and U_ for the field.
    You can see SAP note 647987 about NameSpace
    Sebastien
    Message was edited by: Sébastien Danober

Maybe you are looking for

  • Dispatcher Error

    Hi, I've installed SAPNW7.0ABAPTrialSP12. I get an error during the installation, and uninstall this by the uninstall instructions (start.htm - last slide). When I try to install it again, the installation time was too quickly and searching in SDN fo

  • XSLT Transformation Question

    Hi together! Hope anybody can help. I have the follow XML structure : <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">¶ <asx:values>¶ <IMPORT>¶ <Y0DPL_LATAM_INV_FILE_UPLOAD>¶ <DATA>222358   1NU    480350    29102007VENDA DE MERCADORIA 

  • Error installing business content update rules

    Hi, I'm trying to install the below updates rules from the business content 0PLANT$T 0PLANT_TEXT      53AFFWD74OI3CT3RDE3RI9THU 0PLANT 0PLANT_ATTR         5UZVD7UWYN4T81H24YBKGH6KY I get the error IC=0PLANT$T IS=0PLANT_TEXT syntax error:  rows 0 Long

  • TS1741 How can I store music in my remote library in my iPad library

    How can I store music in my remote library in my iPad library

  • Listening to pandora on iphone when ipod feature automatically starts

    Whenever I am using pandora or any other music streaming app, my ipod interupts the stream and begins playing. Sometimes even when I'm not using anything the ipod starts playing and skips and stops. I think it has something to do with the earplugs tr