Update the schema for data foundation, business element and business view

Hi All
I am using oracle 11g as backend to develop using crystal reports and I am using Business View Manager as the connection in crystal reports.
Now my issue here is I have created the DC, DF, BE and BV using abc schema but as the request has changed I need to update the schema to xyz as table structure is same in both the schemas.
I was able to successfully update the schema in DC but that is not reflecting in DF, BE and BV as a result of that when I use the updated BV in report report is not run as there was abc.tablename for all tables.
I have searched google but unfortunately unable to find any useful solution for the problem.
Experts please help me to update the new schema connection to DF, BE and BV
I am using Crystal Reports 2008 SP3 and Business Objects 3.1
Thanks for your time.

Thanks for your continous assistance Mantu Sahu.....
Unfortunately I can't paste the screenshot aswell... but will try to explain in detail what I am doing...
to the left most part there will be datafoundation name... below that there are tables so what I have done is right click on the table in those options there is no change qualifier or ownere but there is option Set table location. Is this option you are discussing about?
To add more information I am working on Business Objects 2.1 SP0... will this have any impact on the options that are displaying.
Regards
Siva

Similar Messages

  • Has anyone updated the software for 10.6 Snow Leopard and found that their printer no longer scans or prints?

    Last October, I bought a MAC desktop that uses MAC OS X 10.6.8 and an HP 1050 All-in-One Printer J401a.
    Everything worked beautifully until messages kept popping up about downloading critical MAC software update. Eventually, I succumber to the persistence and took the 7 hours required to do the download.
    Since then, the printer refuses to scan. A mesage informs that "HP Utility quit unexpectedly" and a report is being sent automatically to Apple.
    A few days ago, I got an engineer to have a look. He re-ran the HP disk 3 times and managed to get the scanner to work, but only once. His second visit did absolutely nothing and now even the printer doesn't work.
    HP informs that this is a problem with MAC OS X 10.7 and suggests downloading a correction.
    Has the Apply update turned the 10.6 to a 10.7?
    I have un-installed HP and disconnected the printer.
    What can I do to get this important facility back?
    Lis

    Elisabeth Cumine wrote:
    Thanks for the reply.
    Even after the 7 hour update download the MAC OS X still says version 10.6.8 and nothing appears to have changed except printer and scan errors. I've uninstalled HP after 3 futile reloads and disconnected the printer.
    Any suggestions?
    Lis
    Right 10.7 is a purchase of a new oeprating system. Software update will not upgrade your computer to 10.7.
    The Software on the disk is very old software. Ushally it's a good idea to download the latest software from HP. As such, have you tried downloading & Installing HP Deskjet Full Feature Software and Drivers - Mac OS X v10.5 and v10.6?
    You may need to go into system prefrences, Printers, and delete the printer, and then re-add the printer.
    When opening the scanning software; it's really important to open the right program. If you look in the HP software folder there should be sevreal programs. There should be a program called scanner select or some thing similar. That's the one you want to open. it will have you select the device you want to scan from; then it will give you the option to open the scanning program.
    if that dosen't work, do you have any other mac or pc computers? the reason I ask; is that the printer could be having a hardware issue. if you try the scanner / printer with another computer; and you still have the issue, then you know it's an issue with the printer it self and not your computer.
    My HP all-in-one scanner died about 8 months into owning it. I couldn't even use the built-in copy button on the printer to make copies.

  • Where is the schema for this element: weblogic-wsee-standaloneclient

    i can't find the schema for this element anywhere: weblogic-wsee-standaloneclient. it is found int the <servicename>_internaldd.xml doc that is generated by the clientgentask ant task. can someone inform me of where it is?
    thanks, shane

    http://www.bea.com/ns/weblogic/90/weblogic-standalone-wsclient.xsd
    -- Rob
    WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • How to update the Input message data in OSM

    hi,
    I am using OSM 7.0.2.
    can we update input message data before the orchestration execution.
    I want to add some more order line item to the input xml by calling some external webservice.
    Suppose CRM submits order with 3 order line item. Now once we have that in Input message i want to add some more order line item to this input message.
    I dont want to add processing/adapter layer above OSM that does the updation of the XML.
    Thanks in advance.
    Rutvej

    Hi Rutvej,
    You use Order Data Rule to generate data for the creation view of the orchestration order. The source schema of the Order Data Rule is the schema for the incoming message. The output returns the <_root> portion of the creation view. Note that the Order Template already has the Sales Order (look for "order <XML>") and automatically populated by OSM Core. So, what you are trying to do is not to add/change the Sales Order itself, but to first add the desired enriching data model into Order Template, and then use Order Data Rule to populate those enriching data into the Order Template.
    Example of Order Data Rule:
    declare namespace cso="http://xmlns.oracle.com/communications/sce/dictionary/CentralOMManagedServices-Orchestration/CustomerSalesOrder";
    let $customer := //cso:CustomerAccount
    return
    <_root>
         <OrderHeader>
              <AccountIdentifier>{$customer/cso:AccountID/text()}</AccountIdentifier>
         </OrderHeader>
         <EnrichedOrderItem>
              <Data1>Your enriched data here</Data1>
              <Data2>Your enriched data here</Data2>
         </EnrichedOrderItem>
    </_root>
    Before that, you would need to add the OrderHeader and EnrichedOrderItem into the Order Template.

  • I need to extend the schema for iPlanet Dir. 5.0 and add custom objectclasses and atributes. I do this by adding entries in the 99user.ldif file. Its not working. Any ideas?

    Hi
    I need to extend the schema for iPlanet Dir. 5.0 and I do not want to do so from the console. As per the documentation, I need to either add entries in the 99user.ldif file or define my own custom [00-99]myname.ldif file. I tried this but its not working.
    I have made the assumption that there is no explicit import step for the 'user defined' schema files (as it is for user data ldif files). I assume that on start (or on opening the console), I'd be able to see the new schema after the server has read the schema file.
    I have verified that entering new objectclasses and attributes from the console adds entries into the 99user.ldif file. So why is the reverse process not working. Can anybody throw some light on this? Also in case my assumptions are faulty, please let me know.
    I did not change the aci entries in the existing ldif file. Is any modification needed there? I was logged in as the Directory Manager during this testing process.
    regards
    Sikka ([email protected])

    Hi Sikka,
    The server reads its schema configuration on startup. If you manually modify the schema files while the server is running, it will not have any effect. You have to restart the server.
    The console adds the new schema elements over LDAP (you could do that as well, you only have to modify the cn=schema entry), so the server is aware of the changes immediately and thus restarting is not needed.
    I hope this helps.
    Bertold

  • How to Update the Final Process Date in Termiantion Screen Oracle HRMS

    Hi Gurus,
    I have a requirement where i need to update the Final Process Date. is there any standard api to update the final process date. i know there is a update to update the termination details like actual termination date,last standard process but how about final process date.
    Eg : For one assignment the final process date is 31-March-2013 and as of now he is a exemployee in system as he was terminated on 31-DEC-2012. now i want to prepone the final process date to 31-JAN-2012.
    any replies on this is highly appreciable.
    Thanks in advance.

    I would reverse the termination then terminate the employee with the right FPD.
    hr_ex_employee_api.reverse_terminate_employee
    hr_ex_employee_api.actual_termination_emp
    hr_ex_employee_api.final_process_emp
    Maybe also the below might work:
    hr_periods_of_service_api.update_pds_details
    Please note that there should be no payroll result in your case after January payroll.
    On a side note, you can also termiante employee without setting the FPD, and then put it only when approved by the business - in this way wou can avoid the prepone.

  • How can we update the last synchronization date and time..on SUP in sccm 2012 R2

    Hi,
        Can you any one please guide me how can i update the last  synchronization date & time in SUP on SCCM2012 r2 , some how its updated as future date and when ever i try to synch the SUP with disconnected WSUS its shows in the wsyncmgr.log 
    "Wakeup for a polling cycle " and  " Wakeupby inbox drop" and "Wakeup by SCF change"  
    Thanks 
    Balaji K

    You'll probably have to call CSS on this one as this not normal by any means. The messages you noted above are completely normal but if that's all you are seeing then there's an issue.
    Have you reviewed wcm.log and wsusctrl.log?
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • BAPI_PO_CHANGE to update the Price for the line item not updating the Price

    Hi,
    I am using BAPI_PO_CHANGE to update the Price for the line item. This BAPI is not updating the Price. I am using external cummit also, but the BAPI is not updating price.
    I am passing following data to the BAPI.
    Plant: CQ11
    PO                   Material                Price
    4500002142     TEST_BATCH     12
    Please provide suggestion.
    Regards,
    Jubin.

    Hi,
    check this link...this has sample code
    [http://www.sap-img.com/abap/sample-abap-code-on-bapi-po-change.htm]
    Regards,
    Surinder

  • Unable to create or update the Excel Personal data provider in Web Rich

    Hi All,
    Iam getting the below error message ,when iam using Excel as personal data provider in WEBI Rich Client.
    "Unable to create or update the Excel Personal data provider in Web Rich Client Cannot open the workbook WIS:10872"
    Please suggest a solution ,it helps a lot..
    Regards
    Mahesh

    Hi,
    Was this issue resolved? I see this post has been marked answered but there wasn't any information on what it took to resolve the issue.
    We have our CMS and processing servers on Linux while our Scheduling servers are on Windows. The WEBI reports with external data providers fail to run on Infoview/ scheduler.
    We were told this is addressed in FP 3.6 but that is not the case. We installed FP 3.6 but still continue to see these errors. It required us to manually deploy the ExtensionFactoryService package for enabling the refresh of such reports on infoview/schedulers. It also involves placing of the file used [.xls/.txt] on the linux server on the PersonalDPFiles directory.
    No luck so far!!!
    Any help would be greatly appreciated!
    Thanks
    Avinash

  • Failed to read/update the registry for the BO XI R2 Critical Hot Fix

    We are trying to apply service pack 4 for the BO XI R2 Sp4 for SAP Integration Kits and received the following error message during install and unable to proceed:
    "Failed to read/update the registry for the BO XI R2 Critical Hot Fix for Partner Integration Kits"
    We had applied a Critical Hot Fix about one week ago and it might be causing the error. How do we uninstall the Critical Hot Fix if it is indeed causing the problem?
    Additionally, we have uninstalled the Integration Kit and reinstalled it hoping it will solve the problem but it didn't.
    Any help will be greatly appreciated.
    Thanks.

    Please post this query to the Business Objects Enterprise Administration forum:
    BI Platform
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all BOE queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Ludek

  • To find a user exit which update the Invoice header data

    Hi,
    I need a user exit which will update the invoice header data. For eg I need to update the fields RBKP_V-ESRNR and RBKP_V-ESRRE in table RBKP_V. I was using this user exit EXIT_SAPLMRMP_010 (Program ZXM08U16).But this is not working fine as this has no exporting parameter nor tables of structure RBKP_V.
    I need for transaction MIRO.
    Kindly help ...
    Points will be rewarded
    Thanks in advance

    Hi jayasree,
    with the help of the below given program you can find out the requried user exit by giving the T code (MIRO).
    *& Report Z_USEREXIT_DISPLAY *
    Title : Display UserExits *
    Transport Request No : *
    Modification Log *
    ModNo Date Consultant Description of Change(s) *
    REPORT z_userexit_temp
    NO STANDARD PAGE HEADING
    LINE-SIZE 200
    MESSAGE-ID zz.
    T A B L E D E C L A R A T I O N S *
    TABLES: tftit,
    e071,
    e070.
    S T R U C T U R E D E C L A R A T I O N S *
    TYPES: BEGIN OF x_tstc,
    tcode TYPE tcode,
    pgmna TYPE program_id,
    END OF x_tstc.
    TYPES: BEGIN OF x_tadir,
    obj_name TYPE sobj_name,
    devclass TYPE devclass,
    END OF x_tadir.
    TYPES: BEGIN OF x_slog,
    obj_name TYPE sobj_name,
    END OF x_slog.
    TYPES: BEGIN OF x_final,
    name TYPE smodname,
    member TYPE modmember,
    include(15), "Include name
    END OF x_final.
    I N T E R N A L T A B L E D E C L A R A T I O N S *
    DATA: it_tstc TYPE STANDARD TABLE OF x_tstc WITH HEADER LINE.
    DATA: it_tadir TYPE STANDARD TABLE OF x_tadir WITH HEADER LINE.
    DATA: it_jtab TYPE STANDARD TABLE OF x_slog WITH HEADER LINE.
    DATA: it_final TYPE STANDARD TABLE OF x_final WITH HEADER LINE.
    V A R I A B L E S D E C L A R A T I O N S *
    U S E R I N P U T S S C R E E N *
    S E L E C T I O N S C R E E N *
    SELECTION-SCREEN: BEGIN OF BLOCK blk01 WITH FRAME TITLE text-t01.
    PARAMETERS: p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK blk01.
    S t a r t o f S e l e c t i o n *
    START-OF-SELECTION.
    PERFORM get_tcodes. "Get Tcodes
    PERFORM get_objects. "Get Objects
    E n d o f S e l e c t i o n *
    END-OF-SELECTION.
    PERFORM display_results. "Display Results
    *& Form get_tcodes
    Get Tcodes
    FORM get_tcodes.
    SELECT tcode
    pgmna
    INTO TABLE it_tstc
    FROM tstc
    WHERE tcode = p_tcode.
    IF sy-subrc = 0.
    SORT it_tstc BY tcode.
    ENDIF.
    ENDFORM. " get_tcodes
    *& Form get_objects
    Get Objects
    FORM get_objects.
    DATA: l_fname LIKE rs38l-name,
    l_group LIKE rs38l-area,
    l_include LIKE rs38l-include,
    l_namespace LIKE rs38l-namespace,
    l_str_area LIKE rs38l-str_area.
    DATA: v_include LIKE rodiobj-iobjnm.
    DATA: e_t_include TYPE STANDARD TABLE OF abapsource WITH HEADER LINE.
    DATA: l_line TYPE string,
    l_tabix LIKE sy-tabix.
    IF NOT it_tstc[] IS INITIAL.
    SELECT obj_name
    devclass
    INTO TABLE it_tadir
    FROM tadir FOR ALL ENTRIES IN it_tstc
    WHERE pgmid = 'R3TR' AND
    object = 'PROG' AND
    obj_name = it_tstc-pgmna.
    IF sy-subrc = 0.
    SORT it_tadir BY obj_name devclass.
    SELECT obj_name
    INTO TABLE it_jtab
    FROM tadir FOR ALL ENTRIES IN it_tadir
    WHERE pgmid = 'R3TR' AND
    object = 'SMOD' AND
    devclass = it_tadir-devclass.
    IF sy-subrc = 0.
    SORT it_jtab BY obj_name.
    ENDIF.
    ENDIF.
    ENDIF.
    *- Get UserExit names
    LOOP AT it_jtab.
    SELECT name
    member
    INTO (it_final-name, it_final-member)
    FROM modsap
    WHERE name = it_jtab-obj_name AND
    typ = 'E'.
    APPEND it_final.
    CLEAR it_final.
    ENDSELECT.
    ENDLOOP.
    *- Process it_final contents.
    LOOP AT it_final.
    l_tabix = sy-tabix.
    CLEAR: l_fname,
    l_group,
    l_include,
    l_namespace,
    l_str_area.
    l_fname = it_final-member.
    CALL FUNCTION 'FUNCTION_EXISTS'
    EXPORTING
    funcname = l_fname
    IMPORTING
    group = l_group
    include = l_include
    namespace = l_namespace
    str_area = l_str_area
    EXCEPTIONS
    function_not_exist = 1
    OTHERS = 2.
    IF sy-subrc = 0.
    IF NOT l_include IS INITIAL.
    *- Get Source code of include.
    CLEAR: v_include, e_t_include, e_t_include[].
    v_include = l_include.
    CALL FUNCTION 'MU_INCLUDE_GET'
    EXPORTING
    i_include = v_include
    TABLES
    e_t_include = e_t_include.
    IF sy-subrc = 0.
    LOOP AT e_t_include.
    IF e_t_include-line CS 'INCLUDE'.
    CLEAR l_line.
    l_line = e_t_include-line.
    CONDENSE l_line NO-GAPS.
    TRANSLATE l_line USING '. '.
    l_line = l_line+7(9).
    it_final-include = l_line.
    MODIFY it_final INDEX l_tabix TRANSPORTING include.
    ENDIF.
    ENDLOOP.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDLOOP.
    ENDFORM. " get_objects
    *& Form display_results
    Display Results
    FORM display_results.
    FORMAT COLOR COL_HEADING.
    WRITE:/1(150) sy-uline.
    WRITE:/ sy-vline,
    2(23) 'Extension Name',
    24 sy-vline,
    25(39) 'Exit Name',
    64 sy-vline,
    65(74) 'Description',
    140 sy-vline,
    141(9) 'Include',
    150 sy-vline.
    WRITE:/1(150) sy-uline.
    FORMAT RESET.
    SORT it_final BY name member.
    LOOP AT it_final.
    CLEAR tftit.
    SELECT SINGLE stext
    INTO tftit-stext
    FROM tftit
    WHERE spras = 'EN' AND
    funcname = it_final-member.
    WRITE:/ sy-vline,
    it_final-name COLOR COL_KEY, 24 sy-vline,
    25 it_final-member, 64 sy-vline,
    65 tftit-stext, 140 sy-vline,
    141 it_final-include, 150 sy-vline.
    WRITE:/1(150) sy-uline.
    ENDLOOP.
    Regards
    Srinivas

  • Looking for help to update the certificate for my Exchange Email Account...

    I'm trying to update the certificate for my Exchange Email Account...Dell had me delete the account, install the new certificate on my phone, and set up the email again...But it still won't work and acts like it can't find/use the new cert.  Any suggestions besides a hard resest of the phone?

    That's a great question, LSchmitz!
    Is the e-mail account on your cell phone? Which device? If its on your phone, an Exchange e-mail, may need to be provisioned/ set up by your employer/ IT department.
    VanessaS_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • TS1398 After the 6.0.1. update on my iPhone 4s the option for wifi has greyed out and cannot be selected. What can I do to restore wifi?

    I have held off updated my iPhone 4s with the 6.0.1 but having problems connecting to wifi I thought maybe being out of date was the problem.
    Having done the update the wifi option is now greyed out and cannot be selected at all.  I have rebooted, forgotten networks and turned on and off so many times.  There is nothing wrong with the wifi at home as other devices connect no problem.  What can I do?

    I'll repeat the Apple support pages linked in the previous post:
    http://support.apple.com/kb/TS1559
    Go through the step outlines there starting at the top and work down until you've solved the problem.

  • HT1918 I cancelled a payment through PayPal. How do I update the payment for that charge?  I looked at my payment information and it has my credit card information.  I'm not sure where to update the PayPal part of payment.

    I cancelled a payment through PayPal. How do I update the payment for that charge?  I looked at my payment information and it has my credit card information.  I'm not sure where to update the payment that was associated with my PayPal account?  I am not sure what that paid for?  I am trying to process updates on my IPhone &amp; IPad for apps. I have already downloaded. 

    Hi Xellana, and a warm welcome to the forums!
    I'm looking for information and pricing on possibly upgrading the processor from the PowerPC to Intel.
    While anything is possible if you had enough money... NOPE, you can't change the CPUs to Intel, nor can you get any faster PPC upgrades for it. It'd be far cheaper to buy a new IntelMac than to replace everything inside the G5, and I mean just about everything, then figure out how to machine the case & such to mount Intel Logic Board, Graphic Card & such.
    Sorry.

  • I tried to update the software for my iPhone 4S. It froze, and now won't turn off, or on, or sync.  Any ideas on how to fix this?

    I tried to update the software for my iPhone 4S, 16 GB to the most recent version (8.1?).  I don't know what I was updating from, because I can't access that, but it was whatever was installed on it (I got it about a year ago, so probably 6.something). 
    It froze, and now won't turn off, or on, or sync with my macbook plus, which is what I have always sync'd it to.  (I backed it up and sync'd it right before I tried to update the software.)
    Since it originally froze almost 3 hours ago, it shows a white screen with the apple on it and a line underneath.  When I try to sync with my laptop, it says it needs me to enter a passcode on the phone, which I can't enter because the screen is frozen.  So I'm unable to access the iPhone portion of iTunes.
    I have tried to turn it off, with no luck.  I have tried rebooting my laptop and syncing, but I still get the same result.
    Does anyone know how to fix this?
    I really wanted to wait to update the software, but I was having internet connectivity issues for the past 3 weeks, and Sprint suggested updating the phone's software.
    Thanks in advance for your help!

    Hi NWL1,
    Thanks for the question. If I understand correctly, the iPhone won't update and is stuck. I would recommend that you read this article, it may be able to help you resolve or isolate the issue.
    If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support
    Thanks for using Apple Support Communities.
    Have a great day,
    Mario

Maybe you are looking for

  • PDF Forms

    Hello, I have forms that were created in LifeCycle Designer and then saved as a PDF. We have the forms fully functional with an email submit button and a printing option. The issue is, sometimes some of the forms that are submitted by e-mail do not m

  • Gnome-java Widget question (sorry if this is the wrong section)

    I have created three files, yes i know naming conventions and spelling is an issue, but bare with me. I plan to clean all this up as soon as I get this issue figured out. right now I am flinging mud like a howler monkey. File One is a test file that

  • Fit to Fill ????

    Can someone please tell me where Fit To Fill is in FCP X? I have looked all over this thing and i cannot find it. I am ready to ask for a refund too. There are just to many things missing... Please do not tell me this is missing. Or tell me the new w

  • The new update makes it impossible for me to connect to any website

    The update to Firefox 35 was made automatically when I opened the browser and now not a single website can appear. The browser says it can't connect to the website and that the "waiting delay is over". Usually I get this page when my Internet is off,

  • Query Problem......Urgent Please.....

    Hi all I am facing problem with following Query , Could you please any body assist me It is urgent task. SELECT load_id, file_name, num_pages, TO_CHAR((process_start_date,'DD-MON-YYYY HH24:MI:SS'),(process_end_date,'DD-MON-YYYY HH24:MI:SS'), (creatio