Get an error when creating MV

/*==============================================================*/
/* View: VW_DOC_GEN_PKG */
/*==============================================================*/
create materialized view log on DOC_GEN_DOC TABLESPACE DATADYNM;
create materialized view log on DOC_GEN_REQ TABLESPACE DATADYNM;
create materialized view log on PKG_DOC TABLESPACE DATADYNM;
create materialized view log on PKG_REQ TABLESPACE DATADYNM;
CREATE MATERIALIZED VIEW VW_DOC_GEN_PKG
TABLESPACE DATADYNM storage ( initial 128K )
BUILD IMMEDIATE
REFRESH FAST ON COMMIT
ENABLE QUERY REWRITE
AS
SELECT DOC_GEN_DOC.DOC_GEN_REQ_ID,
DOC_GEN_DOC.UIL,
DOC_GEN_DOC.DOC_GEN_DOC_ID,
DOC_GEN_DOC.DOC_GEN_DOC_DTTM,
DOC_GEN_DOC.DOC_GEN_DOC_SEQ,
DOC_GEN_DOC.FRM_VER_TXT,
DOC_GEN_DOC.FRM_NUM,
DOC_GEN_DOC.FRM_NM,
DOC_GEN_REQ.PKG_NM,
DOC_GEN_REQ.DOC_GEN_DTTM,
DOC.BATCH_NM
FROM DOC_GEN_REQ
INNER JOIN DOC_GEN_DOC
ON (DOC_GEN_DOC.DOC_GEN_REQ_ID = DOC_GEN_REQ.DOC_GEN_REQ_ID)
INNER JOIN DOC
ON (DOC_GEN_DOC.UIL = DOC.UIL)
WHERE (DOC.DLTD_IND = 'N')
UNION ALL
SELECT PKG_DOC.PKG_REQ_ID DOC_GEN_REQ_ID,
PKG_DOC.UIL,
PKG_DOC.PKG_DOC_ID DOC_GEN_DOC_ID,
PKG_DOC.PKG_DOC_DTTM DOC_GEN_DOC_DTTM,
PKG_DOC.PKG_DOC_SEQ_NUM DOC_GEN_DOC_SEQ,
'' FRM_VER_TXT,
NULL FRM_NUM,
'' FRM_NM,
PKG_REQ.PKG_NM,
PKG_REQ.PKG_REQ_DTTM DOC_GEN_DTTM,
DOC.BATCH_NM
FROM PKG_REQ
INNER JOIN PKG_DOC
ON (PKG_DOC.PKG_REQ_ID = PKG_REQ.PKG_REQ_ID)
INNER JOIN DOC
ON (PKG_DOC.UIL = DOC.UIL)
WHERE (DOC.DLTD_IND = 'N');
ORA-12054: cannot set the ON COMMIT refresh attribute for the materialized view
what is wrong?
thank you

I checkec docs, didn't find anything yet...I'm not convinced you ever tried to do so.
http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_6002.htm#SQLRF01302
ON COMMIT Clause
Specify ON COMMIT to indicate that a fast refresh is to occur whenever the database commits a transaction that operates on a master table of the materialized view. This clause may increase the time taken to complete the commit, because the database performs the refresh operation as part of the commit process.
Restrictions on Refreshing ON COMMIT
    *      This clause is not supported for materialized views containing object types.

