Can we  export the bdcrecording   testing to  development  system?

Hi  guys,
Can we export the bdc recording  file  testing system to development system? can we use that file in development system ?
Thanks  in advance .
Moderator message: please try finding out yourself first.
Edited by: Thomas Zloch on Nov 9, 2010 11:40 AM

Yes you can. Atleast in a ECC 6 version.
Vikranth

Similar Messages

  • Why I can't export the table-TEST?

    "exp userid=system/manager file=c:\abc.dmp tables=HELP"(one of initial tables) does work,
    while "exp userid=system/manager file=c:\abc.dmp tables=TEST" throw"EXP-00011: SYSTEM.TEST does not exist"(I create the table-TEST when I logon OEMC with system/manager)

    If you have created the TEST table in the SYSTEM schema, then it should export it. However, fire the below query in SQL Plus and paste the output here. Fire this query as SYS user.
    SELECT OBJECT_NAME,OWNER
    FROM DBA_OBJECTS
    WHERE OBJECT_NAME='TEST'
    However, what I suspect is that you might have connected from OEM using SYSTEM login with the SYSDBA option. And if you use the AS SYSDBA clause while connecting to the database then it will connect to the SYS schema irrespective of the login id used. Thus if you connect using SYSTEM/MANAGER@ORCL AS SYSDBA then you actually get connected to SYS schema and not SYSTEM. You can verify this by SHOW USER command after you login to SQLPlus.
    Regards.

  • Can I export the form I created in Adobe Reader?

    can I export the form I developed in the Formscnetral in Adobe reader?

    Hi there
    This is a question that is likely better suited for the forum supporting PDF reader. However, I seem to recall seeing something a year or four back that said this was a preference for each user. If that still holds true today, it would mean that you really have no control over it from the authoring end and machine A might open it and see it in the reader as you want, while machine B might open it and see it in the browser.
    Hopefully others will share more light on this. Until then, I'd recommend using Google to search for opening PDFs from browser links.
    Cheers... Rick

  • HT2486 how can I export the contact book data to a csv file for editing?

    how can I export the contact book data to a csv file for editing?

    You can edit a card right in Contacts. No need to export and re-import.
    Select a name and on the right side, click the Edit button:

  • How can I export the universe  to CSV format in Rational      (java)

    How can I export the universe to CSV format in Rational ,please give me one demo .thanks!!

    There's no direct access to an Universe from Java - Universes do have an SDK, but it's COM-based.
    If what you want is to retrieve data from the Universe, what you can do is create a Web Intelligence document reporting off that Universe, create a Query with the data you want from the Universe, then use the ReportEngine (REBean) SDK to retrieve the ResultSet from the Query - note that there's no CSV export option, so you'd have to walk through the ResultSet and write to an CSV yourself.
    Sincerely,
    Ted Ueda

  • How can I export the results of a query?

    After executing a select statement I can see the results in a grid but how can I export the results (the data)?
    How can I export the results of a join of two or more tables?

    Right click in the results grid and select the Export menu option

  • How can we export the data from OAF Page to Excel instead of .csv or .txt

    Hello,
    How can we export the data from OAF Page to Excel instead of .csv or .txt
    When i click on the export button it is exporting to txt file, But i need to export the data into Excel by default
    Please help me
    Thanks in advance
    Thanks,
    Raju
    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju
    Edited by: 1006649 on May 21, 2013 10:55 AM

    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju

  • In Responses, Can I export the data in a pdf form excluding null data?

    In Responses, Can I export the data in a pdf form excluding null data?

    Let me make sure I understand the request...  There is a feature in the Response table to "Save Response as PDF Form" and you'd like to do this excluding the null data (unanswered questions).  If that is correct it is not supported, the "Save Response as PDF form" will save a PDF that is the entire form filled out as the user filled it.
    Thanks,
    Josh

  • How can i export the data to excel which has 2 tables with same number of columns & column names?

    Hi everyone, again landed up with a problem.
    After trying a lot to do it myself, finally decided to post here..
    I have created a form in form builder 6i, in which on clicking a button the data gets exported to excel sheet.
    It is working fine with a single table. The problem now is that i am unable to do the same with 2 tables.
    Because both the tables have same number of columns & column names.
    Below are 2 tables with column names:
    Table-1 (MONTHLY_PART_1)
    Table-2 (MONTHLY_PART_2)
    SL_NO
    SL_NO
    COMP
    COMP
    DUE_DATE
    DUE_DATE
    U-1
    U-1
    U-2
    U-2
    U-4
    U-4
    U-20
    U-20
    U-25
    U-25
    Since both the tables have same column names, I'm getting the following error :
    Error 402 at line 103, column 4
      alias required in SELECT list of cursor to avoid duplicate column names.
    So How can i export the data to excel which has 2 tables with same number of columns & column names?
    Should i paste the code? Should i post this query in 'SQL and PL/SQL' Forum?
    Help me with this please.
    Thank You.

    You'll have to *alias* your columns, not prefix it with the table names:
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id, b.id, a.val1, b.val1, a.val2, b.val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
      for rData in cData loop
    ERROR at line 18:
    ORA-06550: line 18, column 3:
    PLS-00402: alias required in SELECT list of cursor to avoid duplicate column names
    ORA-06550: line 18, column 3:
    PL/SQL: Statement ignored
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id a_id, b.id b_id, a.val1 a_val1, b.val1 b_val1, a.val2 a_val2, b.val2 b_val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
    PL/SQL procedure successfully completed.
    cheers

  • How can I export the tickets into excel sheet?

    You can edit the report to display the specific information you need.  After choosing "Edit" for the report, you'll find a section at the bottom called "Columns to Display".  Pick and choose exactly what you want, and then click the button for "Save and Run".

    How can I export the tickets in to excel sheet? or get a report
    This topic first appeared in the Spiceworks Community

  • Can you export the date and user to Excel that appears into a Comments field in a tracking list?

    Hi everyone,
    Can you export the date and user to Excel that appears into a Comments field in a tracking list?
    When i export a tracking list with a Comment field in the Content type, the screen where you enter the data for an item, the Comments field just export the text of the comment into the Excel file.
    In the Comments field appears also, besides the comment text,  the user and date from who and when the comment is added.
    Is there a way to export also the user and the date?
    Thanks
    Wim

    create another comment field that doesn't use 'appending', and through SP Designer change workflow keep
    updating that field with the new comments  (prepend the field with date/username/new comment). Hide the field on all forms, but put it in the view you need to export to Excel.
    Please refer few more links: Hope they will help
    http://www.nothingbutsharepoint.com/2009/04/16/versioning-append-changes-to-existing-text-view-entries-aspx/
    http://sympmarc.com/2011/02/07/showing-all-versions-of-append-changes-to-existing-text-in-a-data-view-web-part-dvwp/comment-page-3/
    https://mossipqueen.wordpress.com/2013/03/06/display-all-appending-field-entries-in-a-single-list-view/
    http://community.office365.com/en-us/f/154/t/278560.aspx
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Can you export the audio into a SINGLE file?

    I know I can export the individual slide audio, but can I
    export the audio for all the slides into one audio file? How?
    Thanks!

    Hi benhenny
    Sure can! Check the following link.
    Click Here
    Cheers... Rick

  • Can LR show the numbers in Quick developement panel?

    Try to use quick development panel, it is easy to use but for exposure, clarity and vibrance you cannot see how many stops you have adjusted.
    Can LR show the numbers in Quick development panel?
    Any comment?

    >tt688 - 6:49am Sep 23, 08 PST (#2 of 6)
    >I think that Quick Deve function is useless if you can not see the how >many stops you have adjusted.
    When LR first came out I did not "get" the Quick Dev function. Luminous Landscape have an excellent video tutorial for LR by Michael Reichmann and Jeff Schewe.
    It explains that the QD function is there to allow you to make quick visual adjustments to images to assist in choosing picks / rejects and generally culling a shoot. Until you have the exposure / contrast / colour balance somewhere near correct, it is difficult to properly evaluate a shot. Using QD like this then makes sense, it's not supposed to duplicate or take the place of the develop module.
    Note that the adjustments you make in QD are relative, that is if you select a group of generally underexposed shots and increase the exposure the amount will be relative to each shots original exposure level.

  • I have an iMac(mid2010) running Pages v5.5.1 on OS X 10.10. Why can I not save or share documents. The error message is You can't save the file "TEST.pages" because the volume is read only.

    I have an iMac(mid2010) running Pages v5.5.1 on OS X 10.10. Why can I not save or share documents. The error message is You can’t save the file “TEST.pages” because the volume is read only.
    I get the same message when using Numbers so I presume it is a OS problem

    Some of your user files (not system files) have incorrect permissions or are locked. This procedure will unlock those files and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Back up all data before proceeding.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button
    Select
               ▹ Restart
    from the menu bar.

  • Can we change the Work Repository  from Development to Execution?

    hi,
    Can we change the Work Repository from Development to Execution? if yes then how can we change it?
    Regards,

    AMSI wrote:
    hi,
    Can we change the Work Repository from Development to Execution?No .
    if yes then how can we change it?
    Regards,

Maybe you are looking for

  • Apache with OracleXE Apex...

    Hi, I installed OracleXE on my laptop. I would be able to go to Start/All Programs/Oracle Database 10g Express Edition/Go To Database Home Page (which is C:\oraclexe\app\oracle\product\10.2.0\server\Database_homepage.url) I had installed my APEX app

  • Can't get a wifi connection

    Can anyone help me. I am struggling to get a internet connection on my ipad 2. My home wifi is working (mac book working fine), but despite my ipad showing i am connected to my home wifi, Safari says "safari cannot open the page because it is not con

  • Sales Return to another plant

    My client sells the materials from plant A, but all the sales return are to be received in plant B. In plant B it is only kept at for storage and repair. After repair we send the material back to customer. Is it possible to do this? Regards Edited by

  • Reducing column width in /sapapo/sdp94 planning book

    Hi , I would like to reduce the width of the column for field APO Location . But I am not understanding where we can change these setting for fields . Fileds like SNP Plan  ,  APO location , unit ,  W30.2010 , W31.2010 like so on but I need to  reduc

  • Moving into a coordinate text file?

    Hello, Is it any easy way in LabView to move inside a coordinate file?? Let's say I have a .txt file with 2 columns: Xcoord    Ycoord 12            2 4              9 3              1 5              7 etc... My question is about the best/easiest way