Global, Local, Harmonised attributes.

Hi,
Could anybody explain me about the Global, Local, Harmonised attributes and how we should use them with Template project and Implementation project.
Regards,
Murali

You set these attributes against the nodes in your Template Project's Business Process Structure. The purpose of maintaining these attributes is to have control, or lend flexibility, to your rollout (implementation projects).
When you set an attribute of global it means that items cannot be changed and that they must be included as part  of the implementation project. For example, if you maintain your Procure to Pay scenario (and all processes, steps beneath it) as global, the implementation project cannot change the scope, documents, configuration entries, transactions, or whatever else you attach.
Localizing items in the BPS allows flexibility for the implementation projects to change everything assigned at a local level.
You can also provide different flavors of these attributes. For example, you might set all of your scenarios and processes to global however the process steps performed in organizations around the globe will obviously not match a global "headquarters". For that reason you could set the process steps to Local.
Hope this helps,
Nathan

Similar Messages

  • Urgent : OBIA - Handling multiple Global, Local and Document Currencies

    All,
    I need input on how to configure multiple currency codes in DAC for OBIA 7.9.6.x
    My client's business goes around the the world and with multiple local currencies.They also need reporting currency to be multiple like in Euro, USD etc.
    I went through a couple of threads in this forum,like -
    Re: Configuring Global Currencies in BI Apps 7.9.6 for EBS 11.5.10 Source
    Re: How we are using Global, Local and Document Currencies  in DAC.
    But I have some confusion regarding the configuration of DAC's 3 Global currency codes.
    In order to fulfill my requirement - should I add additional codes in DAC?
    Basically How am I supposed to handle multiple Local,Document and Global currencies? And then possible changes in rpd/reports required also?
    Regards,
    Krish

    Currencies are discussed in the Setup and Configuration Guide here:
    7.1.1.2 How to Configure Global Currencies
    To configure the global currencies you want to report in your warehouse:
    In the DAC Client, display the Design view.
    For more information about logging into the DAC, see Section A.1, "How to Log Into the DAC Client".
    Select a container from the drop down list to the right of the Execute button.
    Display the 'Source System Parameters' tab.
    Locate the following parameters and set the currency code values for them in the 'Value' box:
    $$GLOBAL1_CURR_CODE (for the document currency).
    $$GLOBAL2_CURR_CODE (for the local currency).
    $$GLOBAL3_CURR_CODE (for the global currency).
    Make sure that you spell the currencies as they are spelled in your source OLTP system.
    Save your changes.
    As far as for PLP items, those are Post Load Processing elements that perform cleanup tasks after the Base Warehouse tables have been loaded. They should never be modified and frankly run without any issues provided the rest of the plan executes properly. Do you have a specific quesiton about a PLP?

  • View (Global & Local) on a query

    Hi,
    I got a  query with 60 Free chars(drill down)
    Insted of creating a multiple queries of the same content ,My requirment is to  create views (6) on a same query (easy in support point of view)
    How can i create a view on a query
    What is difference between Global & Local view
    How to create them and
    The views that i want to create users won't be authorised to change them
    BW Version 7.0
    Users access reports using WEB Bex
    Please advise

    Hi
    How can i create a view on a query
    After the execution of the report make the necessary drill down based on the Free char and Save that as a View using save view as Global.
    Then when everyou open the View it will display the drill down that you saved by default.
    Reggards
    M.A

  • Global & Local controller

    Hi Guys,
    Am new to Mars, so execuse me if the question is simple.
    i cannt understand what is the difference between global & local controller.
    i've only one Mars appliance and want to connect it to the network, do i need to use global controller? or only the local? so, again what is the diference between the two controllers.
    Thanks & Regards,
    Ramii

    If you only want 1 MARS, then you only need to get the Local Controller.
    You would only need to get Global controller if you would like the Global controller to manage all your Local controllers.
    Here is what the global controllers are capable off:
    • Aggregation of reports across the Local Controller deployment
    •  Defining Rules, Reports and User accounts for Local Controllers (Note:  Configuration of Local Controller is done "locally" on the individual LC  appliance)
    • Remote, distributed upgrade of the Local Controllers
    Hope that helps.

  • Xmlschema global/local issue(oracle10g)

    I've schema with globally declared elements,something like:
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
         <xs:element name="el3" xdb:defaultTable="el3">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element name="el3_1"/>
                        <xs:element name="el3_2">
                             <xs:complexType>
                                  <xs:sequence>
                                       <xs:element ref="el1" xdb:SQLInline="false" xdb:defaultTable="el1"/>
                                       <xs:element ref="el2" xdb:SQLInline="false" xdb:defaultTable="el2"/>
                                  </xs:sequence>
                             </xs:complexType>
                        </xs:element>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="el1" type="el1" xdb:defaultTable="el1"/>
         <xs:element name="el2" type="el2" xdb:defaultTable="el2"/>
    </xs:schema>
    as you can see local element "el3" references two global elements in declaration.
    When I insert document corresponding to "el1" in "el1" table-all works as expected but when I try to insert conforming to "el3"(verified by xmlspy) document in "el3" document,oracle don't recognize "el1" and "el2" elements in context of "el3".By the way,how oracle handle situation with existent primary key in dependent table(SQLInline="false")?Will it try to reinsert element or use existent?
    An at last, <xdb:tableProps="OBJECT IDENTIFIER IS PRIMARY KEY" construction> dosen't work at all though <xdb:columnProps="primary key"> seems work as expected.
    Any thoughts?

    Mark
    Please can you confirm that I understand correctly your response which mentions a potential future enhancement.
    I assume you are saying that it is currently not possible to override the default table name to place elements of the same type into a single table.
    I used the following test XML schema:
    <?xml version="1.0"?>
    <!-- edited with XMLSPY v2004 rel. 4 U (http://www.xmlspy.com) by GARY GREGORY (TERADYNE DIAGNOSTIC SOLUTIONS) -->
    <!--W3C Schema generated by XMLSPY v2004 rel. 4 U (http://www.xmlspy.com)-->
    <xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xdb="http://xmlns.oracle.com/xdb">
         <xs:import namespace="http://www.w3.org/1999/xlink" schemaLocation="xlink.xsd"/>
         <xs:element name="COMPONENT">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="Properties"/>
                        <xs:element ref="SCHEMATIC"/>
                        <xs:element ref="DOCUMENT"/>
                        <xs:element ref="DIAG-TREE"/>
                        <xs:element ref="SHORTCUT" minOccurs="0" maxOccurs="unbounded" xdb:SQLInline="false" xdb:defaultTable="SHORTCUT_TABLE"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="DIAG-TREE">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="Properties"/>
                        <xs:element ref="START"/>
                        <xs:element ref="TACTIC-NODE"/>
                        <xs:element ref="RETURN"/>
                   </xs:sequence>
                   <xs:attribute name="id" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="DOCUMENT">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="Properties"/>
                   </xs:sequence>
                   <xs:attribute name="id" type="xs:string" use="required"/>
                   <xs:attribute ref="xlink:href" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="PresenterTactic">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="actionItem"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="Properties">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="icon32" minOccurs="0"/>
                        <xs:element ref="name" minOccurs="0"/>
                        <xs:element ref="component" minOccurs="0"/>
                        <xs:element ref="SHORTCUT" minOccurs="0" maxOccurs="unbounded" xdb:SQLInline="false" xdb:defaultTable="SHORTCUT_TABLE"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="RESULT">
              <xs:complexType>
                   <xs:attribute name="ref" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="RETURN">
              <xs:complexType>
                   <xs:attribute name="id" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="SCHEMATIC">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="Properties"/>
                        <xs:element ref="SCHEMATIC-REF" maxOccurs="unbounded"/>
                   </xs:sequence>
                   <xs:attribute name="id" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="SCHEMATIC-REF">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="Properties"/>
                   </xs:sequence>
                   <xs:attribute name="x">
                        <xs:simpleType>
                             <xs:restriction base="xs:NMTOKEN">
                                  <xs:enumeration value="132"/>
                                  <xs:enumeration value="252"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:attribute>
                   <xs:attribute name="y" type="xs:short"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="SHORTCUT">
              <xs:complexType>
                   <xs:attribute name="id" type="xs:string" use="required"/>
                   <xs:attribute ref="xlink:href" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="START">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="RESULT"/>
                   </xs:sequence>
                   <xs:attribute name="id" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="TACTIC-NODE">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="PresenterTactic"/>
                        <xs:element ref="RESULT"/>
                   </xs:sequence>
                   <xs:attribute name="id" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="actionItem">
              <xs:complexType>
                   <xs:simpleContent>
                        <xs:extension base="xs:string">
                             <xs:attribute name="id" type="xs:string" use="required"/>
                        </xs:extension>
                   </xs:simpleContent>
              </xs:complexType>
         </xs:element>
         <xs:element name="component">
              <xs:complexType>
                   <xs:attribute ref="xlink:href" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="icon32">
              <xs:complexType>
                   <xs:attribute ref="xlink:href" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="name">
              <xs:complexType>
                   <xs:attribute ref="xlink:href" use="required"/>
              </xs:complexType>
         </xs:element>
    </xs:schema>
    The only important bit in this XML schema is that the SHORTCUT element can have more than one parent element (two in this example).
    10.1.0.2.0 allowed me to register the XML schema above, but at runtime an error occurred when I attempted to insert the XML document via WebDAV. The insert works when I defined an XML Schema which uses different table names.
    Sorry for asking for confirmation - this was potentially an important implementation requirement for us.
    Just in case there is an obvious alternative implementation method, I'll briefly mention our real requirement. We were looking for a way to store our "xlink" references so that we can provide "re-factoring" capabilities for our XML documents. Our xml documents refer to each other using xlink attributes that contain relative paths (folder and file names). Our customers eventually will have 100,000+ XML documents, and therefore they are likely to wish to re-organise them.

  • Global and Tp Attributes

    Hello Friends,
    I need to store some additional information in the DFF of OE_ORDER_HEADERS_ALL.
    The problem is that, all the columns from attribute1 to attribute20 have already been used. It has been observed that, there are some TPATTRIBUTES 1 to 15 as well as Global attributes.
    Only thing which I understood is, TP and Global attributes are used for country specific and localizaiton purposes, however since we are not using Trading partner, and these columns are free.. Is it feasible (without any impact) to use them? and in that case, Will the form of Sales Order show these additional DFFs?
    I tried to check, however Global attribute DFF was not found on the form , for TP attributes, it was found but was covered by field Order Source .. Any suggestions?
    Best Regards

    Hi
    Extended attribute :-
    Group of attribute value hold this values .
    from 001 to 10000 - product category . you can mention
    otherwise PRCAT = 001 ,002......10,000 you have to make one by one single entry.
    hope you understand now the use of extended attributes.
    br
    muthu

  • Help Document on Query View's (Global & Local)

    Hi,
    I thied to search SDN for previous posts on this topic but none of them are useful.
    Is there any SAP Help Doc or any other Help Doc that will explain me difference between Local View & grobal View on a Query and
    How to Generate Local View and Global View on a query in detail
    Thanks

    Hi,
    Check the below doc:
    Queries nd Query views:
    http://help.sap.com/saphelp_nw70/helpdata/en/44/05b8d847bc6037e10000000a1553f6/frameset.htm
    Reg
    Pra

  • Store Counter Number in BODS using Global/Local Variable

    Hi All,
    Anyone done before adding a counter integer field into a table based on key via BODS?
    Example:
    Table 1 (contains just 1 field) <-Input:
    Key 1
    Key 1
    Key 2
    Key 2
    Key 2
    Table 2(contains 2 fields with INT as the 2nd field) <-Output:
    Key 1      1
    Key 1      2
    Key 2      1
    Key 2      2
    Key 2      3
    I was wondering if populating the Local Variable or Global Variable might work but from my understanding, inside the Data Flow , it's not possible to increase the variable value ($count = $count + 1).

    Hi Maurice,
    Thats a good idea!!
    I had currently implemented a solution where i use Variables and Customize Functions to solve the problem.
    Will give a try and see if your solution produce the same result.
    Tim

  • How to: Transform Activity: Read global/local variable, execute java code

    Could anyone please show me how to do that???

    could you please elaborate your usecase? yes you can read global variable using getVariableData( ) xpath function and pass them as an argument to the processXSLT ( ) xpath function.
    You can read the global or local variables inside java exec using, please refer samples/references/javaexec sample.

  • How we are using Global, Local and Document Currencies  in DAC.

    Hi All,
    How we can configure Local,Global and Document currencies for GL Load.
    and where we can use these parameters in informatica.
    What does stand for PLP and what is logic behind PLP.
    Thanks in advance
    Thanks,
    Bhavik

    Currencies are discussed in the Setup and Configuration Guide here:
    7.1.1.2 How to Configure Global Currencies
    To configure the global currencies you want to report in your warehouse:
    In the DAC Client, display the Design view.
    For more information about logging into the DAC, see Section A.1, "How to Log Into the DAC Client".
    Select a container from the drop down list to the right of the Execute button.
    Display the 'Source System Parameters' tab.
    Locate the following parameters and set the currency code values for them in the 'Value' box:
    $$GLOBAL1_CURR_CODE (for the document currency).
    $$GLOBAL2_CURR_CODE (for the local currency).
    $$GLOBAL3_CURR_CODE (for the global currency).
    Make sure that you spell the currencies as they are spelled in your source OLTP system.
    Save your changes.
    As far as for PLP items, those are Post Load Processing elements that perform cleanup tasks after the Base Warehouse tables have been loaded. They should never be modified and frankly run without any issues provided the rest of the plan executes properly. Do you have a specific quesiton about a PLP?

  • Global, local variables in SubVI's

    Hi,
    I'm having a problem with what is probably a 'feature' of labview
    (using ver 6.1).
    When running multiple SubVI's of the same type, any local variables
    declared within the SubVI are globally scoped across all instances of
    that SubVI within one VI. Is there any way to prevent this?
    I am trying to store the Status of the SubVI in a local, but obviously
    each instance of the SubVI ends up with the same status. Currently i
    have solved this by having exact copies of the SubVI for each
    instance, but obviuosly as far as labview is concerned they are now
    different SubVI's, i consider this a bit of a hack and would rather
    avoid it.
    Any pointers?
    Many Thanks,
    Ed

    If you make the sub-VI reentrant, you will get the type of local you're looking for. On the sub-VI's menus, goto File >> VI Properties >> Category >> Execution >> Reentrant Execution.

  • Global/Local Parameter id

    Hi all,
    We are running into a strange issue . When debugging a program and looking into memory area SMEM (parameter id memory), we sometimes see two entries for the same parameter id: a Global and a Local value. When using the GET PARAMETER ID statement, GLOBAL value is provided nistead of local.How can we solve this problem?
    Best Regards
    Yossi Rozenberg

    [Note 459725 - Local SAP Memory|https://service.sap.com/sap/support/notes/459725]
    The explanation of the note is not very obvious, if you have a more simple one, it is welcome !

  • Feature for CF11, global LOCAL var scoping

    I've loved setting scopes in the following manner:
    <cfset structAppend( VARIABLES, {
         'variableName'         = 'value',
         'variableName2'       = 'anotherValue',
         'variable'                  = 'yetAnotherValue'
    }, true ) />
    It allows me to set variables in 1 command using structure notation, and keeping the command in an easy to digest look.  But a problem I've run into is that I cannot do this with the LOCAL scope and also maintain the best practice of using the 'var' keyword to ensure the variables exist only for the duration of the function call.  For example, this currently fails:
    <cfset structAppend( var LOCAL, {
         'variable1'     = 'value1',
         'variable2'     = 'value2'
    }, true ) />
    I was hoping the above would equate to the same thing as doing:
    <cfset var LOCAL.variable1 = 'value1' />
    <cfset var LOCAL.variable2 = 'value2' />
    So I'd love to see CF11 support this.  I know it's menial, but I like using structAppend because it does not remove values that already exist in the scope, but if ones that already exist are provided as well, they are tastefull overwritten.

    You could also do it like this:
    <cfset var LOCAL = {}>
    <cfset structAppend(LOCAL, {
         'variable1'     = 'value1',
         'variable2'     = 'value2'
    }, true ) />
    I'm not sure why you'd want to say "structAppend(var LOCAL".  Also just to complicate things the local scope in your functions you shouldn't need to create as a locally-var'd variable at all; it's in-built since 9.  So really you could just do:
    <cfset structAppend(LOCAL, {
         'variable1'     = 'value1',
         'variable2'     = 'value2'
    }, true ) />
    job done!  See http://forta.com/blog/index.cfm/2009/6/21/The-New-ColdFusion-LOCAL-Scope

  • Solaris 10 Zones (global/local) /proc fs is 97% full

    Hi Folks,
    sorry in case of this thread has been discussed already but I couldn't find any info regardless.
    I've a solaris 10 server on which have installed 3 zones and 2 of these zone giving me continuously alert regarding disk space.
    I know when /proc fs is full is normal but in my case when I am looking into disk space of solaris zone:
    -bash-3.00# df -ak
    Filesystem 1024-blocks Used Available Capacity Mounted on
    / 70220321 67141358 2376760 97% /
    /dev 70220321 67141358 2376760 97% /dev
    proc 0 0 0 0% /proc
    ctfs 0 0 0 0% /system/contract
    mnttab 0 0 0 0% /etc/mnttab
    objfs 0 0 0 0% /system/object
    swap 18973688 224 18973464 1% /etc/svc/volatile
    /platform/SUNW,Sun-Fire-T200/lib/libc_psr/libc_psr_hwcap1.so.1
    70220321 67141358 2376760 97% /platform/sun4v/lib/libc_psr.so.1
    /platform/SUNW,Sun-Fire-T200/lib/sparcv9/libc_psr/libc_psr_hwcap1.so.1
    70220321 67141358 2376760 97% /platform/sun4v/lib/sparcv9/libc_psr.so.1
    fd 0 0 0 0% /dev/fd
    swap 19074320 100856 18973464 1% /tmp
    swap 18973488 24 18973464 1% /var/run
    -hosts 0 0 0 0% /net
    As my understanding this issue filling up / fs as well, which totally strange to me.
    Could someone advise pls why this mess?
    Thanks

    ostendali wrote:
    Thanks for reply.
    I've already ran du command, sorry for haven't posted here:
    -bash-3.00# du -ash /* |sort -nr |grep GA more useful command is:
    du -kd / | sort -n | tail -30
    Why is it better?
    - The "/" argument tells it to look at /. Your command says "look at all the stuff that is in /*". Note that /* does not include files and/or directories that start with ".". It does include file systems that are mounted on subdirectories of /.
    - The -k option makes it so all of the units are the same. Thus, sort works better and you have an easy visual of the difference in space by the number of digits in the size.
    - The -d option makes it so that it doesn't look in other file systems. You are trying to figure out why / is full. /proc is a different file system that is a representation of a bunch of kernel data structures. /proc takes no space on disk.
    As you can see the fs is filled up from processes /proc and vhost/proc is not filling up any disk-based file system. When you read a file that is in /proc, you are either reading a representation of kernel data structures that are stored in memory or you are being referred off to a file in a different file system.
    Notice that between your posts, you show that the root file system is about 70 GB in total size and /vhosts seems to be using 51 GB. That means that you are looking for less than 20 GB. If the du command I give above shows that / is using a lot less than df says it is using, try this command:
    # find /proc/*/fd -type f -links 0 | xargs du -k | sort -n
    258     /proc/12328/fd/24
    Each line represents a file that has been removed but something still has it open. Because it is removed (no longer "linked" into a directory) it is invisible to du when traversing the normal file system. /proc provides a special view into it. In my example pid 12328 has file descriptor 24 open to a removed file. It is 258 KB in size. When pid 12328 dies, the space used by that file will be freed.
    You can typically see what is in such a file using a command like
    # less /proc/12328/fd/24
    Many times you will see that it is a log file that is being written to and will never be read (because it is removed, after all). In such cases, you can free the space immediately with:
    # cp /dev/null /proc/12328/fd/24

  • How to find out where I have used a certain Global/Local Variable

    Hi Friends
    I want to track how and where the shared variable's  value has been
    changed/Read when I try to debug the program. Anyone
    here had the expenrience on how to find a certain shared variable in
    the Block Diagrams/VIs. I will very appreciate you help.
    Cheers!

    Hi All
    I have tried the  ctr+F to find a certain shared variabl, but the result came out is looks all the shared varibales. How can I focus on 1 certain shared variable. I am using labview8.2.1.
    And I have tried the Find shared variables VI  from the link Ben showed me. It can not work properly. It showed an error when I try to search, which says: Error 1057 as attached. Could anyone tell me why. Thanks.  
    Attachments:
    Error 1057.JPG ‏66 KB

Maybe you are looking for

  • HT3819 iTunes won't stay running

    I have recently installed an Apple TV.  Home sharing is working fine except iTunes seems to close after a few hours of inactivity.  I tried setting it to minimize to the system tray with no luck.  I have to keep going to the computer to restart iTune

  • Adobe Lens Profile Creator 1.0.1 Release Now Available

    You can download the build at http://labs.adobe.com/downloads/lensprofile_creator.html. This build fixed several bugs found in the ALPC 1.0 release: 1) Fixed a metadata bug where the camera's sensor format factor (crop factor) was not written to the

  • Network services

    Hi, We recently changed our operating system from Solaris 2.5.1 to Solaris 10, and I've got a problem with one of our legacy scripts. This one only makes a few checks ( which are all ok ), and launches a simple rsh command to a raid system to stop it

  • Trouble re-installing Adobe Flash Player

    I have downloaded Adobe Flash before and never had this problem, somehow (idk how). I go through the installation process (a million times) and it says its installed but the Flash Player recognizer says its still not installed. I am using a MacBookPr

  • Netbeans5.5 installation problem...

    Hii everyone, i recently got this netbeans5.5.... I have JDK1.5 but installation of Netbeans5.5 aborts at 4%.... where it says "buiding storage...plz wait..." and then aborts... it displays the following message: Errors occurred during the installati