Similar Messages

  • Getting the Error when creating the WSD(Web Service Defination)

    Hello,
    When I tried to create the WSD(Web Service Defination) through the Wizard or function module I am getting the error "Error during activation" and again it is giving the error "internal error ACTIVATE in WEBSERVICE Wizard;".
    What will be the probable cause of this error.
    Is I have to change some configuration
    Please Suggest.
    Thanks
    Vineet

    I have the same problem - error returned is
    Error during activation
    Message no. WS_TOOL085
    but no further information is provided
    But the Virtual Interface in the package does activate with no problem - so this is WSD specific!
    Some help would be appreciated...

  • Getting an error when creating SyncBO's

    Hi All,
    When I am trying create BAPI Wrappers using MEREP_SBUILDER getting the error of ‘No Tables parameter referring to item structure exists in Create BAPI Wrapper’.
    My back end system connected with RFC.
    Since standard BAPI’s MDK_INVENTORY_CREATE, MDK_INVENTORY_MODIFY and MDK_INVENTORY_DELTE are not remote enabled so converted into ZMDK_INVENTORY_CREATE, ZMDK_INVENTORY_MODIFY and ZMDK_INVENTORY_DELTE.
    I have taken following precautions.
    1.     Processing type of a function module must be remote-enabled module.
    2.     Parameter named “RETURN” where the type is BAPIRET2 structure needs to be defined as either Export or Tables parameter
    3.     “Commit Work and Wait” needs to be executed in the update BAPI wrappers (Create/Change/Delete
    Is there any thing I am missing while converting standard BAPI’s into BAPI wrappers?
    Thanks for your help,
    Ameer Baba.

    Hi Karthick,
    This is the source code of the BAPI's.
    FUNCTION MDK_INVENTORY_GETLIST.
    ""Lokale Schnittstelle:
    *"  EXPORTING
    *"     VALUE(RETURN) TYPE  BAPIRET2
    *"  TABLES
    *"      ET_INVENTORY STRUCTURE  MDK_INVENTORY
    - All texts only in English, no extra text table
      DATA:
        ls_return      LIKE bapireturn1.
      CLEAR return.
      SELECT COUNT(*) FROM mdk_inventory.
      IF sy-subrc <> 0.
      - No data in table ZMDK_INVENTORY
        call function 'BALW_BAPIRETURN_GET1'
          exporting
            type       = 'I'
            cl         = 'MDK_EXAMPLES'
            number     = '001'
          importing
            bapireturn =  ls_return.
        MOVE-CORRESPONDING ls_return TO return.
        EXIT.
      ENDIF.
      SELECT * FROM mdk_inventory INTO TABLE et_inventory.
    ENDFUNCTION.
    FUNCTION MDK_INVENTORY_GETDETAIL.
    ""Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(IV_PRODUCTID) TYPE  MDK_INVENTORY-PRODUCTID
    *"  EXPORTING
    *"     VALUE(ES_INVENTORY) TYPE  MDK_INVENTORY
    *"     VALUE(RETURN) TYPE  BAPIRET2
      DATA: ls_return type bapireturn1.
      CLEAR return.
      SELECT SINGLE *  FROM      mdk_inventory
                       INTO      es_inventory
                       WHERE     productid = iv_productid.
      IF sy-subrc <> 0.
      - Productid not found (Productid = &)
        ls_return-message_v1 = iv_productid.
        call function 'BALW_BAPIRETURN_GET1'
          EXPORTING
            type       = 'E'
            cl         = 'MDK_EXAMPLES'
            number     = '002'
            par1       = ls_return-message_v1
          IMPORTING
            bapireturn = ls_return.
        MOVE-CORRESPONDING ls_return TO return.
        EXIT.
      ENDIF.
    ENDFUNCTION.
    FUNCTION ZMDK_INVENTORY_CREATE.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(IS_INVENTORY) TYPE  MDK_INVENTORY
    *"  EXPORTING
    *"     VALUE(EV_PRODUCTID) TYPE  MDK_INVENTORY-PRODUCTID
    *"     VALUE(RETURN) TYPE  BAPIRET2
        DATA: ls_return    TYPE bapireturn1,
            lv_msgvar      type SYMSGV.
      CLEAR return.
    Assumption: productid not created yet
      is_inventory-createdate = sy-datum.
      is_inventory-createuser = sy-uname.
      is_inventory-createtime = sy-uzeit.
      is_inventory-changedate = sy-datum.
      is_inventory-changeuser = sy-uname.
      is_inventory-changetime = sy-uzeit.
      INSERT mdk_inventory FROM is_inventory.
      IF sy-subrc <> 0.
      - DB Action failed (Error code = <sy-subrc>)
        move sy-subrc to lv_msgvar.
        CALL FUNCTION 'BALW_BAPIRETURN_GET1'
          EXPORTING
            type       = 'E'
            cl         = 'MDK_EXAMPLES'
            number     = '002'
            par1       = lv_msgvar
          IMPORTING
            bapireturn = ls_return.
        MOVE-CORRESPONDING ls_return TO return.
        EXIT.
      ENDIF.
      COMMIT WORK and wAIT.
    - Product &1 created successfully
      ls_return-message_v1 = is_inventory-productid.
      ev_productid         = is_inventory-productid.
      CALL FUNCTION 'BALW_BAPIRETURN_GET1'
        EXPORTING
          type       = 'S'
          cl         = 'MDK_EXAMPLES'
          number     = '003'
          par1       = ls_return-message_v1
        IMPORTING
          bapireturn = ls_return.
      MOVE-CORRESPONDING ls_return TO return.
    ENDFUNCTION.
    Best Regards,
    Ameer Baba.

  • Getting internal error when creating new FPMiView

    Hello,
    When I try to create new FPMiView through the Self-Service Administrator role I am getting this error:
    "An internal error occured: String index out of range: -4"
    I don't see anything in the log files and I tried several names and IDs yet keep getting this error.
    Any ideas...?
    Rgds,
    Roy

    Solution:
    Need to set the parameter Use_CustomerExit_ParameterProvider of the portal service com.sap.portal.appintegrator to TRUE and then restart it.
    Roy

  • Why do I get an error when creating a custom shape

    I have a student version of Photoshop CC  and it seemed to be working just fine until I had to create a custom shape. When I try and create a custom shape I receive the following error.
    Did something go wrong during installation or am I missing an addon??

    Before you draw the shape with the Pen Tool set to Paths, ensure that you have the Path Operations set to either Combine or Exclude
    Looks like yours is set to Subtract, which will produce a program error when trying to define a custom shape.

  • Get an error when create a new map cache instance

    The follow is my oc4j console output.
    le.beans.newMCI] createMapCache xml request:
    <?xml version="1.0" standalone="yes"?>
    <map_cache_admin_request>
    <create_cache_instance data_source="mvdemo">
    <cache_instance
    name="demo_map"
    image_format="PNG">
    <internal_map_source base_map="demo_map"/>
    <cache_storage root_path="/scratch/mapcache" />
    <coordinate_system
    srid="8307"
    minX="-180" maxX="180" minY="-90" maxY="90"/>
    <tile_image width="250" height="250" />
    <zoom_levels levels="10" min_scale="5000" max_scale="10000000">
    </zoom_levels>
    </cache_instance>
    </create_cache_instance>
    </map_cache_admin_request>
    06/04/02 23:24:56 Sun Apr 02 23:24:56 CST 2006 ERROR [CacheInstanceConfig] Inval
    id cache root directory:/scratch/mapcache\. Cache root directory will be set to
    default root directory.
    06/04/02 23:24:56 ERROR [oracle.lbs.mapcache.config.CacheServerConfig] java.sql.
    SQLException: ORA-01461: can bind a LONG value only for insert into a LONG colum
    n
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java
    :138)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.
    java:185)
    at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedS
    tatement.java:633)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStateme
    nt.java:1161)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePrep
    aredStatement.java:3001)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStat
    ement.java:3093)
    at oracle.lbs.mapcache.config.CacheServerConfig.addDBCacheInstanceConfig
    (CacheServerConfig.java:715)
    at oracle.lbs.mapcache.config.CacheServerConfig.addCacheInstanceConfig(C
    acheServerConfig.java:273)
    at oracle.lbs.mapcache.MapCacheServer.createCacheInstance(MapCacheServer
    .java:260)
    at oracle.mapviewer.webconsole.beans.NewMapCache.createInternalNewMapCac
    he(NewMapCache.java:491)
    at oracle.mapviewer.webconsole.beans.NewMapCache.createNewMCI(NewMapCach
    e.java:442)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
    at com.sun.faces.application.ActionListenerImpl.processAction(ActionList
    enerImpl.java:72)
    at oracle.adf.view.faces.component.UIXCommand.broadcast(UIXCommand.java:
    211)
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:3
    81)
    at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicat
    ionPhase.java:75)
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterC
    hain.java:64)
    at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilt
    er(AdfFacesFilterImpl.java:367)
    at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl
    (AdfFacesFilterImpl.java:336)
    at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfF
    acesFilterImpl.java:196)
    at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.j
    ava:87)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
    stDispatcher.java:629)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
    vletRequestDispatcher.java:376)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequ
    estHandler.java:870)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpReques
    tHandler.java:451)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpReque
    stHandler.java:218)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
    va:119)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
    va:112)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSo
    cketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(Server
    SocketAcceptHandler.java:230)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocket
    AcceptHandler.java:33)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(
    ServerSocketAcceptHandler.java:831)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:534)

    This error is caused by a NLS related JDBC bug. To fix it, you need to upgrade your database to 10.1.0.4 or later. Otherwise you have to manually insert a row into the view USER_SDO_CACHED_MAPS.

  • Error when creating a FDM application on SQL Server 2005

    Hi,
    we are getting this error when creating a FDM application on SQL Server 2005
    Error: EPMCSS-07003: Failed to validate identity. Invalid identity . Check identity.[SET_ROLES_LIST]
    We are using Windows System Integration although we have also tested with sa user.
    Any ideas?
    Thanks

    Based on the error message it appears to be having a Shared Services issue. Verify that the "ADMIN" account is being used for the HSS connection and that you are using "ADMIN" to create the application and see if the same error is returned.

  • Error when creating a webpart page in site pages - Sharepoint 2013

    Hi,
    I am getting Unexpected error when creating a new webpart page in site pages on sharepoint 2013 site.
    I have no clue on this.
    Any help is much appreciated.
    Thank in advance.
    Smile Always

    Hi Smile,
    For troubleshooting this issue, let's verify the followings:
    Whether you can create wiki pages well.
    Whether this issue occurs for other sties.
    Whether all users have this issue. Please test with Site administrator, compare the result.
    As Naveen said, please check the log file to find more information about this issue. The path of the log file is: C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\LOGS.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Error when creating delivery referenced by STO doc. from vl10b

    Hi All,
    We are getting an error when creating delivery as background from vl10b t-code referenced by STO. The error message " Global official numbering: Input parameter incomplete " .
    Please give me a hand for this problem.
    Thanks in advance for your helps.
    Regards,

    Hi,
    One of the possibilities of the error could be
    if i_BuKrs eq space or i_BuPla eq space or i_PostDate eq space.
    i.e Compnay code or Posting date ro Business Place is Blank.
    Please Take help of ABAPEr to resolve the isssue
    Thanks
    Murtuza

  • Error when creating capture

    Hi,
    I am getting this error when creating the capture:
    1 BEGIN
    2 DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
    3 schema_name => 'escmanager',
    4 streams_type => 'capture',
    5 streams_name => 'capture_escmanager',
    6 queue_name => 'strmadmin.streams_queue',
    7 include_dml => true,
    8 include_ddl => false,
    9 source_database => 'TRN9.WORLD');
    10* END;
    SQL> /
    BEGIN
    ERROR at line 1:
    ORA-01371: Complete LogMiner dictionary not found
    ORA-06512: at "SYS.DBMS_STREAMS_ADM_UTL", line 1174
    ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 141
    ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 96
    ORA-06512: at line 2
    Thanks,

    Make sure that you have upgraded to the 9.2.0.2 patchset and, as part of the migration to 9202, that you have run the catpatch.sql script.

  • Unexpected Error When Creating Network

    Running 10.9.1 and getting "Unexpected Error" When Creating a new network. Need help getting started.
    Thanks for the support!

    You need to use the alternatives under options..
    It will never pick this option itself.. so click Other Options.
    and use replace an existing device.
    Or simply remove the existing setup and start over..
    Reset to factory every time you start a setup.. and create a new network.. then reset the older units once this is working and use them to extend the network.
    Personally I prefer to replace and start afresh as it just leads to less issues.
    As far as range is concerned the new AC models are variously reported  as excellent to worse than existing old models.. wireless is simply another form of voodoo only in white plastic instead of black.. which sort of suits the black arts better.

  • I get this error when trying to create a ringtone - iTunes could not connec

    I get this error when trying to create a ringtone:
    "iTunes could not connect to the iTunes Store - an unknown error occurred (11556)"
    But I CAN connect - if I click on the iTunes Store, it connects right away.
    I want to make a ringtone from a song that I purchased, but all I get is the same error message.
    iTunes 9.2.2, Ireland iTunes Store.

    have you seen this KB article: http://support.apple.com/kb/HT1398 ?
    JGG

  • Getting errors when creating physical standby.

    Hello All,
    i am getting following error when i creating a physical standby for production,
    i used below command to do it
    duplicate target database to standby dorecover;
    after some time it throwed this error.
    Oracle Error:
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: '+DATA/solfho2/datafile/system.382.764328493'
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 10/12/2011 13:04:06
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-11003: failure during parse/execution of SQL statement: alter database recover logfile '/arch/SOLFHO2/PROLHO01_1_25224_740461103.arc'
    ORA-16145: archival for thread# 1 sequence# 25224 in progress

    Hello;
    Looks like a do over.
    I have my short notes here:
    http://www.visi.com/~mseberg/duprman2.html
    This has been tested several times.
    Best Regards
    mseberg

  • Error when creating a new Organization in Deployment Manager

    I am trying to create a new Organization to an existing CRM environment and I keep getting the error below. The user deploying the new Organization has full control on all the security groups and Admin rights on the servers that Host SQL and CRM
    application. The CRM environment is 2011 on Premise that has been setup for IFD.
    We currently have 2 other organizations that are already in the environment, so the new org would be a third. I am more than glad to provide any firther information that I have to anyone that can help us resolve this issue. I also have a log file that I
    saved after the failed creation attempt. I can provide the contents of the log file to anyoen who can help. Its too long to add here.
    The section of the log file that shows the error is just above the screen shot. It looks like a deletion error. My queston is why is there an attempt at deleting anything if all I am trying to do is create a new Organization. This is not an import or
    upgrade.
    15:03:16|  Error| System.Exception: Action Microsoft.Crm.Tools.Admin.ImportDefaultDataAction failed. ---> Microsoft.Crm.BusinessEntities.CrmObjectNotFoundException: No object matched the query: delete from [ConnectionRoleObjectTypeCodeBase]
     OUTPUT DELETED.[ConnectionRoleObjectTypeCodeId], 3233
     into SubscriptionTrackingDeletedObject (ObjectId, ObjectTypeCode)
     where ([ConnectionRoleObjectTypeCodeId] = '952fda76-2f70-e411-bfa3-005056b10f95')

    Hi All,
    I am also getting similar error 
    Microsoft.Crm.BusinessEntities.CrmObjectNotFoundException: No object matched the query: 
    delete from [CustomerAddressBase]
    OUTPUT DELETED.[CustomerAddressId], 1071
    into SubscriptionTrackingDeletedObject (ObjectId, ObjectTypeCode)
    where ([CustomerAddressId] = 'fbb57633-a54f-e411-80ca-005056947598')
    I am getting this error when I am trying to delete all existing customer address and then try to create a new address for a customer.
    So its a kind of blanket update to all existing one replaced with new one.
    Please let me know if any one having solution to this 

  • Keep getting 5002 Error when trying to Sign In

    Hello,
    I created a new @me.com address today for a seperate Apple ID account.  I am needing to sign into the iTunes Store, but I keep getting a response that says:
    "We could not complete your iTunes Store request. An unknown error occurred (5002)."
    Any ideas as to what's going on here?
    I also took a screen cap of the issue:
    Thank you for the help!
    Marcus

    Thank you for your response Carolyn; however, that article does not fix my problem.  I am getting this error when trying to sign into the iTunes Store on my Mac.
    I get the same problem when signing into the Store on the iPad or iPhone.  I simply can't log in, but when I go to iCloud.com or the Apple ID login on Apple.com, it works.
    Marcus

