Define namespaces at element level

hi,
Is it possible to define namespaces at element level. Consider the Below xml file, for which i have to generate a single XSD( not seperate XSD for every namespace)
<sap:Envelope xmlns:sap="urn:sap-com:document:sap" version="1.0">
  <sap:Header xmlns:rfcprop="urn:sap-com:document:sap:rfc:properties">
    <saptr:From xmlns:saptr="urn:sap-com:document:sap:transport">SAPXX</saptr:From>
    <saptr:To xmlns:saptr="urn:sap-com:document:sap:transport">SAPYY</saptr:To>
  </sap:Header>
  <sap:Body>
    <rfc:ZINSERT xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
      <CARRID></CARRID>
      <CONNID></CONNID>
      <FLDATE></FLDATE>
    </rfc:ZINSERT>
  </sap:Body>
</sap:Envelope>
Regards,
Siva Maranani

Hi Siva,
I fear there is no chance. The XSD specification requires to build one separate schema document for each namespace used. If you need to have all information in one document you can create a WSDL document that contains several schemas in its types-section.
However, then you would need to make use of the WSDL standard which is build on top of the XSD standard.
Greetings    Stephan

Similar Messages

  • Adding namespace qualified element nodes

    Is there a way to add namespace qualified element nodes to
    a document stored in a BDBXML container using the XmlModify class
    (BDBXML version 2.3.10, Linux)? Or, for that matter, any other
    handles?
    Particularly, is it possible to achieve this using the PHP
    extension?
    Let me give an example.
    When doing queries, you can set a namespace in the XmlQueryContext
    or in the XQuery expression itself:
    # prefix cannot be '' as of BDBXML 2.3.10
    $qc->setnamespace('a', 'http://as-guides.com/wev1');
    declare namespace a = "http://as-guides.com/wev1"; ...
    declare default element namespace "http://as-guides.com/wev1"; ...
    You can then refer to your namespace qualified elements as "a:Bla"
    etc. Or just as "Bla" if you make your namespace the default
    namespace.
    So far, so good.
    Now what if I want to add a namespace qualified element to
    my document? However I go about setting the namespace I always end
    up with either an apparently namespace qualified element which the
    namespace is not registered for or an element in the empty
    namespace.
    What I want is my element to adhere to the namespace
    "http://as-guides.com/wev1", which is set as the default
    element namespace in my document.
    Here is an example document.
    <Broadcast xmlns="http://as-guides.com/wev1"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://as-guides.com/wev1 ds.xsd">
    <Start epoch="1186100400">2007-08-03T00:20:00Z</Start>
    <End epoch="1186100700">2007-08-03T00:25:00Z</End>
    <Content>
    <Title>Tagesschau</Title>
    <Genre>Nachrichten</Genre>
    </Content>
    </Broadcast>
    And here is my PHP code.
    $docname = '2007-08-02-1186100400-25758173-ard.xml_41368';
    $mgr = new xmlmanager;
    $cont = $mgr->opencontainer($argv[1]);
    $cont->addalias('tv');
    $qc = $mgr->createquerycontext();
    $qc->setnamespace('a', 'http://as-guides.com/wev1');
    $qexp = $mgr->prepare('/a:Broadcast', $qc);
    $mod = $mgr->createmodify();
    $mod->addappendstep($qexp, XmlModify_Element, 'a:now', time());
    $doc = $cont->getdocument($docname);
    $docval = new xmlvalue($doc);
    echo $docval->asString(), "\n";
    $uc = $mgr->createupdatecontext();
    $mod->execute($docval, $qc, $uc);
    Here is what gets added as last child node under "Broadcast":
    <a:now xmlns="">1189605065</a:now>
    So the namespace prefix I specified is added verbatim, without
    regard to the namespace settings in $qc (XmlQueryContext) - which
    do work fine for the query. No namespace declaration for "a"
    is added to the document. The resulting XML is invalid, as
    xmllint correctly points out.
    namespace error : Namespace prefix a on now is not defined
    So settings in XmlQueryContext do not seem to have any bearing on
    my update. XmlUpdateContext, on the other hand, does not have any
    methods defined for setting the namespace.
    Not setting the namespace in $qc (XmlQueryContext) and specifying
    it in the XQuery itself didn't work either. I left out the call to
    "setnamespace()" and changed the query to:
    declare default element namespace "http://as-guides.com/wev1";
    /Broadcast
    And I changed "a:now" to just "now". Here is what got added:
    <now xmlns="">1189607498</now>
    I didn't expect this second version to work, but I did expect the first
    one to work.
    What is the meaning of supplying XmlQueryContext to the execute()
    method?
    Is there a way to add namespace qualified elements to a document?
    If so, how can it be done?

    Thanks for your answer, George. I haven't quite understood how to make it do the trick, though.
    To change one document I did:
    dbxml> open tv.dbxml
    dbxml> setnamespace a http://as-guides.com/wev1
    Binding a -> http://as-guides.com/wev1
    dbxml> getdoc 2007-08-02-1186104300-25758380-sat1.xml_40564
    1 documents found
    dbxml> print
    <?xml version="1.0" encoding="UTF-8"?>
    <Broadcast xmlns="http://as-guides.com/wev1"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://as-guides.com/wev1 ds.xsd">
    <Start epoch="1186104300">2007-08-03T01:25:00Z</Start>
    <End epoch="1186105800">2007-08-03T01:50:00Z</End>
    <VPS>03:25</VPS>
    <Content>
    <Title>Moin</Title>
    </Content>
    </Broadcast>
    dbxml> append doc(2007-08-02-1186104300-25758380-sat1.xml_40564)/a:Broadcast element "" "<a:now xmlns:a='http://as-guides.com/wev1'>NOW</a:now>"
    Appending into nodes: doc(2007-08-02-1186104300-25758380-sat1.xml_40564)/a:Broadcast an object of type: element with name: and content: <a:now xmlns:a='http://as-guides.com/wev1'>NOW</a:now>
    0 modifications made.
    No change made to my document. I used the doc() function instead of collection() as in the example you gave. Using collection() as in your example (verbatim) I get an error message:
    stdin:17: append failed, Error: XmlModify::execute: Cannot perform a modification on an XmlValue that isn't either Node or Document type
    This is in the FAQ, but I don't quite get it.
    http://www.oracle.com/technology/products/berkeley-db/faq/xml_faq.html#49
    Anyway, I can still perform modifications outside of the container and then replace the document. Or wait till 2.4.
    Thanks for your answer and the good work. Regards,
    Michael

  • Value Help at element level rather than Node level...

    Hi Experts,
    Need your inputs on one of the scenario.
    I am using the method SET_ATTRIBUTE_VALUE_SET (Sets the fixed values for an attribute) of interface IF_WD_CONTEXT_NODE_INFO and this allow me to see only the defined values in the dropdown.
    Now let say I have 1 node with two element and want to make the valuehelp for one attribute with different-different value in both element.
    Example:
    Node name is PersonDetails
    Attributes are ANREX (Form of address text)
                           NACHN (Last Name)
                          VORNA (First Name)
    There are two elements PersonalDetails1 (MR   ,  XYZ  , XYZ)
                                    and PersonalDetails2 (MRS   ,  ABC  , ABC)
    Now for the above two elements,  value help for 1st Element needs to be (MR / DR) and for second (MRS / MR / MISS).
    But the method SET_ATTRIBUTE_VALUE_SET is called at NODE leveel and not at ELEMENT level and so always value help will be of type 2nd element.
    You can see this scenario in infotype 0009 in which Payment Method are different for subtype 0 (Main Bank) and
    5 (Main bank details for Off-Cycle).
    Please let me know if any other information is required.
    Thanks,
    Harish

    Hi Harish,
    One attribute and two value_set would be possible only in dynamic programming. Is it feasible and workable, i doubt on that.
    I would attempt to do that only when there are no other options available. You have to go back to your designers to see if they want to re look into this.
    But the method SET_ATTRIBUTE_VALUE_SET is called at NODE leveel and not at ELEMENT level and so always value help will be of type 2nd element.
    If you use a supply method, you could fill for every element a different value set.
    or you could define a  node in side your person-details with cardinality 1:1.You could refer coloring a table cell_editor as example.

  • BPEL PM message having xmlns at Element Level Tags

    When i invoke a bpel process, all my xml messages have the namespace refference at each individual element level tag. Not sure this is due to some kind of configuration at the Jdeveloper design enviorment. However it is annoying and difficult to parse the xml message due to this unwanted nampespaces at the tag level. Any help to identify the rootcause of this issue will be highly appreciated.
    here is a sample messge with the extra namespaces
    <messages><invokeESBService_EBSEntitlementService_InputVariable><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="InputParameters"><InputParameters xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/XXVM_GET_FX_RATE/">
    <X_FROM_CURRENCY_CODE xmlns="">USD</X_FROM_CURRENCY_CODE>
    <X_TO_CURRENCY_CODE xmlns="">USD</X_TO_CURRENCY_CODE>
    <X_TRX_DATE xmlns="">2008-08-30</X_TRX_DATE>
    </InputParameters>
    </part></invokeESBService_EBSEntitlementService_InputVariable><invokeESBService_EBSEntitlementService_OutputVariable><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="OutputParameters"><OutputParameters xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/XXVM_GET_FX_RATE/">
    <XXVM_GET_FX_RATE>1</XXVM_GET_FX_RATE>
    </OutputParameters>
    </part></invokeESBService_EBSEntitlementService_OutputVariable></messages>
    Thanks in advance

    The fault management framework catches all faults (business and runtime) for an invoke activity only.
    For all other activities use the BPEL fault handler.

  • Error after creating Element level join between two different dataset in11G

    Hi Experts,
    My report is having data from two different datsets, I created two datasets and joined them with Element Level join. I am getting below error.
    "The following tags were not closed: DATA_DS. Error processing resource 'http://localhost:9704/xmlpserver/servlet/xdo'. "
    But independent datasets are executing with out any errors.
    Please let me know, If any one have inputs to resolve this.
    Thanks in advance..

    Hi,
    Can you please explain the resolution in more details. I'm also having the same issue in BI Publisher report when trying to join two data sets with Element Level Link. I have checked that all my columns have alias names.
    Thanks,
    Piya.
    Edited by: 947289 on Jul 18, 2012 5:56 AM

  • How to define namespace with one XSD using in two different DB-Locations ?

    I'm not clear,How to define namespace, targetnamespace, schemaLocation or NoNamespaceSchemaLocation
    when using one common schema.xsd-definition
    in two different database-locations for exchange xml-documents?
    when insert xml-document I've got an error ORA-30937
    do you have an good exsample ?
    thanks
    Norbert
    schema :
    <xs:schema
    xmlns="http://sourcehost.com/namespace"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:oraxdb="http://xmlns.oracle.com/xdb"
    targetNamespace="http://sourcehost.com/namespace"
    xml-document :
    xmlns="http://Sourcehost.com/namespace"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:SchemaLocation="http://sourcehost.com/namespace http://desthost:8080/sys/schemas/PUBLIC/ADRESSEN.XSD">
    SQL> insert into ADRESSEN values
    (XMLType
    (bfilename ( 'XMLIMPORT_DIR', 'adressen.xml')
    , 0 )
    --> error :
    ORA-30937: No Schemadefinition for "SchemaLocation" (Namespace "http://www.w3.org/2001/XMLSchema-instance") in übergeordnetem Knoten "/ADRESSEN"

    Norbert
    The schema location used to register the XML schema with XML DB does not need to be a valid URL for accessing the XML Schema
    I can use the same URL , for instance
    http://xmlns.example.scom/xsd/myXMLSchema.xsd
    on machines dbserver1, and dbserver2. The only reason some people choose to use the hostname / portnumber convention is that this makes it possible to validate the XML Instance documents against the copy of the XML schema stored in the XML DB repository using an external tool like XMLSpy without have to add entries to XMLSpy's OASIS catalog files.
    I am concerned about the message you are getting. That's not correct AFAICT but I'd need to see the complete XML Schema and Instance to be sure.

  • How to Use MRS Functionality at Activity Elements Level?

    When we use Multi Resource Scheduling for resources in PS, we specify "Resource planner process" as process variant at the network header and the Resource planner node.
    In the other hand, at the network operation level we are able to choose the same Process variant and the system displays the planner node to start planning; however we cannot do that when using activity elements because the icon to search the Resource planner is gray out.
    How can I use MRS functionality at activity elements level?
    I will appreciate your help.
    Ragards,
    Rafael

    Hi Rafael...
    A question were able to integrate elements activity to MRS?
    Thanks
    Damy Vidal

  • Config for Cost & budgeting at activity level and WBS element level in PS

    Dear GURU's,
    please suggest me how to do the spro configuration for budgeting and costing, here my requirement is I need to do cost planning and budgeting at WBS element level and Activity level. We two deferent types of projects.
    Regards,
    Bha

    Hi Bhanu,
    Cost planning in projects can be done through two techinques:
    I.  Manual cost planning (at WBS level)
    1.  Overall planning (Struture-oreiented planning)
    2.  Detailed planning (Cost element planning)
    3.  Unit costing
    4.  Easy cost planning form
    II.  Automatic cost planning using networks and assigned orders
    For customizing:  Use transaction OPUV  and enter the required entries for cost planning.
    Budget can do only at WBS level.  For configuration do the following steps:
    1.  Create Budget profile - OPS9
    2.  Assign Budget profile in Project profile - OPSA
    3.  Then allot budget to your project - CJ30
    hope it will be very clear.  Appreciate with point if it useful.
    Thanks and Regards
    vetrivelan

  • How to do budgeting at activity level and WBS element level in project syst

    Dear GURU's,
    Can any one please suggest me how to do budgeting at activity level and WBS element level in project systems, friends please I required set by step process.
    I need how to do this configuration to map this scenario.
    Regards,
    Bhanu

    Hi Bhanu,
    Use this link :
    http://help.sap.com/saphelp_45b/helpdata/en/86/98853478616434e10000009b38f83b/frameset.htm
    after page opens , click on BUDGET MANAGEMENT , There you will find each and every step you want .
    Thanks ,
    Dhruv Kumar Malhotra

  • Item already defined at a high level in the product tree

    Hi experts,
    when I add a BOM into the system, says A is consisted of B and C, I click the button to add this BOM, but system tell me an error "Item already defined at a high level in the product tree.  Row no. 2".
    Row no 2 is item C, I check all my BOM, C is not contained in any BOM, and B is in another BOM but that BOM didn't contain C or A.
    A is in a BOM, but in that BOM, there is no C. It's wreid why C already defined at a high level in the product tree. Thanks...

    Hi
    Please wite following the querry and check
    SELECT T0.[Code], T1.[Code] FROM OITT T0  INNER JOIN ITT1 T1 ON T0.Code = T1.Father WHERE T0.[Code] =[%0]
    Ashish Gupte

  • Changing Prompt Order of Prompts defined at the universe level

    Hi All,
    I need to change the order of the prompts defined at the universe level.By default they appear in alphabetical order.
    Thanks,
    Shweta.

    Hi Shweta,
    If you are on XI R2 then you can try the following extended syntax for the prompt definition:
    @Prompt('Region', 'A', 'Class\Object Name', multi,free,,,User:0)
    @Prompt('Area', 'A', 'Class\Object Name', multi,free,,,User:1) ...etc
    Else there is no other way to sort the prompt in the desired order. Either you have to prefix the prompt text with numbers
    or alphabets.
    Regards,
    Rohit

  • Error When using Element level link in Dataset Joins

    Hi All ,
    I am joining two data sets using element level link ,I am getting the following Error message
    ORA-00972: identifier is too long at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462) at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405) at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931) at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481) at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205) at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548) at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217) at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:947) at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1283) at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1441) at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769) at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3823) at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1671) at oracle.xdo.dataengine.XMLPGEN.processQuery(XMLPGEN.java:1660) at oracle.xdo.dataengine.XMLPGEN.processSQLDataSource(XMLPGEN.java:462) at oracle.xdo.dataengine.XMLPGEN.writeData(XMLPGEN.java:387) at oracle.xdo.dataengine.XMLPGEN.writeGroup(XMLPGEN.java:885) at oracle.xdo.dataengine.XMLPGEN.writeGroup(XMLPGEN.java:906) at oracle.xdo.dataengine.XMLPGEN.processGroup(XMLPGEN.java:846) at oracle.xdo.dataengine.XMLPGEN.processSQLDataSource(XMLPGEN.java:496) at oracle.xdo.dataengine.XMLPGEN.writeData(XMLPGEN.java:387) at oracle.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:288) at oracle.xdo.dataengine.XMLPGEN.writeXMLDataStructure(XMLPGEN.java:221) at oracle.xdo.dataengine.XMLPGEN.processDataSet(XMLPGEN.java:1575) at oracle.xdo.dataengine.XMLPGEN.processMergedDataSet(XMLPGEN.java:1345) at oracle.xdo.dataengine.DataProcessor.processData(DataProcessor.java:376) at oracle.xdo.servlet.dataengine.DataProcessor.processData(DataProcessor.java:317) at oracle.xdo.servlet.dataengine.DataProcessor.render(DataProcessor.java:671) at oracle.xdo.servlet.ReportModelContextImpl.getReportXMLData(ReportModelContextImpl.java:280) at oracle.xdo.servlet.CoreProcessor.process(CoreProcessor.java:346) at oracle.xdo.servlet.CoreProcessor.generateDocument(CoreProcessor.java:101) at oracle.xdo.servlet.ReportImpl.renderBodyHTTP(ReportImpl.java:1074) at oracle.xdo.servlet.ReportImpl.renderReportBodyHTTP(ReportImpl.java:639) at oracle.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:492) at oracle.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:462) at oracle.xdo.servlet.XDOServlet.doGet(XDOServlet.java:261) at javax.servlet.http.HttpServlet.service(HttpServlet.java:707) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.xdo.servlet.metadata.track.MostRecentFilter.doFilter(MostRecentFilter.java:64) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:125) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.xdo.servlet.init.InitCheckingFilter.doFilter(InitCheckingFilter.java:63) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at java.security.AccessController.doPrivileged(Native Method) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)</
    I used alias names for all the columns not to Exceed characters limit of 30 .When i use group level join ,there is no Error .Please help me on this ,I want to use element level link
    Thanks,

    I put in the curly brackets so my formula now reads
    "Total inquiries for " + {CnAttrCat_1.CnAttrCat_1_Description} + ": " + ToText({@InquiryTypeSubtotal})
    Now when I check the formula I get the error message "This field name is not known."
    Alec

  • Schemas defining the same element

    Hi,
    I have 7 schemas (xsd) that define the same element but with different attributes. I want to generate the java classes but obviously there's a problem with the root element. It is possible to join all the schemas that I have to make a unique schema?
    All of them define the XFFile element but in differents ways.
    <?xml version="1.0" encoding="UTF-8"?>
         <xs:element name="XFFile">
         <xs:complexType>
              <xs:sequence>
              here the elements
    </xs:sequence>
         </xs:complexType>
         </xs:element>
    </xs:schema>
    thx in advance

    I've been thinking and I'll make a package for each schema..

  • Planni values at cost element group level instead of at cost element level

    Is it possible to plan values at cost element group level instead of at cost element level in BI?
    Similary I have another question for financial statements.
    Is it possible to plan values at financial statement level instead of at G/ in BPS or SEM?
    Thanks

    Hi.
    It depends on what you mean "cost element group".
    If you mean node (not leaf) in hierarchy so the answer is NO.
    If cost element group is regular characteristic so the answer is YES.
    Regards.

  • How to define a unique project level custom field in project server 2010?

    Hi every one;
    is it possible to define a unique project level custom field?
    our client wants to have a unique custom field( project code) which doesn't allow users to save and publish projects with the same value.
    for example if user A define a project and set "project code = 1" if user B define another project and wants to save "project code =1" for it, the server doesn't allow him to save this value and he has to change value for example to 2
    thanks for any help

    First of all you need to have Project server development environment also for coding visual studio hands on is required.
    To start with PSI (Project Server interface)you need to have Development Environment of Project Server 2010.
    you can get the overview from http://msdn.microsoft.com/en-us/library/office/ms457477(v=office.14).asp
    You
    can get the information about SDK: Download SDK.
    http://msdn.microsoft.com/en-us/library/office/ms512767(v=office.14).aspx
    Below mentioned link is having code and reuqired information about :
    Generate Unique ID for Project using a webpart
     http://epmxperts.wordpress.com/2012/05/21/generate-unique-id-for-project-using-a-webpart/

Maybe you are looking for

  • Usage of to_date & to_char

    pls. give advanced usage of to_date & to_char

  • Kms on server 2012

    Hi All, i install server 2012 with 2012 kms host  license. now i know if i enter the kms of 2012 license it valid all the way down for win 2012,2008,8...   to activated but i only want to activate with that kms is win 7 and 8 and no servers. i want t

  • Please help! Connection!

    When I plug in my ethernet cable to my PB it does not recognize my internet connection. When I plug in the same ethernet cable into my other computers, it works fine. It is something with my PB ethernet connection, for some reason it just quit workin

  • Night Shift Premium

    Hello Experts, I have a requirement of generating Night Shift Premium Hours. My Night Shift is from 18:30 to 6:30. Where as Hours needs to consider for Night Premium is only between 21:00 to 5:00. We are having Positive Time scenerio & Clock in/out i

  • How to organize podcast channels into folders?

    I'm brand-new to iTunes so maybe I'm just not figuring it out: I have lots of podcasts and it would be helpful to be able to organize them by general topic area (Project Management, Health Care, Cooking, etc.) How can this be done? Creating a playlis