Getting metadata for FMs where data structure elements also have structure

Hi,
I'm sorry if this is a double post, but I added this initially to a thread that was already set to answered, and I'm not sure of the protocol - if there will be any further responses if that is the case, so I'm opening this new threas as well.
I've been using RFC_GET_FUNCTION_INTERFACE and RFC_GET_STRUCTURE_DEFINITION successfully for a number of years, but now I have a problem. Some FMs, like /POSDW/CREATE_TRANSACTIONS_EXT, have parameters that have structures, whose elements also have structure. But RFC_GET_STRUCTURE_DEFINITION does not give a handle to get the structure of a returned data element.
Does anybody know how I can work around this?

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.

Similar Messages

  • 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

  • I get charged for $9.99 each month and i have no idea what that is. Whatever is it product or membership could you cancel it please? Thank you!

    I get charged for $9.99 each month and i have no idea what that is. It has been a long time since I used abode products so I am really not sure it is a product I purchased before. But I would like to cancel whatever it is on my account and stop the payment please. Thank you~

    This is an open forum, not Adobe support... You need Adobe support to cancel a subscription
    -cancel http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -or http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Can i sync my mac pro with my mac book?  i mainly want to do this for iTunes and iPhoto?  I also have an iPhone and an iPad.

    can i sync my mac pro with my mac book?  i mainly want to do this for iTunes and iPhoto?  I also have an iPad and an iPhone.

    Do you have a local network setup either wired or wireless? If so, then have both computers connected to the network. Enable File Sharing on both computers in Sharing preferences. Select the startup drive on each computer. Press COMMAND-I to open the Get Info window and check the box labeled, Shared Folder.
    You can now keep both computers in sync by using a third-party backup/sync utility that will work with a network setup such as:
    Data Backup
    Deja Vu
    Silver Keeper
    Retrospect
    Super Flexible File Synchronizer
    Synchronize Pro! X
    Synk Pro
    Synk Standard
    Tri-Backup
    Others may be found at VersionTracker or MacUpdate.
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files.

  • I am confused about Icloud. I have a 5 year old Macbook, a 2 year old macbook and a 5 year old mac mini. What exactly do I need to do to get all this connected via Icloud. I also have an Iphone 3G. Help please!

    I am confused about Icloud. I have a 5 year old Macbook, a 2 year old macbook and a 5 year old mac mini. What exactly do I need to do to get all this connected via Icloud. I also have an Iphone 3G. Help please! Also, I still don't understand exactly what the benefits are. At the moment it seems a lot of hassle to change a system that's been working perfectly well and that I'm very happy with. I'm not at all sure whether the mac mini (1.66 GHz INtel Core Duo) can be brought up to the relevant spec to run ICloud.  Any thoughts?

    There are two aspects to iCloud.  One is simply getting an account, or migrating a mobileme account to iCloud.  The second part is using the various features of iCloud to sync contacts, calendars, use music match or photo sharing, and store iWorks documents.
    First to get an iCloud account:
    If you have a mobileme account, you can migrate by simply logging onto www.icloud.com (ignore any references to Lion and just click through to complete the migration).  If you have OS X Lion or an iOS 5 mobile device, you can create an iCloud account on that device using any valid AppleID.
    Once you have an account, you can use JUST the mail account if you wishi - it is a standard IMAP account so you would set it up like any other IMAP email account you have, in whatever client program you use to read email.
    To use the OTHER feautes of iCloud, your computers will have to be running OS X Lion (10.7).  Your iPhone 3G will never be able to use iCloud as it cannot run iOS 5 (you need a min. of an iPhone 3GS to run iOS 5).
    The requirements for OS X Lion are here - http://www.apple.com/macosx/specs.html  You need a min. of a Core 2 duo processor so you mini is not capable of running Lion.
    So, in your case, the single reasons for iCloud would be if you have a mobileme account, then use the online www.icloud.com to migrate your account so you do not lose your @me.com email address.  You can use iCloud email (without using any other iCloud features) by setting it up as IMAP mail with these settings - http://support.apple.com/kb/HT4864
    If you want an iCloud account and do NOT already have a mobileme account, you will need to upgrade one machine at least to Lion in order to be able to create an iCloud account.

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

  • How can I reach a structure-element instead of structure(value of other variable)

    Hi gurus,
    Sorry If my question is not really clear.
    Now I give result to a structure element.(green)
    But I'd like to replace this with the red.
    TYPES: BEGIN OF structure,
                  x1          TYPE i,
                  x2          TYPE i,
                  x3          TYPE i,
                  x4          TYPE i ,
    END OF structure.
    DATA: s  TYPE structure,
         name TYPE char2.
    name = 'X1'.
    s-x1 = 0.
    s-(name) = 0.
    How can I do this? With filed symbol?
    Thanks,
    Mark

    Hi Mark
    Please check this syntax 'ASSIGN COMPONENT <comp> OF STRUCTURE <s> TO <FS>.'
    regards,
    Archer

  • CFB2 unable to access Services Browser (unable to get metadata for CFC)

    Hello --
    I'm a novice with CF9.
    == Scenario
    - Mac OS X v10.6.8
    - ColdFusion v9 [updated to latest 9.0.1]
    - JRun with integrated WebServer [listen on 8500 port]
    - Developer mode
    - ColdFusion Builder v2.0.0 Build 277745 [standalone installation]
    - Created a simple local CF9 server [localhost, local, 8500, ServerHome /Applications/ColdFusion9, ServerRoot /Applications/ColdFusion9/wwwroot]
    - Enabled Debugger Mode in ColdFusion Administrator, test debugger ok, no problem
    - RDS Viewer ok
    - I'm able to open localhost:8500/CFIDE/administration without any problem
    - I'm able to browsing CFIDE WebServer
    == Problem
    Within CFB2, when I try to open my local CF9 server to inspect RDS Server, I'm unable to view/introspect CFC Components.
    I receive an error message "Unable to get meta data for cfc".
    - In effect, trying to open cfcexplorer.cfc in componenutils path, I receive a 404 error
    == Server Details
    Server Details
    Server Product
    ColdFusion
    Version
    9,0,1,274733
    Edition
    Developer
    Serial Number
    Developer
    Operating System
    Mac OS X
    OS Version
    10.6.8
    Adobe Driver Version
    4.0 (Build 0005)
    JVM Details
    Java Version
    1.6.0_24
    Java Vendor
    Apple Inc.
    Java Vendor URL
    http://www.apple.com/
    Java Home
    /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
    Java File Encoding
    MacRoman
    Java Default Locale
    it_IT
    File Separator
    Path Separator
    Line Separator
    Chr(10)
    User Name
    gobbo67
    User Home
    /Users/gobbo67
    User Dir
    /Applications/Adobe ColdFusion Builder 2/CFBuilder.app/Contents/MacOS
    Java VM Specification Version
    1.0
    Java VM Specification Vendor
    Sun Microsystems Inc.
    Java VM Specification Name
    Java Virtual Machine Specification
    Java VM Version
    19.1-b02-334
    Java VM Vendor
    Apple Inc.
    Java VM Name
    Java HotSpot(TM) 64-Bit Server VM
    Java Specification Version
    1.6
    Java Specification Vendor
    Sun Microsystems Inc.
    Java Specification Name
    Java Platform API Specification
    Java Class Version
    50.0
    == Extract from application.log
    25-giu-2011
    22.21
    Error
    web-29
    File not found: /CFIDE/componentutils/cfcexplorer.cfc The specific  sequence of files included or processed is:  /Applications/ColdFusion9/wwwroot/CFIDE/componentutils/cfcexplorer.cfc''
    25-giu-2011
    22.21
    Error
    web-29
    Exception thrown by error-handling template:
    25-giu-2011
    22.21
    Error
    web-29
    File not found:  /Applications/ColdFusion9/wwwroot/WEB-INF/exception/coldfusion/runtime/TemplateNotFoundEx ception.cfm  The specific sequence of files included or processed is:  /Applications/ColdFusion9/wwwroot/WEB-INF/exception/coldfusion/runtime/TemplateNotFoundEx ception.cfm''
    == Extract from exception.log
    "Error","web-29","06/25/11","22:21:10",,"File not found: /Applications/ColdFusion9/wwwroot/WEB-INF/exception/coldfusion/runtime/TemplateNotFoundEx ception.cfm The specific sequence of files included or processed is: /Applications/ColdFusion9/wwwroot/WEB-INF/exception/coldfusion/runtime/TemplateNotFoundEx ception.cfm'' "
    coldfusion.runtime.TemplateNotFoundException: File not found: /Applications/ColdFusion9/wwwroot/WEB-INF/exception/coldfusion/runtime/TemplateNotFoundEx ception.cfm
    My problem is probably similar to http://forums.adobe.com/thread/503319
    Any suggest is appreciate.
    Alex/

    Hello --
    after spending many hours I'm believe that probably my concern arent related to CFBuilder [or not only] but also with CF9 installation on Mac OS X.
    Attached you can find  screen-shot about second page of Server Setup. Please note that I have  configured a *local* server (not remote) with a developer environment.
    Additional  info; after checking in detail, I have noted that integrated WebServer  (that I'm believe is JRun based) listen on 8500 is unable to open any  .cfm page.
    Under a directory created in WebRoot [Applications\ColdFusion9\wwwroot\Education] I have created a dumb index.cfm page, but that isnt executed.
    But whem I go in CFIDE\administration all is working nicely.
    Where can I check about integrated WebServer configuration, handler, etc?
    == Error from Local CF9 server.log
    27/06 09:02:01 error Requested resource 'File not found: /Education/index.cfm' (File%20not%20found%3a%20%2fEducation%2findex.cfm) not found
    java.lang.IllegalStateException
          at jrun.servlet.JRunResponse.getWriter(JRunResponse.java:205)
          at jrun.servlet.JRunResponse.sendError(JRunResponse.java:597)
          at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:316)
          at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
          at jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
          at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
          at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
          at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
          at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    == About starting server.log
    "Information","main","06/27/11","08:49:04",,"Starting logging..."
    "Information","main","06/27/11","08:49:04",,"Starting license..."
    "Information","main","06/27/11","08:49:04",,"Invalid ColdFusion 9 license."
    "Information","main","06/27/11","08:49:04",,"Invalid ColdFusion 9 license."
    "Information","main","06/27/11","08:49:04",,"Developer Edition enabled"
    "Information","main","06/27/11","08:49:04",,"Starting crypto..."
    "Information","main","06/27/11","08:49:04",,"Installed  JSafe JCE provider: Version 3.6 RSA Security Inc. Crypto-J JCE Security  Provider (implements RSA, DSA, Diffie-Hellman, AES, DES, Triple DES,  DESX, RC2, RC4, RC5, PBE, MD2, MD5, RIPEMD160, SHA1, SHA224, SHA256,  SHA384, SHA512, HMAC-MD5, HMAC-RIPEMD160, HMAC-SHA1, HMAC-SHA224,  HMAC-SHA256, HMAC-SHA384, HMAC-SHA512)"
    "Information","main","06/27/11","08:49:04",,"Starting security..."
    "Information","main","06/27/11","08:49:04",,"Starting scheduler..."
    "Information","main","06/27/11","08:49:04",,"Starting WatchService..."
    "Information","main","06/27/11","08:49:04",,"Starting debugging..."
    "Information","main","06/27/11","08:49:04",,"Starting sql..."
    "Information","main","06/27/11","08:49:05",,"Pool Manager Started"
    "Information","main","06/27/11","08:49:05",,"Starting mail..."
    "Information","main","06/27/11","08:49:05",,"Starting runtime..."
    "Information","main","06/27/11","08:49:05",,"CORBA Configuration not enabled"
    "Information","main","06/27/11","08:49:05",,"Starting cron..."
    "Information","main","06/27/11","08:49:05",,"Starting registry..."
    "Information","main","06/27/11","08:49:05",,"Starting client..."
    "Information","main","06/27/11","08:49:06",,"Starting xmlrpc..."
    "Information","main","06/27/11","08:49:06",,"Starting graphing..."
    "Information","main","06/27/11","08:49:07",,"Starting verity..."
    "Information","main","06/27/11","08:49:07",,"Starting solr..."
    "Information","main","06/27/11","08:49:07",,"Starting archive..."
    "Information","main","06/27/11","08:49:07",,"Starting document..."
    "Information","main","06/27/11","08:49:07",,"Starting eventgateway..."
    "Information","main","06/27/11","08:49:07",,"Starting FlexAssembler..."
    "Information","main","06/27/11","08:49:07",,"Starting .NET..."
    "Information","main","06/27/11","08:49:07",,"Starting Monitoring..."
    "Information","main","06/27/11","08:49:07",,"ColdFusion started"
    27/06 08:49:07 user ColdFusionStartUpServlet: ColdFusion: application services are now available
    27/06 08:49:07 user CFMxmlServlet: init
    27/06 08:49:07 user CFMxmlServlet: Macromedia Flex Build: 87315.134646
    27/06 08:49:07 INFO Macromedia Flex Build: 87315.134646
    27/06 08:49:08 user CFSwfServlet: init
    27/06 08:49:08 user CFCServlet: init
    27/06 08:49:09 user FlashGateway: init
    27/06 08:49:09 user MessageBrokerServlet: init
    27/06 08:49:09 user CFFormGateway: init
    27/06 08:49:09 user CFInternalServlet: init
    27/06 08:49:09 user WSRPProducer: init
    27/06 08:49:10 user ServerCFCServlet: init
    Server coldfusion ready (startup time: 10 seconds)
    06/27 08:49:20 [Thread-15] WARN  PDFM_W19004: The system font "/Library/Fonts/Baskerville.ttc" could not be loaded.
    com.adobe.fontengine.font.InvalidFontException: Data could not be copied
          at com.adobe.fontengine.font.opentype.FontFactory$TableToLoad.load(Unknown Source)
          at com.adobe.fontengine.font.opentype.FontFactory$FontToLoad.load(Unknown Source)
          at com.adobe.fontengine.font.opentype.FontFactory$TTCToLoad.load(Unknown Source)
          at com.adobe.fontengine.font.opentype.FontFactory.load(Unknown Source)
          at com.adobe.fontengine.font.opentype.FontFactory.load(Unknown Source)
          at com.adobe.fontengine.fontmanagement.FontLoader.loadFont(Unknown Source)
          at com.adobe.fontengine.fontmanagement.FontLoader.load(Unknown Source)
          at com.adobe.internal.pdfm.util.FontSetBuilder.loadFontsPath(FontSetBuilder.java:385)
          at com.adobe.internal.pdfm.util.FontSetBuilder.loadFontsPath(FontSetBuilder.java:472)
          at com.adobe.internal.pdfm.util.FontSetBuilder.initFonts(FontSetBuilder.java:175)
          at com.adobe.internal.ddxm.Executive.initFonts(Executive.java:573)
          at coldfusion.document.DocumentServiceImpl.callAssemblerInitFonts(DocumentServiceImpl.java:1 249)
          at coldfusion.document.DocumentServiceImpl.initializeDocumentService(DocumentServiceImpl.jav a:230)
          at coldfusion.document.DocumentServiceImpl.access$000(DocumentServiceImpl.java:52)
          at coldfusion.document.DocumentServiceImpl$1.run(DocumentServiceImpl.java:180)
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 09:00:52 user FileServlet: init

  • PLEASE HELP!! Getting charged for bogus unused data

    someone please tell me why that every morning when i leave for work, the instant i walk out my door onto data off mY WiFi i get hit with ungodly data usage?? i mean for example one morning was 80% of a GIG used. now i remind u that i am sleeping all night and on wifi so how does this happen? also exactly 6 hours later i get hit with another chunk of data usage..
    This happens every day i leave the house for work  530am and exactly 6 hours later at 1130.. of course customer service over the phone cant help even tho they agree it doesnt look right and at the store they dont know.. 
    I had the phone reset to factory settings and now again a few days later its starting again.. someone, anyone  if you know whats up please help!!

    In your settings turn off update over cellular and chane it to update only on wifi. Additionally turn off automatic updates to your phone apps, they update on cellular unless you also change the settings to update over wifi only.
    when at home and on your home wifi, turn off cellular data, and turn off cellular data roaming this should force the device to not use cellular data.
    You need only turn on "cellular data" after you leave from home.
    Now since verizon went to metered or tiered data use they have been raking in the cash in overage fees. I would not trust their accounting methods. I firmly believe this is a scam on the customers. Read the threads on this forum where people who never used more than 1GB or 2GB are now seeing huge data overages. It is very questionable in my opinion.
    Good luck

  • Setups for Directory where data files sit, in Inbound Transaction.

    Hi,
    My customer is implementing Inbound Po transaction using e-commerce gateway for Order Import in R12.
    Could you let me know what setups i need to ask DBA's for creating inbound directory.
    I just found one required setup online.
    1) DBA's must define the UTL_FILE_DIR parameter in the INIT.ORA file.
    Thanks.

    I can see why no consensus was reached.  I've now looked at that link, where some recommend a place in /usr, but the FSH info that I found says:
    /usr is the second major section of the filesystem. /usr is shareable, read-only data
    So that doesn't seem right.
    Others recommend /var, but the FSH info says:
    /var contains variable data files. This includes spool directories and files, administrative and logging data, and transient and temporary files.
    Nope, not there either.
    Final suggestion there is /home.  The files don't need to belong to a particular user, as set forth previously, and the FHS helps with
    /home is a fairly standard concept, but it is clearly a site-specific filesystem. The setup will differ from host to host. Therefore, no program should rely on this location.
    For an OS that serves gazillions of files to as many users, it just strikes me as odd that there isn't a standard here.  That being said, individuality is often a good thing.
    Thank you for your suggestions, both of which make a lot of sense.  I am leaning toward /home/share.

  • Getting error for Analytic Views data preview on HANA Studio

    Hello
    I have multiple Analytic Views and when trying for data preview, those all are throwing error as "Object Not active or broken" (attached below). I have activated these objects 5-6 times and got successful message but unable to data preview.
    Other persons in team and from different machine using my user id can run data preview successfully, so something problem with my PC. Already I have uninstalled - restart PC and reinstall 3 times for HANA Studio and HANA Client software but problem not solved. During re-installation, I found its getting my previous settings like system details etc. already populated. Even I installed in different folders, however problem not solved and system details automatically received on next start.
    Please guide me to solve this problem
    Below error coming while trying for data preview.
    Thanks
    Suman

    Hi Suman,
    Can you change your system workspace and also the secure storage.
    It can be done via a parameter in the shortcut of studio in the Target field after the exe write
    -data "<WorkspaceLocation>" -eclipse.keyring "<AnyLocation>"
    While usually this is a server error, it should be studio specific.
    Nevertheless, do the above settings and let me know your results.
    Regards,
    Anjali.

  • Parties Invovled getting shuffled for soem users in campaign element

    Hi Experts,
    I am facing a very starnge issue here.Request you to kindly help me out.
    When i am trying to create a new camapaign element , partner functions employee responsible and created by does not get copied correctly. Only after the first refresh of the screen , it appears correctly in the parties involved assignment block.
    But after the next refresh of screen,it gets shuffled and if i try to enter new pfcts into the assignment block, it automatically replaces the pfcts to some other in the drop down(most cases to the first one from the drop down list ).
    Please help me  out if you have any idea why is this happening.
    This behavior does not happen for all user ids, but for some. For some,it is working fine in the same system,as expected with no issues.
    So i suspected authorization issues (role/profiles?) , but even after creating a new user id as a copy of the working user id, the new ones does not work .
    Please help ...appreciate your help...
    Thanks In advance
    Swapna.

    SAP note.

  • Vocabulary not getting executed for EDI 855 data

    Hello,
    I am trying to pull data from EDI file using vocabulary. But it's not returning any value. 
    xpath selector - 
    /*[local-name()='X12_00401_855' and namespace-uri()='http://schemas.microsoft.com/BizTalk/EDI/X12/2006']/*[local-name()='N1Loop1' and namespace-uri()='http://schemas.microsoft.com/BizTalk/EDI/X12/2006']/*[local-name()='N1' and namespace-uri()='http://schemas.microsoft.com/BizTalk/EDI/X12/2006'][*[local-name()='N101'
    and namespace-uri()='']/text()='ST']
    xpath field -
    *[local-name()='N104' and namespace-uri()='']/text()
    Can anybody help me on this ? 

    No error message. But after I realized that I am not executing instruction loader policy before the rule that uses the vocabulary, then I created instruction loader policy to set the document type for 855 schema.
    But that policy is throwing an exception now. "An exception occurred while executing the policy"

  • Get Months for the given date ranges on the Selection Screen

    Hello All,
    If I give Begin Date (Begda) and End Date (Endda) on the Selection Screen, I need to get all the months given in the selection screen ranges.
    Could any one please suggest me how to proceed further on this.
    Thanks in Advance
    Regards
    Yathish

    HI,
    Check this FM
    HR_99S_INTERVAL_BETWEEN_DATES  ---> this can help you it will return the month in this table MONTH_TAB
    HR_99S_MONTHS_BETWEEN_DATES

  • I'm going to get the new iPhone 5S soon. I also have an iPad. I'm wondering is it best for each device to have the same Apple ID or should each device have a different ID? Pros? Cons? It seems like there is a conflict using iCloud for backup between the 2

    Basically wondering if multiple devices should share the same ID or each to get their own. Such as, how it affects Facetime, backups to iCloud, etc. Thanks. Sorry for the long title.

    Hi matrixxzero,
    In my opinion, you want to use the same Apple/iCloud/iTunes ID on both devices. That is exactly what iCloud is designed for - to keep devices with the same Apple ID in sync. Your Mail, Contacts, Calendars, Reminders, Safari Bookmarks, Notes, Photo Stream photos, and Documents will all be kept in sync if you have those options set up on both devices under Settings>iCloud.
    Unless you have some reason to not want to have the same information on both devices, then going with a single ID on both is the way to go.
    Cheers,
    GB

Maybe you are looking for

  • Is there any way to schedule an Internet connection reset?

    Hello. I live in a three-story house and have a Wi-Fi network set up using a Time Capsule and a couple of AirPort Express units. The Time Capsule, which is connected to the modem and is the initiator of the network, is on the second floor and there's

  • N8: How do I adjust volume on message and e-mail t...

    I like my Nokia N8 but it I think the volume is very high when I get a new message or email.  I have tried to edit my profile but I can only see an option for changing the ring tone volume. Isn't it possible to change the volume on message, email and

  • Can I use iPhone 5 in Bangladesh?

    All over the Bangladesh, only sim cards are available for communications but i've heard that iPhone 5 does not work in sim cards. therefore I can not use it in Bangladesh. I want to get a clear idea about this.

  • Convert path line to polyline?

    Hello, anyone here know it's it's possible to convert a path into a polyline? I need to save SVG (but polyline, not path) Many thanks! r.

  • Downloaded Seeded VO problem

    Dear Friends, i have downloaded seeded VO and trying to add Bc4j component. its not getting added. after adding it is showing only .XML file. i am not able to see sql icon VO. i can able to see other VOs with sql icons and .XML. i hope you guys clear