OCDM get metadata

Hello all,
There is a reference in the following documentation
Oracle® Communications Data Model Reference
11g Release 2 (11.2)
Part Number E15886-05
about
Metadata Population
You can use the pkg_get_metadata.sql script to generate the Logical Data Model -> Physical Data Model metadata.
Where can we find this script? It would be very useful for us.
Thank you in advance,
Tom

Hi,
Currently there is no .NET SDK to work with UNX universes. UNV only.
However, there is Semantic Layer Java SDK which works with UNX.
http://scn.sap.com/docs/DOC-27465
Thanks,
Bhushan

Similar Messages

  • Not able to get MetaData of BlobItems using java or by using the URI

    line1
    String metadta = blob.getMetadata().toString();
    line2 System.out.println(metadta);
    line3 blob.download(fileOutputStream);
    line4 metadta = blob.getMetadata().toString();
    line5 metadta.toString();
    line6 System.out.println(metadta);
    I will get NullPointerException on Line1
    And will be Able to get MetaData of the blob item after i initiate download .

    Hi,
    You have got NullPointerException on Line1, what was this blob on line 1, I didn't very familar with java, but from my experience, we need to know the details of getMetadata(), about download blob file, I suggest you read this article:
    http://www.windowsazure.com/en-us/documentation/articles/storage-java-how-to-use-blob-storage/
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Oracle.adf.controller.activity.ActivityLogicException: ADFC-02013: Unable to get metadata for activity

    Hello,
    I am new to ADF, I am trying to learn how to navigate from one page to another, the code that I have is simple, but it is not working, I specified the control flow rules in the adfc-config.xml and I even tried to specify the navigation rules in the faces-config.xml file, but it doesn't matter if I do it in one configuration file or another I get the same error.  This is my first time working with ADF, I don't have formal training, just some video tutorial that I have seen on internet.  I have previous experience with JSF, so I feel more comfortable writing the code for my program than using all the graphical tools (at least at this moment)
    Any help to solve this problem will be highly appreciated.
    This is my page1.jsf  code:
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html>
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich" xmlns:h="http://java.sun.com/jsf/html">
        <af:document title="page1.jsf" id="d1" binding="#{backingBeanScope.backing_page1.d1}">
            <af:form id="f1" binding="#{backingBeanScope.backing_page1.f1}"></af:form>
        </af:document>  
        <h:head>
            <title>First JSF Example</title>
        </h:head>   
        <h:body>
            <h3>ADF Hello World Example</h3>
            <h:form>
                What's your name?
                <h:inputText value="#{backingBeanScope.backing_page1.message}"></h:inputText>
                <h:commandButton value="Welcome Me" action="#{backingBeanScope.backing_page1.processPage1}"></h:commandButton>
            </h:form>
        </h:body>   
    </f:view>
    This is my backing bean for page1:
    package view.backing;
    import oracle.adf.view.rich.component.rich.RichDocument;
    import oracle.adf.view.rich.component.rich.RichForm;
    public class Page1 {
        private RichForm f1;
        private RichDocument d1;
        private String message;
        public void setF1(RichForm f1) { this.f1 = f1; }   
        public RichForm getF1() {return f1;}   
         public void setD1(RichDocument d1) {this.d1 = d1;}
        public RichDocument getD1() {return d1;}
        public void setMessage(String msg) { this.message= msg;  }
        public String getMessage() { return this.message; }
        public String processPage1()
            System.out.println("++++++++++++++++++++++++++++++++++++++++++++++move to next page");
            return "success";   
    This is my adfc-config.xml file:
    <?xml version="1.0" encoding="UTF-8" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <control-flow-rule id="__5">
        <from-activity-id>page1.jsf</from-activity-id>
        <control-flow-case id="__6">
          <from-action>#{backingBeanScope.backing_page1.processPage1}</from-action>
          <from-outcome>success</from-outcome>
          <to-activity-id>page2.jsf</to-activity-id>
        </control-flow-case>
      </control-flow-rule>
      <managed-bean id="__2">
        <managed-bean-name>backing_page1</managed-bean-name>
        <managed-bean-class>view.backing.Page1</managed-bean-class>
        <managed-bean-scope>backingBean</managed-bean-scope>
        <!--oracle-jdev-comment:managed-bean-jsp-link:1page1.jsf-->
      </managed-bean>
      <managed-bean id="__1">
        <managed-bean-name>backing_page2</managed-bean-name>
        <managed-bean-class>view.backing.Page2</managed-bean-class>
        <managed-bean-scope>backingBean</managed-bean-scope>
        <!--oracle-jdev-comment:managed-bean-jsp-link:1page2.jsf-->
      </managed-bean>
    </adfc-config>
    Finally this is my page2.jsf
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html>
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"  xmlns:h="http://java.sun.com/jsf/html">
        <af:document title="page2.jsf" id="d1" binding="#{backingBeanScope.backing_page2.d1}">
            <af:form id="f1" binding="#{backingBeanScope.backing_page2.f1}"></af:form>
        </af:document>
        <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_page2-->
        <h:body>
            <h3>ADF Hello World Example PAGE2</h3>  
        </h:body>     
    </f:view>
    This is the error that I get when I push the button on page1 and I try to navigate to page 2:
    Target URL -- http://127.0.0.1:7101/EcatsADF12c-ViewController-context-root/faces/page1.jsf
    <org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl> <ViewHandlerImpl> <_checkTimestamp> <TIMESTAMP_CHECKING_ENABLED_SHOULDNOT_IN_PRODUCTION>
    <Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,015 during the configured idle timeout of 5 seconds.>
    <Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,014 during the configured idle timeout of 5 seconds.>
    <Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,013 during the configured idle timeout of 5 seconds.>
    <Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,017 during the configured idle timeout of 5 seconds.>
    <Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,016 during the configured idle timeout of 5 seconds.>
    ++++++++++++++++++++++++++++++++++++++++++++++move to next page
    <oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl> <DiagnosticsDataExtractorImpl> <createADRIncident> <incident 11 created with problem key "ADFC-02013 [ADFc]">
    <oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl> <DiagnosticsDataExtractorImpl> <createADRIncident> <incident 12 created with problem key "ADFC-02013 [ADFc]">
    <oracle.adf.view> <RichExceptionHandler> <_logUnhandledException> <ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase INVOKE_APPLICATION 5>
    oracle.adf.controller.activity.ActivityLogicException: ADFC-02013: Unable to get metadata for activity 'page2.jsf'.
      at oracle.adfinternal.controller.util.Utils.createAndLogActivityLogicException(Utils.java:234)
      at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:1133)
      at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:979)
      at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:551)
      at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:162)
      at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:119)
      at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:88)
      at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:50)
      at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
      at javax.faces.component.UICommand.broadcast(UICommand.java:315)
      at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)
      at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1259)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:1074)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:402)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:346)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:105)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:502)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:502)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:327)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:229)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      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:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:220)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3436)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3402)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2285)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2201)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1572)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:255)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)

    User, tell us your jdev version, please!
    What is your goal?
    What you have find had nothing to do with ADF. If you ent to learn adf then I recommend to work through find of the tutorials available on the jdev home page.
    If adf is not your goal, you might want to use Trinidad and ask your question in their forum.
    You might not like the declarative approach adf uses, but if you want to learn how to use adf, you have to understand how ADF works. Most can be done using java, but one you understand the framework you see the advantage.
    Timo

  • Get metadata link disabled

    Hello Everyone,
    I am trying to setup local IdP in my Eclipse. I am following documentation from this link here - SAP HANA Cloud Platform
    The problem is, as mentioned in the Point 2 in the documentation, I tried configuring a custom Local trust provider. I was able to generate key pair as well. But the "Get metadata" link is disabled. I thought I might need to save the configuration first to get this link enabled but nothing is happening when I try to save. Looks like Save button is also not saving the configuration. Am I missing anything here? Following the snapshot.
    Note: I tried doing same thing from my colleague's account. There is nothing deployed to his accout and it completely new accout. I was able to download meta data file from his account, but mine isn't working! This looks strange to me.
    What should I do to get this link working? is it disabled because I am on trial version?
    Best Regards,
    Ameya

    Hi Ameya,
    Please post this question under SAP HANA Cloud Platform Developer Center where the HANA Cloud Platform experts can support you.
    Regards,
    Ifat.

  • Get metadata from VM within vAppTemplate

    I am trying to obtain the MetaData currently created on a VM within a vAppTemplate in a vCloud Catalog.
    If the vApp is deployed to my cloud I can get the metadata without issues with the below code:
    $Sourcetemplate = Get-CIVM -name $SourceVM
    $DestinationTemplate = get-CIVM -name $DestinationVM
    $metadata = $sourceVM.ExtensionData.GetMetadata()
    $DestinationVM.ExtensionData.CreateMetaData($metadata)
    But I'd like to skip the deployment of the vApp just to get it's metadata. I know I can make a REST call to get the info but I'd like to stick solely within powershell. Anyone have any thoughts?
    Thanks
    Mav

    This is possible, but you'll need to dig into the actual template in the catalog. for examples:
    PowerCLI C:\> $temp = Get-Catalog "Brian Graf" | Get-CIVAppTemplate "vRB std w/PowerCLI 5.8 -BG"
    The following will display all the VM's within the template. there are several ways you can get metadata off those vms
    $temp.ExtensionData.Children.vm
    You can get the metadata off of a specific VM by specifying it's order
    $temp.ExtensionData.Children.vm[2].Getmetadata()
    Hope this helps.

  • Can database link get metadata location when import database objects ?

    I used database link to connect remote database . but i couldn't use it to get metadata location when i import database objects in OWB. OWB required me to create a new location which is diffirent from database link. I couldn't see a location, its type is database link. Anyone suggest me a answer ?
    Edited by: hungsao on Oct 17, 2012 9:28 PM

    Thank David Allen !
    i can't see locations, that have type being database link from location's list in metadata location but i can see them from data locations.
    When i add new location A ,its type isn't database link then i can see it ( location A) from metadata location, data locations
    And when i view data from table imported , i get this error : " Data location not specified or does not currently support data viewing. Check if this object's owning module is configured with a location that support data viewing"
    Please help me

  • Get metadata with Document ID

    Hello,
    Can we use Document ID and some SharePoint API to get information about document?
    I find solution - use SharePoint Fast search service, but this solution suggests that I will crawl content source before.
    Also i find DocumentId.FindUrlsById method , but I don't want to link to specific site collection and find document by ID in whole farm.
    Is it possible?

    I want to store metadata of the SharePoint SPListItem in another service(not SharePoint).
    Problem in GetListItem  service  - that this service related to site collection, not whole farm.
    I think use of the GetListItem in different connection point (different URL for different site collections)- this is solution 

  • Get metadata of the cube or query

    Hello all,
    is there a function module,give a query or infocube name,I can get the meta data of the
    cube or the query.
    regards
    kaushik

    Hi there,
    The best way to know the metadata from the cube or the query is to use the transaction rsa1->metadata repository.
    To see the metadata from the Cube with function module you can use the function module BAPI_CUBE_GETDETAIL.
    To see the contents of the query you can create a program to read the content of the query. I use a program from SDN to do that.
    Diogo.

  • Getting metadata into jpeg files from RAW

    I am transitioning to using RAW files more often. I add metadata, including GPS info, captions etc. Then invariably I need to get JPEGs to someone and have to go through the hassle of exporting the RAW as a JPEG with the metadata.
    Is there a way I can get that metadata into the sorta sidecar JPEG file on my Mac without having to go through the export process?
    I suppose I could designate the preference that on import the RAW and JPEG were treated as separate files; could I then just copy the metadata in? I haven't really worked with separate JPEG+RAW before. Would it happen automatically if I stacked them? Haven't really explored that.
    It just seems that every time I have decided to use the RAW invariably I need the JPEG and if I don't have LR available (say I'm working on someone else's computer but accessing my own files) I'm stuck.
    thanks,
    Rob
    LR5 Mac ML

    Is there a way I can get that metadata into the sorta sidecar JPEG file on my Mac without having to go through the export process?
    Not in Lightroom. Maybe with ExifTool.
    Then invariably I need to get JPEGs to someone and have to go through the hassle of exporting the RAW as a JPEG with the metadata.
    Exporting is a hassle? Maybe Lightroom isn't the right program for you.
    I suppose I could designate the preference that on import the RAW and JPEG were treated as separate files; could I then just copy the metadata in?
    Yes, you could copy and paste (which in Lightroom is called "sync metadata"), but you would have to do it pair by pair, and then save the metadata to the files, and you still wouldn't get sidecar files.
    Now, if you don't want the "sorta" sidecar files, if it will work for you to have the metadata written to the JPG files themselves (not sidecar files), then you can tell Lightroom to automatically write the metadata to the JPG files. But ... see my next comment
    It just seems that every time I have decided to use the RAW invariably I need the JPEG and if I don't have LR available (say I'm working on someone else's computer but accessing my own files) I'm stuck.
    Sorry, but exporting is really the only way to make edits and other metadata available to non-Lightroom programs. If you just want the metadata but not the edited photo, then have it written to the JPG files, but you won't be able to see your edits outside of Lightroom (or PSE or ACR or PS).

  • Error getting metadata from WS

    Hi to All
    I wrote the WS and want to use it in my Dynpro DC, then created DynamicWSproxy for my WS with name LoggingProxy and import model to Dynpro using this proxy alias as defaultMetadataDestination and defaultExecutionDestination.
    Everything was fine - application works and got the correct result. But today i  get message:
      'com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Cannot create instance of model class for model model class name 'FindLogAgents' as this model class name does not exist in runtime metadata. Probably runtime WSDL and design-time WSDL 'http://<url:port>/LoggingServiceXX/Config1?wsdl&mode=sap_wsdl' are inconsistent.'
    This url was used to import model, but as far as I understand it, there must be some mistake. URL from LoggingProxy alias should be used instead of given url from error message in runtime. Visual admin shows that LoggingProxy exists and point to correct url location, basic authentication method used.
    Testing WS through WSNavigator is ok.
    5 apps use this service and all of them gives such message (but differs in class name)
    I try to reimport model in dynpro but got no changes.
    What I'm doing wrong?
    What part of code or setting I must check?
    The very strange situation that I test my application during one week and there were no errors.
    P.S. this is my first time developing and using web service.

    Hi Alexander,
    A couple of things you could try, this is in most cases due to the fact that the WSDL URL used during design time & the one used during runtime are not the same:
    - Check that WebDynpro tracing is setup as per note 742674.
    - Try & re-create the error & then check the defaultTrace for more error info.
    - Maybe also try re-importing ALL 5 apps with the correct runtime WSDL URL. The problem sometimes is that maybe one of the 5 apps could be using an older/different WSDL URL & if that app is executed then it invalidates the metadata contents in the cache for the 4 others that may be using the correct WSDL URL.
    - You could also try by re-starting the J2EE engine to refresh the metadata contents in the cache as this metadata is persistent.
    - Do a comparison between the WSDL URLs for 'http:///LoggingServiceXX/Config1?wsdl&mode=sap_wsdl' & for defaultMetadataDestination or re-import the model using the URL for defaultMetadataDestination instead (if different).
    - One last thing you could try, add an additional parameter to your WSDL URL that won't affect getting the WSDL like a version e.g. 'http:///LoggingServiceXX/Config1?wsdl&mode=sap_wsdl&version=1.0' to create a new cache key for the WSDL URL. Use with caution & try it with one of the 5 apps first. Remember that if you initiate a call from the other 4 apps using the same service & on the older WSDL URL then the cache contents might become inconsistent again.
    Regards, Trevor

  • How to get Metadata column values using powershell(CSOM)

    Hi,
    I am trying to get list column values using Powershell (CSOM), but I am getting for Metata data columns.
    I am getting internal value as System.Collections.Generic.Dictionary`2[System.String,System.Object] 
    Can anybody let me know how to get the values for metadata columns?
    Any help would be greatly appreciate.
    Thank you.
    AA.

    Hi
    Go through the links. It'll help.
    SharePoint 2013 Code Tips – Setting a Managed Metadata Field with the Client Object Model(CSOM and JSOM)
    Indul Hassan
    Microsoft Community Contributor
    http://www.indulhassan.com
    You Snooze.. You Lose !!

  • Get metadata browser back in sync

    I changed the State/Province field for about 300 pictures a couple of days ago, and Lightroom hung trying to make the change. After about 15 minutes I killed the process and started again. Now, when I change the State/Province field, LR doesn't adjust the metadata browser to reflect the change. It looks like something has gotten stuck. Any suggestions on how to get the metadata browser back in sync?

    Hi Simonfish --
    I think the metadata worklist table is probably the one you found. If you make a change to the location fields of a few of the images, do at least the edited ones correct themselves in the metadata browser? If so, I'd recommend doing these in smaller batches for now. It may have just gotten jammed up for a bit and just needs to be prodded to try again (still a bug, but at least recoverable).
    If not, hopefully we can find the error that is preventing it from processing the worklist entries with a bit more investigation.
    I was able to get the app to hang for quite a while by doing a batch edit and will file this as a bug internally. I'll hopefully be able to repro the issue where the list entries get jammed as well. Thanks!
    Dan Tull
    Lightroom QE, Adobe Systems
    P.S. Regarding BogdanH's question:
    > I'm not sure if SQLite database has rollback feature.
    SQLite does have transaction support with rollback capability, so generally I haven't seen cases where simply killing the app causes database corruption, though it will certainly cause the contents of the last (incomplete) transaction to be lost since it rolls it back next time the DB is opened. One thing that SQLite doesn't have is enforcement of referential integrity constraints, but that's quite a bit less critical than risk of corruption of the database file structure itself.
    All that said, It is still strongly recommended that you make regular backups of the database file. It should be quite rare, but hardware failures and other extreme circumstances can certainly result in a corrupted database. The usual best practices for backups also apply, of course (keeping them on a separate machine/disk and regularly pushing copies to a different geographic location if possible).

  • How to get metadata option list values derived from a table/view using SOAP

    I am writing an ASP.NET application that replicates some of the features of the SCS search interface. I have looked at the GET_DOC_METADATA_INFO service and its SOAP output. It has a few missing pieces of information, like the option list values for a field if that fields values are derived from a separate table/view. Some of the fields I am dealing with also make use of Dynamic Control Lists (DCL). Is there a way to get the DCL info using SOAP? I did notice that the dOptionListKey element contains the name of the view from which the option list values will be derived. However, I cannot find a service that takes the view name as a parameter to return the option list values. I have looked in the services reference manual, but I have not had any luck finding what I am looking for.
    TIA
    - Tyson
    Message was edited by: Add the word 'get' to the subject.
    Tyson

    Hello,
    What error you are getting? You code seems to be ok. I have tested below code and working fine
    XPathNavigator rTable = MainDataSource.CreateNavigator();
    String ddlSectionSelectedValue = Convert.ToString(rTable.SelectSingleNode("/my:myFields/my:ddlSection", NamespaceManager).Value);
    One think you can check that keep dropdown value display name and id same.
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Getting metadata for RFCs using RFC SDK (with position of parameters)

    Hi!
    I'm currently using the RFC SDK Function "RfcGetFunctionInfoAsTable" to retrieve metadata for RFCs from SAP. What i see is that the "Position" field in the RFC_FIELDS_U structure contains arbitrary values, and so I am not able to determine what is the actual ordering of the parameters.
    What can I do to determine the exact ordering of the parameters of an RFC? (ordering as in - I want to obtain the parameters in the same order as they appear in SAP GUI).
    Thanks,
    Mustansir

    Hi,
    I think you can use the code similar to the one below...
    some of the things not covered in this are
    1. all types for which   CALL FUNCTION 'RFC_GET_NAMETAB' is not returning result, you can call CALL FUNCTION 'RFC_GET_STRUCTURE_DEFINITION' directly. I have not covered that in this code. Hope this is helps in resolving your issue.
    Also, the code is not optimized. So there is some scope for optimization of this code.
    REPORT  ZTEST_GET_SREUCTURE.
    DATA : PARAMS     type table of     RFC_FUNINT,
          ls_params like line of params.
    data: NAMETAB     type table of     X031L,
          ls_NAMETAB like line of NAMETAB.
    data: FIELDS  type table of RFC_FIELDS,
          ls_fields like line of fields.
    CALL FUNCTION 'RFC_GET_FUNCTION_INTERFACE'
      EXPORTING
        FUNCNAME                      = 'fm_test_fm'
      TABLES
        PARAMS                        = PARAMS
    IF SY-SUBRC <> 0.
    ENDIF.
    loop at params into ls_params.
      CALL FUNCTION 'RFC_GET_NAMETAB'
        EXPORTING
          TABNAME                     = LS_PARAMS-TABNAME
        TABLES
          NAMETAB                     = NAMETAB
      IF SY-SUBRC <> 0.
      ENDIF.
      loop at NAMETAB into ls_NAMETAB.
        CALL FUNCTION 'RFC_GET_STRUCTURE_DEFINITION'
      EXPORTING
        TABNAME                     = LS_NAMETAB-ROLLNAME
      TABLES
        FIELDS                      = FIELDS
        loop at fields into ls_fields.
          write: ls_fields-FIELDNAME.
        endloop.
      endloop.
      endloop.

  • File to IDOC Scenario Not able get Metadata (IDX2)

    Hi,
    I am doing File to IDOC scenario. I have done all configurations in IR and in ID. But it is throwing error like ATTRIBUTE_IDOC_METADATA-Basic type ZOIDOC does not exist.
    Where as my custom idoc is a not exit in metadata (IDX2). Also I am trying to reload same manually but I am not able to reload it. I have all required configuration in SAP R/3 side like partner profile.
    I would appreciate yours inputs.

    Hi Sunil,
    You are saying that you are unable to load the Metadata even manually.
    There could be a problem with the RFC destination defined within the IDX1 port. So first test the RFC destination using SM59.
    Also ensure that you have used the right naming conventions for the PORTS and RFC destinations as below:
    <SID>CL<ClientNo> e.g  DXXCL055 where DXX is the SID and 055 is the Client No.
    Rgds
    RC

Maybe you are looking for

  • Problem during Download of Dynamic Table Data

    Hello All, I have data in a dynamic internal table. When I'm trying to download the content onto my Presentation Server and Application Server, the data corresponding to the CURRENCY and QUANTITY fields are getting ROUNDED to the nearest whole number

  • Upgrade FI-CAX 600 to FI-CAX 617 - how to calculate stack.xml?

    Hi experts, I'm currently on the task to update our FI-CAX from 600 to 617 on our ERP 6.0 EhP7 Utilities system. In SAINT I get the message that this upgrade can only be done with a calculated STACK.XML file, but unfortunatly I'm not able to select F

  • Free PDF Reader for BB Storm!!!!

    Need to read pdf files on the storm. download mobipocket reader. this app works great and it's free. It has a desktop application that works similar to BB desktop manager. you browse for the pdf file (or e book!!!) converts it, then sends it your Sto

  • What to do when root element is a list?

    Hi, I've been looking at the PurchaseOrder examples and found them really useful and excellent for making a start at XML DB. However, Ive run into a stumbling block when trying to use my own data (but i've used the purchase order example below to mak

  • Flash Player and Failed Gmail Attachments

    I updated Flash player using the .msi file acquired from the "Flash Player Distribution" page pushed out via gpo, to around 150 workstations everything seemed to install correctly. But now all of our computers that have installed that file can no lon