Can a Cube or ODS be transported along with contents

Hi All,
Can we transport InfoProviders along with their contents?
Our requirement is: We have few InfoProviders in QA which have been loaded with actual data, but unfortunately we lost the data files.
Now we want to move these objects to Production, is there any way we achieve this?
Please let me know.
Regards,
Vikrant.

hi Vikrant,
or you can use data mart scenario,
create source system bw qa in prod, replicate datasource,
create new infosource in prod and assign with ods generated datasource 8[odsname] from bw qa.
create update rules for ods and assign with this new infosource. create infopackage with 'full upload'.
hope this helps.
technically i think it's possible to transport ods active table entries, but not recommended, we can change ods active table (se11) to 'maintainance allowed', then se16, display all records, and choose menu 'table entry'->'transport entries'. create request and import to prod.

Similar Messages

  • How can I stop multiple tabs from opening along with Mozilla Firefox Start Page at launching time.How can this be stopped?

    Whenever I launch Firefox, multiple tabs also start to open along with the Mozilla Firefox Start Page, which is very irritating. How can I stop this to happen each time I launch the browser?

    See these articles for some suggestions:
    * https://support.mozilla.com/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox
    * https://support.mozilla.com/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols
    * http://kb.mozillazine.org/Preferences_not_saved
    It is also possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/sessionstore.js
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • Can we add button in query region  along with go and clear

    Hi Friends,
    i have a requirement as below steps-
    1)i have developed search pgae by using query regiion
    2) in pgae,first we have search items,go and clear(submit buttons), table region.
    3)here go and clear buttons came automatically.
    4) i can able to add button in front of the page and end of the page.
    4) my requirement is i need to add one more button along with go and clear(here go and clear button are in between search items and table region) .
    5)i am not able to add button along with go and clear.
    Can any one know how to do this--
    Thanks in Advance
    vamshi

    Hi Vamshi,
    You can not create extra buttons in Standard Query region.
    Alternatively you can create your custom region for the search and there you can add a button. If you don't need advanced region, you can create the custom region in place of standard one.
    Anoop

  • Can you run both the latest Safari along with 4.0 beta?

    I'd like to play with the Safari 4.0 beta, but can't afford to lose my regular Safari along with its bookmarks, bank links etc.
    Can I run both on the same machine and just start up whichever one I want?
    P.

    Is there any possibility that the new Safari-4beta is causing my menus to freeze-up? I find my menu bars are often dead and I have to switch to another program-- even those are sometimes dead too, and after 30 seconds one comes to life, then they all do, but then go back to frozen again.
    I wouldn't put anything past Safari 4. Its mere presence causes the currency converter widget to give wrong answers.
    I tried to use the uninstaller, but it would not work; then I tried to just install Safari 3.2.1 - but it would't do this "Can't install since you have a newer version on your Mac"-- Safari 4 Beta did NOT do this on TIGER- but this was my weekend to switch to Leopard after 13 months of prepartion...
    If the unistaller won't work, I don't think there is any way to get back to the old Safari without either reinstalling OSX, or restoring from Time Machine (using the Utilities menu on the Leopard install DVD) and choosing a backup before you installed Safari 4.

  • Can we use Case in Where Clause along with Exists

    Hi Everybody,
    Can we use Case in the where clause with exists? As i have a requirement in which i have to check whether value exists in 6 views, now depending on some value(gns_type )of select clause i have to attach a paticular exists else the performance dies.
    Please go through the query any suggestion appreciated.
    Thanks
    SELECT count(*)
    FROM
    (SELECT eah.changed_date,
    decode(eua.is_deleted, 'N', decode(eah.alert_type, NULL, 'GN', 'R', 'GAR', 'G', 'GAG', 'Y', 'GAY'), 'Y', decode(eah.alert_type, 'R', 'GDR', 'G', 'GDG', 'Y', 'GDY', NULL, 'GN'), NULL, 'GN') AS
    alert_type,
    decode(eac.pta_line, 'N', '') ptaline,
    eac.exp_type_desc,
    eac.supplier_name,
    eac.transaction_id,
    eah.gns_type,
    eac.po_amount,
    eac.po_end_date,
    eah.notes,
    eua.is_deleted,
    eac.expenditure_type,
    eua.gns_alert_summary_id,
    eah.changed_date alert_date,
    eua.user_alert_id,
    eah.reference_number,
    decode(eac.cms_pta_line,'N','',eac.cms_pta_line) cms_pta_line,
    cms_po_amount,
    cms_po_end_date,
    mgns.is_decommitted,
    eac.gns_alert_id,
    eah.gns_type source_name
    FROM xxdl.xxdl_sc_gns_alerts_summary eah,
    xxdl.xxdl_sc_gns_detail_alerts eac,
    xxdl.xxdl_sc_gns_user_alerts eua,
    xxdl.xxdl_sc_manage_gns_master mgns
    WHERE eah.gns_alert_summary_id = eac.gns_alert_summary_id
    AND eah.gns_alert_summary_id = eua.gns_alert_summary_id
    AND eah.transaction_id = eac.transaction_id
    AND eah.transaction_id = mgns.transaction_id)
    a
    WHERE(EXISTS
    (SELECT 1
    FROM xxdl_sc_mng_gns_pta_req_hc_v x
    WHERE x.transaction_id = a.transaction_id
    AND x.source_name = a.source_name
    AND x.project_id = 69309
    AND x.task_id = 242528
    AND x.award_id = 34694)
    OR
    EXISTS( SELECT 1
    FROM xxdl_sc_mng_gns_pta_inv_hc_v x
    WHERE x.transaction_id = a.transaction_id
    AND x.source_name = a.source_name
    AND x.project_id = 69309
    AND x.task_id = 242528
    AND x.award_id = 34694)
    OR
    EXISTS(SELECT 1
    FROM xxdl_sc_mng_gns_pta_req_sc_v x
    WHERE x.transaction_id = a.transaction_id
    AND x.source_name = a.source_name
    AND x.project_id = 69309
    AND x.task_id = 242528
    AND x.award_id = 34694)
    OR
    EXISTS(SELECT 1
    FROM xxdl_sc_mng_gns_pta_inv_sc_v x
    WHERE x.transaction_id = a.transaction_id
    AND x.source_name = a.source_name
    AND x.project_id = 69309
    AND x.task_id = 242528
    AND x.award_id = 34694)
    OR
    EXISTS( SELECT 1
    FROM xxdl_sc_mng_gns_pta_po_sc_v x
    WHERE x.transaction_id = a.transaction_id
    AND x.source_name = a.source_name
    AND x.project_id = 69309
    AND x.task_id = 242528
    AND x.award_id = 34694)
    OR
    EXISTS (SELECT 1
    FROM xxdl_sc_mng_gns_pta_po_hc_v x
    WHERE x.transaction_id = a.transaction_id
    AND x.source_name = a.source_name
    AND x.project_id = 69309
    AND x.task_id = 242528
    AND x.award_id = 34694)
    AND TRUNC(alert_date) >= TRUNC(add_months(sysdate, -1))
    AND TRUNC(alert_date) <= TRUNC(sysdate)
    AND is_deleted = 'N'
    ORDER BY changed_date DESC

    you can do
    WHERE
    CASE WHEN (something) THEN
      CASE WHEN EXISTS (SELECT * from ...) THEN 1 ELSE 0 END
               WHEN (something else) THEN
         CASE WHEN EXISTS (SELECT * from ...) THEN 1 ELSE 0 END      
    END = 1Looking at your current query, it looks like all those exist statements could be a lot neater, maybe like:
    WHERE (69309,242528,34694) IN
    (SELECT project_id,task_id,award_id FROM
      (Select project_id,task_id,award_id,transaction_id,source_name
      FROM
      xxdl_sc_mng_gns_pta_req_hc_v
      UNION ALL
      Select project_id,task_id,award_id
      xxdl_sc_mng_gns_pta_inv_hc_v
      ...) x
    where a.transaction_id = x.transaction_id
    and a.source_name = x.source_name
    )or put the tuple in the where clause at the bottom

  • Need to Copy a subform along with content from one page to another page

    Hi All,
    I am new to Adobe Live Cycle .
    I am facing a particular problem in one scenario.
    I have a growing list of item i.e the number of Items are uncertain. I have put all these item in a sub form.
    Now I need a copy of this sub form from the First page to the 2nd Page.
    Basically , I want to copy a Subform along with the content from one page to another.
    Can anybody please help me.

    In source project open Tempo List (the one that is a list editor). Select all tempo changes and "copy them (command+c)
    close project
    Open destination project, open Tempo List delete all information and paste (command+V). Remember that Logic should be stopped at the exact position where the first tempo event happens. This is ussually 1.1.1.1, but check it in the source before closing it.
    hope this helps.
    regards

  • Broadcasting scheduling settings not transported along with object BRSE

    Hi ,
    I transported object BRSE (broadcasting object) with the Transport Connection (RSA1 transaction) from development system to the test one. I also transported previously the object TMPL (the Web Template in which I customized the broadcasting).
    The transportation was succesfull, everything was transported Ok except from the broadcasting schedulling settings. I really don't know why?
    I'll appreciate any help on this issue.
    Best regards,

    Hi Alex and thank you for your answer.
    The transport log shows this warning:
    Event ZSICO_LDM (DC) does not exist; registration of setting Z_ENVIO_QUERY_RECONC_RC deleted
    Broadcast setting Z_ENVIO_QUERY_RECONC_RC activated successfully
    We don't created any event manually, so we think that ZSICO_LDM is an event that was automatically created.
    Z_ENVIO_QUERY_RECONC_RC is our Broadcasting scheduling that sends a query by e-mail.
    Now we can see Z_ENVIO_QUERY_RECONC_RC on RSA1 -> Metadata Repository finding the query, but when we open the broadcast settings for this query, it does not appears.
    Do you know why?
    Thanks a lot.
    B.R.

  • How can we export the Primary key values (along with other data) from an Advantage database?

    One of our customers is moving from our application (which uses Advantage Database Server) to another application (which uses other database technology). They have asked us to help export their data, so that they can migrate it to another database system. So far, we have used the Advantage Data Architect (ARC32) "Export Table Structures as Code" functionality to generate SQL. We used the "Include existing data" option. The SQL contains the necessary code to recreate the tables and indexes. The customer's IT staff will alter the SQL statements as necessary for their new system.
    However, there is an issue with the Primary Keys in these table. The resulting INSERT statements use AutoInc as the type for the Primary Key in each Table. These INSERT statements contains "DEFAULT" for the value of each of these AutoInc fields. The customer would like to output an integer value for each of these Primary Key values in order to maintain referential integrity in their new system.
    So far, I have not found any feature of ARC32 that allows us to export the Primary Key values. We had been using an older version of ARC32, since our application does not use the latest version of ADS. I did download the latest version of ARC32 (11.10), but it does not appear to include any new functionality that would facilitate doing this sort of export.
    Can somebody tell me if there is such a feature in ARC32?
    Or, is there is another Advantage tool to facilitate what we are trying to accomplish?
    If there are no Advantage tools to provide such functionality, what else would you suggest?

    George,
      It sounds like the approach you are using is the correct one. This seems to be the cleanest solution to me especially since the customer is able to modify the generated SQL statements for their new system.
      In order to preserve the AutoInc values I would recommend altering the table and changing the field datatype from AutoInc to Integer. Then export the table as code which will export the actual values. After the tables have been created on the new system they can change the field datatype back to an AutoInc type if necessary.
    Regards,
    Chris Franz

  • Is it possible to attach photos to a form prior to submission?  For example, if I have an employee in the field completing a property inspection, can photos of the property be submitted along with the form?

    I have to inspect properties for my business and have created a form that describes the condition of the property.  This form is great for my agents in the field, however, it would be really great if they could attach photos of the property to accompany the submission.  Is this possible?  Can it be considered on the wish list?

    Hi,
    Yes, you can create a file attachment field in the form and have your employee upload the pictures.
    Thanks,
    Wenlan

  • How can I get my mike to work along with my camera??

    I recently made some videos on Photo Booth, but when I played them back the picture was ahead of the sound. I haven't had this problem before. I wish to share my videos with my friends and family, but not if they aren't working correctly. I would like any advice or suggestions to fix this.

    You can try importing them into iMovie, in the editing suite, it allows to drag the aidio to help it sync bettter.

  • Can I get the date to display along with the day and time

    can I get the date displayed with the day of week and time?

    Hi Mary, you can, but what version of OSX are you running on what Mac?
    See if this helps for starters...
    http://paulstamatiou.com/how-to-display-date-in-os-x-menu-bar

  • How can I use the concept knowed as "MasterPage" with "Content" in JSF ?

    In ASP.NET ( Microsoft .NET ) and in PRADO Framework (PHP) there is concept to separate the portions of page in separate templates.
    For example, all pages of this site share the same header and footer portions.
    If we repeatedly put header and footer in every page source file, it will be a maintenance headache if in future we want to something in the header or footer.
    So, I think I found a way to solve that!
    it would be this:
    http://people.apache.org/maven-snapshot-repository/org/apache/myfaces/tomahawk/myfaces-example-tiles/1.1.4-SNAPSHOT/
    The war file is this: myfaces-example-tiles-1.1.4-SNAPSHOT.war
    It has been successfully deployed on my machine, but I didn't can implement the same functionality in my application.
    has anyone already use tiles to solve that problem?
    what are its dependencies?
    is there another approach?
    Regards!

    yes!
    That's right !!
    I already knew.
    I found an interesting link about my question.
    take a look: http://forum.exadel.com/viewtopic.php?t=968
    it sounds a little different because in that approach it's necessary only ONE "master page" for the application.
    On the other hand, as you said would be necessary for each page something like this:
    home.jsf
    <f:view>
        <jsp:include page="header.jsp" />
        <h1>home</h1>
        <jsp:include page="footer.jsp" />
    </f:view>
    about.jsf
    <f:view>
        <jsp:include page="header.jsp" />
        <h1>about</h1>
        <jsp:include page="footer.jsp" />
    </f:view>did you understand?
    I think this approach a litle worse than one another because I must place many times the includes "header.jsp" "footer.jsp" and so on.
    what do you think about that solution?

  • Using Managed Paths along with Content Deployment Jobs

    I have a quick question relating to Managed Paths and Content Deployment paths/jobs.  I have a main web app with about 10 or so managed paths underneath.  So for example webapp.com/accounting, webapp.com/IT, webapp.com/marketing.  Then I have
    all my site collections grouped under each managed path.  I'm trying to set up some content deployment paths and jobs to deploy into another environment.  When I set it up at the main web app level, it only deploys content at that level and not through
    the sites under the various managed paths.  In this scenario, am I required to set up a content deployment path and job for each and every site collection?

    Hi Mark,
    Per my knowledge, the content deployment deploys content from a source site collection to a destination site collection.
    The content deployment paths and jobs are defined at the site collection level, so if the select the root site collection as the source site collection, then only content in the root site collection can be deployed to the source site collection.
    If you need to deploy other site collections’ content, then you need to create new content deployment paths and jobs to define the source site collection to be the site collection which you need.
    More references about the content deployment:
    http://technet.microsoft.com/en-us/library/ee721058(v=office.14).aspx
    http://melick-rajee.blogspot.kr/2011/10/how-to-do-sharepoint-2010-content.html
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • How to create a 'Previous History' brush tool along with content aware

    Truly did not know how to create a good title here.
    When you use the 'Content Aware' tool and move subject 'A' to point B what happens is that A now sits on top of B which in turn means part of the image within B may be missing and you may still want it there where it was and where it should be. You could use the 'history brush' tool to brush away part of the new insert and erase what is there to reveveal what was there. How do you do the same thing to image A which now sits on B (to reveal what was there on A originally). What I mean is this. I moved a person from point A to point B. but parts of this person are missing (his ear, his knee, his shoe) so how do I get those parts back (in the new location)?
    The history brush tool appears to be erasing by subtracting, what I would like to do in this case of course is not subtract but add or 're-add'.
    Thank you

    Hello,
    here's a possible solution, before using content aware, take a snapshot of A and B, then use it as your history brush source whenever you need to 're-add':
    please post back if you have any questions

  • How to write newline character to file using bytes along with content

    Hi All,
    I need to write headers into the file using byte[]. I am creating the strings of header which will form the different rows in the file. I am new to java and would like to know how to embed new line character so that when the byte[] is written to file headers come in different rows.
    like
    hrd1:abcd
    hdr2:1234
    when i embed \n and \r in string and do getBytes() and write it to file, some boxes are written in the file and everything comes into single line.
    Please advice me the correct way .
    Thanks in advance.
    Cheers!!
    Puneet

    not sure about it, but i was always told that "\r\n" meant "new line" on "lots of documents" whereas "\n" only or "\r" only were meaningless on some type of documents

Maybe you are looking for

  • Need some help re:  OS 9, OS X 10.2 and Leopard on PowerBook

    I have begun experimenting with a Titanium PowerBook G4 I have that I hadn't used in years.  It had Jaguar and OS 9 installed originaly and I recently upgraded to Leopard.  I then decided that I wanted to see what OS 9 was like so today, I partitione

  • Charts - More then 15 value in X axis

    Hi guys, I couldn't find how to show more then 15 value in X axis in 2D column chart. It only shows 15 values in default. I searched Chart xml but i couldnt find that which code block i need to change.. Could you pls help me.? Thanks

  • Exporting Result from resultset iview through EPCF eventing

    Hi I am trying to Export the data from Result Set Iview to Excel using a Java Web dynpro application. I am passing an MDM search parameter but when I am trying to get the value ,its coming as null... This is what I am doing: public void wdDoInit() //

  • Microsoft sql client deadlocked on lock resources with another process

    Hi I wrote a forecasting report for a customer which creates an excel spreadsheet with the information Depending on how they run the report it can take between 5 to 15 minutes to run We have just upgraded the customer to SAP 8.8 PL10 and Microsoft SQ

  • Message no. F5A282

    Hi, I am getting warning message no. F5A282 "No items cleared from account of payee 2000000270. I want to convert this message into error. Please inform me IMG step to convert the message in error. Regards, Vinay