Unable to import the views in RPD.

Hi,
Case1:Unable to import the views in OBIEE 11g by using "Oracle inOraDb 11g_Home1" drivers but able to import the Tables in RPD.
Case 2:Unable to import the Table in OBIEE 11g by using ."Data Direct 6.0 Oracle wire protocol" drivers but able to import the Views in RPD.
My requirement is need to import some views and tables in RPD.How to achive this.kindly let me know.

Hi,
I have tested with SH Schema.
I have one 'View' called profit in sh schema
http://i1159.photobucket.com/albums/p629/bose-obiee/shschema.jpg
The schema in import type without 'Views' Option it is not showing
http://i1159.photobucket.com/albums/p629/bose-obiee/withoutviews.jpg
clicked Back and selected 'Views' Option and checked under sh schema. am able to see the 'Profit Table.
http://i1159.photobucket.com/albums/p629/bose-obiee/withviews.jpg
selected what are all the table i need to import from sh schema with Profit view and clicked the single arrow symbol to move sh schema from 'data source view' to 'repository view' and clicked 'Finish'
It has imported all the tables and view into the rpd from SH Schema.
http://i1159.photobucket.com/albums/p629/bose-obiee/View.jpg
Regards,
Bose

Similar Messages

  • HCI error - unable to import the data because the row is duplicated in the master data

    Hi, i am working on HCI while i am mapping the data from ECC to HCI target table i am getting this error :Unable to import the data because the row is duplicated in the master data .Could you please help me how to solve this
    Message was edited by: Mariana Mihaylova

    Moved to Process Integration (PI) & SOA Middleware as per New SAP HANA Cloud Integration (HCI) content category (unfortunately, I can't edit the discussion and add the category as I'm not a moderator in this space). Perhaps Mariana Mihaylova can help.
    Susmitha Yerradhodi please read and follow The SCN Rules of Engagement - in particular, the more details you provide, the better the chances of getting your question answered. (e.g. "HCI" is not a helpful subject)

  • Is there I way I can reload the google calendar as I am unable to change the views or go forward or backward by weeks.

    Is there a way to reload the Google Calendar program on my laptop? Currently, I am unable to change the views. It is always on the current week. I cannot get the daily view either. Thanks!!

    This would not seem to be an Apple issue at all, much less for Apple Remote Desktop. These forums cannot help you with setting up Google Calendar on a Windows system. Perhaps you would be better served by taking your question to a forum related to Google's apps or at least a Windows forum.
    Or did you just forget to include details about what computer you're actually asking about?

  • Error: Unable to import the ZINV_EX(unable to read the segment).

    Hi ALL,
    i have a requirement. were i have to add a custom segment(Z1_E1EDP01) to standard Invoic02 Idoc and created extension of invoic02(basic type) as ZINV_EX.
    i added the segment and populated the values accordingly to the newly created segment.
    the problem I'm facing is when i try to import this ZINV_EX custom idoc we getting an error :
    Unable to import the ZINV_EX(unable to read the segment).
    I'm done with the port creation and all the required configuration in idx1 and idx2.
    Please can anyone to tell how to resolve this issue.
    Thank you,
    Lalit.

    > the problem I'm facing is when i try to import this ZINV_EX custom idoc we getting an error :
    > Unable to import the ZINV_EX(unable to read the segment).
    You are getting this error because the segment Z1_E1EDP01 is not following certain naming conventions which we require for IDOC. So change the segment name as Z1E1EDP01 and then try. And don't forget to release the segment.

  • Using Smartview for OBIEE -  Unable to import chart view

    Hi Experts,
    I am using Smartview as office tool for OBIEE. But i am unable to import anything except table view in excel.  When i try to import a basic chart view i am getting a error saying
    Exception of type 'JBIPS.Common.JBIPSException' was thrown
    but i am able to import them as images. Please advice.
    Thanks,
    Ram

    Hi Ram,
    The issue has been identified as a Bug
    Bug 18117097 - SMARTVIEW : EXCEPTION OF TYPE 'JBIPS.COMMON.JBIPSEXCEPTION' WAS THROWN
    It has been addressed in Patch 18057570: BI BUNDLE PATCH 11.1.1.7.140225.
    thanks,
    LB

  • Unable to Edit the View in Custom Component

    Hi Experts,
    Please help me to resolve this issue !
    I am unable to lock the BOL Entity in my custom component using BTAdminH. I have written the below code in the Edit event Handler for Edit Button. The lr_entity->lock( ) condition statement is getting false and it is skipping the "set_view_editable( me )." code statement. Why??
    This is code excerpt that I have taken from edit button of the BP_HEAD/AccountViewSet and altered to my component/View
    DATA: lr_entity     TYPE REF TO cl_crm_bol_entity,
            lr_controller TYPE REF TO cl_ZVKH8_bspwdcomponent_impl.
      TRY.
          lr_controller ?= me->comp_controller.
          lr_entity ?= lr_controller->typed_context->btadminh->collection_wrapper->get_current( ).
    IF lr_entity IS BOUND.
      IF lr_entity->IS_LOCKED EQ abap_false.
        IF le_entity->IS_CHANGEABLE EQ abap_true.
           IF lr_entity->lock( ) EQ abap_true.
            me->view_group_context->set_view_editable( me ).
           ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
    and when I directly executed the below code in the Edit event Handler for Edit Button I am receiving the dereferencing NULL value exception. Why in my custom component in many places this happening??
      me->view_group_context->set_view_editable( me ).
    Exception Details
    CX_SY_REF_IS_INITIAL - Dereferencing of the NULL reference
    Method: ZL_ZVKH8_DETAILSEF_IMPL=>EH_ONBACK
    Thanks,
    Bujji

    Hi Summit & NishaNC,
    Thanks for your responses !
    As suggested, I have debugged the code for ->lock( ) method and there are exceptions raised from some methods.
    Method GET_LOCK () -> Method GET_ROOT () ->Method GET_PARENT ()
    At GET_ROOT( ) method i have received an exception
    "Root entity BTAdminH could not be determined" and one more "Entity BTAdminH could not be locked"
    Later when I have checked in MODEL Browser, I found that the BOL object "BTAdminH" for my view is an Access object and not the Root Object.
    Hence, I have a question? Does the locking can be done only for ROOT Objects?
    If this is TRUE then I think this is the major problem with my custom component where even the cross component navigation is also not happening and in many places I am receiving "Dereferencing NULL Value" information.
    Also I have gone through some of the Threads and one information that I found from Sumit Mittal
    1. An access object is an independent entity, has primary keys of its own.
    2. A root object is a special access object that is at the top of the hierarchy based on business rules.
    3. A dependent object's primary keys are supplied by access objects and it's lifetime is bound to them. If the parent object is destroyed, the dependent object is also destroyed.
    4. Search objects are query objects useful for querying root objects
    5. Search result objects - Search objects return the results in the form of a result object together with a relation pointing to the root object.
    6. View objects - ?
    7. Dynamic search objects - Used in advanced search, supports ranges and operators
    Could you please specify in which scenarios we have to go for Access Objects and Root Objects
    Thanks,
    Bujji

  • UNABLE TO IMPORT THE IDOC IN XI

    hi
    We have extended IDOC INVOIC.INVOIC02.ZINVOICO2EX with a custom segment. But when we try importing the same in XI it gives the following error:
    + Error: IDoc type INVOIC02 contains errors (unable to read segments)
    We are unable to understand the root cause of the problem and how to fix the same.
    Any help is welcome.

    Hello,
    You could also check the following:
    1. Check the IDoc type in transaction WE60 (try to create a parser). I
       prompted, check the segment definition of any erroneous segments in
       transaction WE31.
    2. Check whether the user has the necessary authorizations; for more
       information, see the #Importing IDocs and RFCs# in the SAP Help
       section and SAP Note
       #677732 - Authorization for MDI within framework of adaptive RFC.
    3. Check whether the necessary function modules are available. See SAP
       Notes:
       #672745 - Missing function modules for mdi and
       #212011 - EDI/IDoc: Access to IDoc metadata.
    4. Check whether the RFC function module DD_DOMA_GET is remote-enabled
       See SAP Note:
       #718320 - Problems using mdi to access DDIC types.
    5. Check whether any short dumps or errors are written in the source
       system.
    Regards,
    Sarah

  • Unable to import the SWCV fom the central sld ?

    Hi Guys,
    I have connfigured xi for central sld
    and when i try to import the swcv from central sld i am getting the message as unable to read the data from the <hostname> : port number
    I have given the following in the exchange profile
    com.sap.aii.connect.cr.name -- central sld host name
    com.sap.aii.connect.directory.name -- sap xi host name
    can anybody tell me the values for the above parameters and any help would be really appreciated
    LCRSAPRFC and SAPSLDAPI are on the xi server and works fine.
    Thanks,
    Srini

    Hi Sridhar,
    LCRSAPRFC - poinitng to SAP XI server Gatewayhost and Gateway service -- works fine
    SAPSLDAPI - pointing to SOLMANGR Gatewayhost and Gateway service -- works fine
    I am maintaining the Hostname of the solmagr in SLDAPICUST. can you explain little bit more on the url in sldapicust.
    Do you mean i need to give http://hostname:port/sld instaed of just the host name ?
    Thanks,
    Srini

  • Unable to import sample Usage Tracking RPD objects

    Hi guys,
    OBIEE version 10.1.3.3.0. We are trying to import the objects that come in the sample Usage Tracking RPD (OracleBI/server/Sample/usagetracking/UsageTracking.rpd) into our own RPD. We have been able to create the S_NQ_ACCT table which is working fine and the BI Server populates with user activity in our Oracle DB. We also created and populated the NQ_LOGIN_GROUP, S_ETL_DAY and S_ETL_TIME_DAY tables from the scripts provided in OracleBI/server/Sample/usagetracking/SQL_Server_Time/. I added all the objects to the Physical Layer and updated row counts with no problems. I am now trying to import the objects into the Business Layer in the Admin Tool. When I try to copy/paste the Measures object from the sample RPD I get the following error:
    [nQSError: 28006] Near Line 904, <"join nQ_CALENDAR Year Ago NQSACCT">: Not defined.
    I am doing the following replacement:
    "OBI Usage Tracking"."Catalog"."dbo"
    for
    "Usage Tracking".""."MIOBIEE_O"
    Which covers the different DB setup in my RPD. What else am I missing?

    I didn't copy paste the objects from one repository to the other, but I imported the UsageTracking.rpd into our main repository, by clicking on File, Import -> from Repository.
    Before you do this, you must make this option available. Under Tools, Options and tab General, you must check the "Allow import from repository" option.
    Then you should check the database settings in the connection pool, for instance the call interface, this can be OCI instead of ODBC.
    Regards,
    Stijn

  • Unable to import the user certificate into the Oracle Wallet Manager

    Hi,
    I am configuring the External Authentication plugin using the password filters.
    i am using the version 10.1.0.5.0 version of Oracle Wallet manager
    inorder to do that i am enabling the SSL mode.
    to enable the SSL mode i followed the some steps in OWM and OCA admin and user console.
    when i approved a certificate as admin and importing to the Oracle Wallet Manager, i got an error that
    User Certificate Installation failed.
    Possible errors:
    - Input was not a valid certificate
    - No matching certificate request found
    - CA certificate needed for certificate chain not found.
    Please install it first
    can anyone help me how to resolve this problem.

    hi,
    thanks for your reply pramod
    I tried to import the two certificate files(rootca.crt and server.crt). but i am got the same error.
    what may be the problem.

  • Unable to import the excel template into form in HFM

    Has any one came across this issue that I am facing now?
    I have a form in HFM and I exported the form to Excel and the export works fine. but when I import the excel template into form, it was not successful. I have 250 rows in the template. I deleted 50 rows and tried to import and it worked fine . Is there any row limit on this?
    Below here is the error message that I am getting
    An error occured. Please contact your administrator
    Error Number: - 2147467259
    Error Description:007~Unexpected error~The function returned |.
    Error SOrce: request Object
    Page on which error occured:/hfm/data/processImportWdeffromExcel.asp
    I appreciate any ideas on this

    What version of HFM and Excel?
    Make sure you honor the file extension requirements for 2007 docs and import the same as they are exported.

  • OBIEE 11g SSL Configuration Issue : Unable to import the Server certs

    Hello All,
    We are trying to configure OBIEE 11.1.1.6.0 with SSL using Windows server 2003 (IIS) and facing some issues with that.
    Followed the document : OBIEE11g SSL Setup and Configuration [1326781.1]
    http://obieedue.blogspot.sg/2012/08/obiee11g-ssl-setup-and-configuration.html
    and also completed generating the required certificate signing request and keystores for SSL communication and sent it to the CA (IT Admin team) to to have the certificate signed by CA. The issue comes when I am trying to import the CA certificate (Root certificate) and Server Certificate into the Java Keystore.
    I am importing the Root CA Certificate first which is successfully added to the keystore.
    keytool -import -trustcacerts -alias mycacert -file cacert.pem -keystore mykeystore.jks -storepass Welcome1
    Trust this certificate? [no]: yes
    Certificate was added to keystore.
    But when trying to add the Server Certificate to the keystore using the command below :
    keytool -import -v -alias testserver -file server.cer -keystore mykeystore.jks -keypass Welcome1 -storepass Welcome1
    Certificate reply was installed in keystore
    I get the following error:
    keytool error: java.lang.Exception: Failed to establish chain from reply
    java.lang.Exception: Failed to establish chain from reply
    at sun.security.tools.KeyTool.establishCertChain(KeyTool.java:2662)
    at sun.security.tools.KeyTool.installReply(KeyTool.java:1870)
    at sun.security.tools.KeyTool.doCommands(KeyTool.java:807)
    at sun.security.tools.KeyTool.run(KeyTool.java:172)
    at sun.security.tools.KeyTool.main(KeyTool.java:166)
    Read many forums and tried to convert it to the PKCS#7 format and import the cert to the identity keystore, but was not successful in that either. I have also checked with the IT Admin team and found there is only one RootCA and no other intermediate CA's.
    Please advice if any one has similar issues or suggestions.
    Thanks in advance,
    SVS

    Hi,
    One obvious reason would be that you did not specify -trustcacerts, and the root CA is not included in the present server keystore. In that case, using the -trustcacerts option would solve the problem, if the root CA is indeed in the JDK cacerts.
    To print out the certificates present in the JDK cacerts, use the following command:
    keytool -list -keystore <JAVA_HOME>/jre/lib/security/cacerts -storepass changeit -v
    Then check if the root CA that signed your server certificate is present, and has not expired (in which case,you would need to re-import a newer one into cacerts).
    Another common reason for that error message is when you have used a proprietary CA to sign your server certificate. Then it would obviously not be in the JDK cacerts. The solution in that case is to import your proprietary root CA into the JDK cacerts, using the following command:
    keytool -import -keystore <JAVA_HOME>/jre/lib/security/cacerts -file yourRootCA.pem -storepass changeit -alias youralias
    A third reason for that error message is when your server was signed by an intermediate certificate. In that case, you would have received from your CA a chain of certificates. One way to solve this (not the only one, but this one works well): Prepend your intermediate CA file to your server cert file, and import the obtained concatenated file into the server keystore. Be careful, the intermediate CA must be BEFORE the server cert. Example:
    copy rootca.cer certchain.p7b
    type server.cer >> certchain.p7b
    The file certchain.p7b will be the concatenation of the intermediate CA and the signed server cert. Then import the newly created file under the key alias as follows:
    keytool -import -keystore serverks.jks -file certchain.p7b -alias yourkey -trustcacerts
    If you only prepend the intermediate root CA, you must make sure the the final root CA is in cacerts. But you can also prepend your whole chain of trust inside the server keystore.
    Regards,
    Kal

  • Unable to Import the ID objects in PI 7.0

    Hi,
    I have installed a new PI 7.0 server which is on local SLD. I also have old PI 7.0 in which all the scenarios are configured.
    I am trying to import the scenarios from the old PI 7.0 to new PI 7.0.
    Both the servers are on local SLD and on different transport domains.
    I tried simple file transfer. I was successful.
    But when i am trying to import the ID objects which have got reference to SLD i am getting the error as below.
    Import failed because of business system transfer of object Service | ECC_XI: Obligatory transport target for business system ECC_XI not found in System Landscape Directory
    Import failed because of business system transfer of
    object Service  | ECC_XI: Obligatory transport target
    for business system ECC_XI not found in System Landscape
    Directory (BS_MAPPING_FAILED_OBJ)
    Obligatory transport target for business system ECC_XI
    not found in System Landscape Directory (BS_TARGET_NOT_FOUND)
    Business system P70 is not assigned to a business system
    group with the ID (XISystemGroup) (BS_GROUP_LOAD_BY_BS_PROC_EX)
    I have also imported the SLD contents related to the scenario.
    P70 is the SID of my new PI 7.0 and BWS is the SID of my old PI 7.0.
    ECC_XI is the business system which is referenced in the scenario.
    Please suggest.
    Thanks
    Raghu.

    Dear all, I've the same error from the first post. If I try to import my XI 3.0 content to PI 7.3 the Integration Builder means:
    Receiver Agreement | XY | SYSTEM | ABC : Obligatory transport target for business system SystemP not found in System Landscape Directory
    Why this is oblicatory? I've two PI with local SLD in bidirectional sync. There also all business systemes have been created. There are last but not least two groups DEV and PROD. The development systems and the DEV PI is asigned to group DEV and the productional systems and the PROD PI is assigned to group PROD.
    Then I've assigned the the PROD Group with transport target to the DEV System and for the business systems I can see the correct mapping. In the DEV systems the transport group and system as targed is assigned. And in the PROD systems I can see the DEV Systems as Source System.
    I dont need target systems for PROD systems and I don't have target systems; but why I need now a target system for a productional system by PI import to the IB?

  • Unable to import the slide from powerpoint 2007

    I am beginner in captivate 3 and I am using student version.
    So please help me with the answer for the following problem
    I cannot import the slide from powerpoint slide version 2007.
    Captivate 3 is not supporting to import the slide from 2007 version
    . Please help
    With thnaks
    Polachan

    Polachan, just open the Power Point presentation in your copy
    of "MS Powerpoint 2007" and use the "Save As" function to save a
    copy in "Powerpoint 1997-2003" format.
    Then, bring
    that copy into Captivate 3, and you should be okay. Okay?

  • HT4489 I have been unable to import the cards from my Address Book to ICloud, for some reason they do not fit the criteria because "

    The steps described in "Help" do not fit with what I find when I try to do what they say to import the contacts
    from my Address Book to my ICloud Contacts. A few time things sort of worked, but then the VCards would
    not import because they somehow did not fit the criteria. Has anyone found this same problem?
    Did you manage to solve it?

    Welcome to the Apple community.
    Your profile indicates that you are using OS X 10.6.8. You will need OS X 10.7.2 or better in order to use Icloud and sync your contacts.

Maybe you are looking for