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.

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?

  • 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

  • [SOLVED]X server locale issues

    Ok so I had this common issue with the glibc update (deleted everything but modules in /lib) and I had to manually unzip an older glibc package in my / folder. After that I rebooted my system, updated fully (latest glibc & symlinked /lib to /usr/lib properly). I then started X normaly but I noted this:
    http://pastebin.com/xfd3tXB7
    So although X boots fine, i have this minor locale issues. I guess it has to do with the fact that I am using greek language. I have installed a greek-Inconsolata font back then and now it is not displaying properly on the urxvt (just some weird chars). I can however switch keyboard layouts just fine and type in both languages (greek/english)
    rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # See 'man 5 rc.conf' for more details
    # LOCALIZATION
    HARDWARECLOCK="UTC"
    TIMEZONE="Europe/Athens"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    LOCALE="en_US.UTF-8"
    DAEMON_LOCALE="yes"
    USECOLOR="yes"
    # HARDWARE
    MODULES=(fglrx snd-usb-audio)
    USEDMRAID="no"
    USEBTRFS="no"
    USELVM="no"
    # NETWORKING
    HOSTNAME=GliderVillage
    interface=wlan0
    address=
    netmask=
    broadcast=
    gateway=
    NETWORK_PERSIST="no"
    # DAEMONS
    DAEMONS=(dbus syslog-ng wicd crond xkbevd wireless-regdom mpd)
    Edit: Btw there is no locale.conf file in my system Oo
    Last edited by Crone (2012-08-24 13:58:25)

    Hmm i did not use locale-gen. I used it now .Do I need to reboot after that? Because restarting X doesn't work
    locale -a: (before and after locale-gen without reboot)
    locale: Cannot set LC_CTYPE to default locale: No such file or directory
    locale: Cannot set LC_MESSAGES to default locale: No such file or directory
    locale: Cannot set LC_COLLATE to default locale: No such file or directory
    C
    POSIX
    locale: (same)
    locale: Cannot set LC_CTYPE to default locale: No such file or directory
    locale: Cannot set LC_MESSAGES to default locale: No such file or directory
    locale: Cannot set LC_ALL to default locale: No such file or directory
    LANG=en_US.UTF-8
    LC_CTYPE="en_US.UTF-8"
    LC_NUMERIC="en_US.UTF-8"
    LC_TIME="en_US.UTF-8"
    LC_COLLATE="en_US.UTF-8"
    LC_MONETARY="en_US.UTF-8"
    LC_MESSAGES="en_US.UTF-8"
    LC_PAPER="en_US.UTF-8"
    LC_NAME="en_US.UTF-8"
    LC_ADDRESS="en_US.UTF-8"
    LC_TELEPHONE="en_US.UTF-8"
    LC_MEASUREMENT="en_US.UTF-8"
    LC_IDENTIFICATION="en_US.UTF-8"
    LC_ALL=
    Last edited by Crone (2012-07-28 17:24:08)

  • 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

  • Could not establish TLS connection on port 7001 - "unable to get local issuer certificate"

    tvcs: Event="Outbound TLS Negotiation Error" Service="SIP" Src-ip="10.0.7.168" Src-port="29127" Dst-ip="<Public IP>" Dst-port="7001" Detail="unable to get local issuer certificate" Protocol="TLS" Common-name="ewe.<domainname>.com" Level="1" UTCTime="2014-11-12 12:48:20,071" 2014-11-12T15:48:05+03:00
    Getting above error on Expressway-C server while establishing TLS connection with Expressway-E in DMZ. I have enabled static NAT on Expressway-E and give the Public IP on peer address of Expressway-C. At that time, i was getting DNS resolution error  on Expressway-C so we added a host record on local DNS for Public IP. Later, I created CSR from both Expressway C & E server and ask local microsoft team to issue Local CA certificates. After uploading, i was getting above error (Failed to establish TLS). Also i have uploaded company (wilcard) Public certificates (issued from Geotrust) and we are getting the samer error and Expressway server could not establish TLS connection on port 7001. Firewall connections are done and i double checked it. 
    Expressway ver 8.2

    Yes, Exp-C > Peer Address (FQDN of Exp-E)
    Certificate of Exp-E -> When generating CSR from Exp-E, automatically FQDN (Exp-E(hostname).domainname.com) will be shown. Then this CSR will be send to local CA or Public CA to generate a certificate. OR you meant to say in Exp-E CSR we need to add FQDN of Exp-C server also in alternative name and vice versa too.
    Yes, root certificates & intermediate certificates are uploaded to trusted CA.

  • 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.

  • 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 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 !

  • WebLogic 12c Global JNDI issue

    I'm using WebLogic to deploy our application and we have a standalone application to invoke remote EJB, so we use global jndi.
    format:
    java:global/[<application-name>]/<module-name>/<bean-name>!<fully-qualified-bean-interface-name>
    Here is some description about the global JNDI
    1.<aplication-name> defaults to the bundle name (.ear file name) without the bundle extension. This can be overridden in application.xml. Also, <application-name> is applicable only if the bean is packaged inside a .ear file.
    2.<module-name> defaults to bundle name (.war or .jar) without the bundle extension. Again, this can be overridden in ejb-jar.xml.
    3.<bean-name> defaults to the unqualified class name of the bean. However, if @Stateful or @Stateless or @Singleton uses the name attribute, then the value specified there will be used as the bean name.
    But when I deploy our ear to webogic by autodeploy, weblogic just doesn't obey this rule, the application-name was generated by weblogic, not from application.xml in ear. This cause our standalone application need to configure the application-name if we want to keep compatible with JBoss 7.
    Why doesn't weblogic use the application-name from application.xml? Is this an issue?

    In the EAR file deployed what is the application-name in application.xml generated by Maven?
    Is <generateApplicationXml>true</generateApplicationXml>?

  • 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

  • [sovled] gnome3.12 locale issue, cannot open gnome-terminal

    I update gnome from 3.10 to 3.12, everything works fine except that I cannot open gnome-terminal, the error message shows
    (process:2410): Gtk-WARNING **: Locale not supported by C library.
    Using the fallback 'C' locale.
    Error constructing proxy for org.gnome.Terminal:/org/gnome/Terminal/Factory0: Error calling StartServiceByName for org.gnome.Terminal: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.gnome.Terminal exited with status 1.
    The other problem is that I cannot start fcitx(I use it to input chinese) either, there is somethings wrong in my locale, when I type 'locale ' it shows
    locale: Cannot set LC_CTYPE to default locale: No such file or directory
    locale: Cannot set LC_MESSAGES to default locale: No such file or directory
    locale: Cannot set LC_ALL to default locale: No such file or directory
    LANG=en_US-UTF-8
    LC_CTYPE=en_US-UTF-8
    LC_NUMERIC="en_US-UTF-8"
    LC_TIME="en_US-UTF-8"
    LC_COLLATE=C
    LC_MONETARY="en_US-UTF-8"
    LC_MESSAGES="en_US-UTF-8"
    LC_PAPER="en_US-UTF-8"
    LC_NAME="en_US-UTF-8"
    LC_ADDRESS="en_US-UTF-8"
    LC_TELEPHONE="en_US-UTF-8"
    LC_MEASUREMENT="en_US-UTF-8"
    LC_IDENTIFICATION="en_US-UTF-8"
    LC_ALL=
    I try to reinstall the glibc or regenerate the locale-gen, but none of them solve the problem,  so can anyone help me? thanks.
    Last edited by wntyygtwxf (2014-04-11 10:25:48)

    I have resolved this issue. The reason I guess is also "locale"
    "$localectl" output "System Locale: n/a" and I check the /etc/locale.conf I found this file is lost.
    So after I press below command and reboot the machine, gnome-terminal could be started.
    # localectl set-locale LANG="en_US.UTF-8"
    Thanks all!
    gogoer wrote:
    I don't meet C locale error message after I exec gnome-terminal. Although that, I post below output. 
    ~  locale -a
    C
    en_US
    en_US.iso88591
    en_US.utf8
    POSIX
    zh_CN
    zh_CN.gb18030
    zh_CN.gb2312
    zh_CN.gbk
    zh_CN.utf8
    ~  localectl
    System Locale: n/a
    VC Keymap: n/a
    X11 Layout: n/a
    clfarron4 wrote:@gogoer, did you also get a message about the C locale, or is this an unrelated issue (in which you need to start a new thread)?

  • Global Colors issue, in Adobe Illustrator CS 3/4

      We have this issue where I work of colors remaining in swatches even when deleted, which for some reason creates huge files when saved, 1 gig + at times.
      The colors that remain in the swatch are all titled "Global Color", it is possible to select and delete them all, but it is just an illusion, as soon as you copy and paste anything from the document all the Global Colors return.
      I have browsed the web and seen no solution to the problem. I have many files infected with these colors and can upload a file somewhere for any one to investigate.
    Thanks.

    Same problem here. Any copying and pasting between documents spreads this. Here is what I have tried so far that has not worked
    Recovered the file using 'Content Recovery Mode = 1". Edited this in simpletext to remove all code that has "Deleted global colors" & the "Begin PluginObject: Object". There was lots of junk to remove and I got everything in between the open & close tags.
    Saved files as AI3
    Copied & Pasted all elements into a new document
    Removed all unused Brushes, Swatches, Graphic Styles
    Removed all layers & did a save as, the file is still 6mb with nothing in it.
    In my situation, 1000s of brushes reappear in the library(see images below) after any copy/pasting. I also had "deleted global colors"(see images below) reappearing but that has gone away since I cleaned up the code. The problem must lie in in the non-standard characters. I also am getting the HUH error(see images below) when saving. I stopped getting the swatch conflict error(see images below) after pasting, after I cleaned up the code. The file though is still huge, slow and any copying is really slow. Can't load CS5 trial here at work(to try out that new cleanup command), but am on CS4 Mac.

  • Management of Global Employees Issue

    Hi Gurus,
    In Management of global employees, it is sure that you know that there are series of "Personnel actions" such as "Planning of Global assignment", "Assignment Activation - Host & Home" are needs to be run.
    On running the above mentioned Actions, I struck up on last one "Assignment Activation - Home" as the error says the "Status of Assignment" (Infotype 715, subtype "Home" is not maintained). But i know the "Home" subtype of 0715 is automatically maintained by the system but not manually, once after running the Action "Assignment Activation - Host". But even after "Assignment Activation - Host" is been run and the "Status of Assignment Activation - host" (Subtype) is of "completed" / "In Progress". the system is not automatically updating the "infotype 0715, subtype - home" and even not allowing to update Manually.
    So Could you help me out to solve this issue.
    Thanks in advance
    Regards
    Vinoth Kumar.R

    Hi Gurus,
    In Management of global employees, it is sure that you know that there are series of "Personnel actions" such as "Planning of Global assignment", "Assignment Activation - Host & Home" are needs to be run.
    On running the above mentioned Actions, I struck up on last one "Assignment Activation - Home" as the error says the "Status of Assignment" (Infotype 715, subtype "Home" is not maintained). But i know the "Home" subtype of 0715 is automatically maintained by the system but not manually, once after running the Action "Assignment Activation - Host". But even after "Assignment Activation - Host" is been run and the "Status of Assignment Activation - host" (Subtype) is of "completed" / "In Progress". the system is not automatically updating the "infotype 0715, subtype - home" and even not allowing to update Manually.
    So Could you help me out to solve this issue.
    Thanks in advance
    Regards
    Vinoth Kumar.R

  • Openbox and locales issue

    Hi !
    I have just realised that i can't see anything in Greek (my language ) .
    I used to be able to do this with gnome but not with openbox . So subtitles and documents don't display correctly .
    I have xorg-fonts-encodings installed and greek locales .
    So what might be the issue ?
    THanks!
    Last edited by shak (2009-12-03 16:26:18)

    Anyone please ?

Maybe you are looking for

  • T510 stereo audio connection options?

    OK, this may have been asked/answered already, but I am wanting to connect my T510 laptop to my stereo amp preamp out RCA jacks so I can rip my vinyl collection to my computer. The issue is how....the usual way to do this would be to use a 'line in'

  • Submit query button on parameter form

    Hello. I have a problem with runing reports with parameter form. When i start report from form, parameter form is opened. When i check on AS, which report is running i see reportName.rdf. When i then press submit query button, report appears. But whe

  • Combine similar request

    Hello All, I am using combine similar request. I see an option Add result column in combine similar request. I have read on a blog that we can do calculations like saw_2 / 2 etc. Can we also do saw_2 - saw_1 ? I tried doing so. But the column just re

  • How to make existsNode faster?

    Hi, i am trying to search in a schema based (object-relational) xml document. With small files (~ 100 Bytes) anything is alright and the search terminates after one or two seconds. But when I do the same existsNode query on bigger files (e.g. 1 MB) i

  • BI analysis authorizations/ RSECADMIN/  Tables

    Hello, Does anybody know which tables are used with RSECADMIN. In which tables are the values of the authorizations created in the RSECADMIN stored ? Thanks in advance. Kind Regards, Vincent