Maybe you are looking for

  • Changing InfoObject to allow lowercase letters

    Hi All, We have Invoice Number InfoObject which was already developed and used in some of the DSO in production. This infoobject was not checked with the lower case letters option in the object properties while creating the object. From two days we a

  • Two macs. Mail trouble

    Hello there. I use two macs, one at home and another in my office, under one apple id. Im trying to use mail.app with two mail accounts (corporate, not gmail or similar). So, i create both accounts on my office mac and it's work ok - i can receive an

  • Number ranges for p.o

    Hi Guru's, my clint wants no. ranges in this format as 0291/rm/09-10/u-II. we have planed to used external no. ranges but over there we can use 12 characters but i am having more then that.so i don't want to give any text from to all should me manual

  • AssignMessages Error

    Hi, I have a BP in which I assign (append) messages in a Multiple container. But after my Business scenario tests I receive Error: <SAP:Category>XIAdapter</SAP:Category> <SAP:Code area="BPE_ADAPTER">UNKNOWN_MESSAGE</SAP:Code>   <SAP:P1 />   <SAP:P2 /

  • Acrobat 7 - is there a menu entry somewhere for "Create Link" (other than in the context menu)?

    I need to create internal PDF hyperlinks with the link tool on selected text -- however I need the links to be created via the normal application menu, and not from the context menu (i.e. not via "right-click --> "create link"). However, I can't find