Oracle Export Submit Fails : Export Utility in OEM 10g

Hi
When I tried to take backup of a selected Schema, I got the following error message..
Database Name : TTS
Schema Name : OMS
ORA-20204: User does not exist: TTS ORA-06512: at "SYSMAN.MGMT_USER", line 122 ORA-06512: at "SYSMAN.MGMT_JOBS", line 139 ORA-06512: at "SYSMAN.MGMT_JOBS", line 78 ORA-06512: at line 1
Pls help on this..
Rgds
Sundaram

This could be a RLS SYMAN policy Issue.I was getting this error while try to select the sysman table from other schema.
Now I am trying to add my user to EM_JOB_POLICY or grant policy to user.
Policy function execution error:
Logon user : OEMUSER
Table/View : SYSMAN.MGMT_JOB
Policy name : EM_JOB_POLICY
Policy function: SYSMAN.MGMT_USER.EM4745545052454449434154454A
ORA-20204: User does not exist: OEMUSER
ORA-06512: at "SYSMAN.MGMT_USER", line 8458
ORA-06512: at "SYSMAN.SETEMUSERCONTEXT", line 10
ORA-06512: at "SYSMAN.MGMT_USER", line 8032
ORA-06512: at line 1

Similar Messages

  • Export via EM "Submit Failed"

    I'm trying to export a schema (using OS credentials that have batch job privs), and get all the way through the workflow in EM to submit the job, but it returns the following:
    Export Submit Failed
    Index: 3, Size: 3
    followed by
    Export Type Schemas
    Statistics type Estimate optimizer statistics when data is imported
    Direct Path No
    Fail jobs only on errors (not on warnings) No
    Files to Export C:\KFC\DB Exports\EXPDAT.DMP
    Maximum File Size (MB) 2048
    Log File C:\KFC\DB Exports\EXPDAT.LOG
    Export paramaters are:
    FILE=C:\KFC\DB
    Exports\EXPDAT.DMP
    LOG=C:\KFC\DB
    Exports\EXPDAT.LOG
    OWNER=SYS
    GRANTS=y
    INDEXES=y
    ROWS=y
    CONSTRAINTS=y
    CONSISTENT=n
    What is this indicative of?

    Just to wrap this up, it appears that in order for this to work, you need to have a local account with the "log on as batch" privilige, and I'm guessing it is the account you tell Oracle about during the installation. I was unable to give this account (a local admin account) that right, but our MIS folks were able to do that and then things worked. I don't know if both the local and the domain accounts need to have that right, but there at least has to be a local one that does, and I am guessing it is because the job is run as a batch job using that local user account.
    Case closed!

  • HFR LCM Export not working through Utility.bat

    Hi,
    I'm trying to export HFR reports through a batch by creating the export XML through Utility.bat as shown below:
    SET V_LCM_UTILITY=D:\%srvr%\Middleware\user_projects\epmsystem1\bin\Utility.bat
    ::Export Location
    SET V_DIR=D:\EXPLOIT\SRV\LCM
    SET V_XMLFILE=%V_DIR_BCK%\HFR.xml
    echo ^<?xml version="1.0" encoding="UTF-8"?^> > %V_XMLFILE%
    echo ^<Package^> >> %V_XMLFILE%
    echo     ^<LOCALE^>en_US^</LOCALE^> >> %V_XMLFILE%
    echo     ^<User name="" password="%%"/^> >> %V_XMLFILE%
    echo     ^<Task^> >> %V_XMLFILE%
    echo         ^<Source type="Application" product="HAVA" project="Reporting and Analysis" application="Reporting and Analysis"/^> >> %V_XMLFILE%
    echo         ^<Target type="FileSystem" filePath="HFR/"/^> >> %V_XMLFILE%
    echo         ^<Artifact recursive="true" parentPath="/Admin Options" pattern="*"/^> >> %V_XMLFILE%
    echo         ^<Artifact recursive="true" parentPath="/Physical Resources" pattern="*"/^> >> %V_XMLFILE%
    echo         ^<Artifact recursive="true" parentPath="/Product Preferences" pattern="*"/^> >> %V_XMLFILE%
    echo         ^<Artifact recursive="true" parentPath="/Schedule Objects" pattern="*"/^> >> %V_XMLFILE%
    echo         ^<Artifact recursive="true" parentPath="/Security" pattern="*"/^> >> %V_XMLFILE%
    echo     ^</Task^> >> %V_XMLFILE%
    echo ^</Package^> >> %V_XMLFILE%
    REM Execute xml for HFR
    CALL %V_LCM_UTILITY% %V_XMLFILE% > %V_DIR%\Log\HFR.log
    But I'm getting the following error:
    LCM Callback URL not avaialble
    LCM Callback URL not avaialble
    Migration Status - Completed with failures. 
    Thanks in Advance for your Help
    Regards,
    Kousalya

    It works for me so I don't think the logic is wrong
    SET V_LCM_UTILITY=E:\Oracle\Middleware\user_projects\epmsystem1\bin\Utility.bat
    SET V_XMLFILE=E:\EPM_SHARE\export.xml
    SET V_OUTPUTDIR=E:\EPM_SHARE
    CALL %V_LCM_UTILITY% %V_XMLFILE% >> %V_OUTPUTDIR%\export.log
    The error "LCM Callback URL not available" sounds more like a configuration issue.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Export backups failing - Need advice

    Hello All,
    We have a 10.2.0.3 database for which we have to take export backups everyday in maintainence window, when only batch jobs and other non essentials SQL's are running on the database.
    The export command we have used in our script is as under:
    $ORACLE_HOME/bin/exp / file=$ORACLE_DUMP_FILE compress=y full=y direct=n buffer=20480000 consistent=y statistics=none log=$ORACLE_LOGAtleast 3-4 times in a week, the export backup us failing with ORA-01555 errors like the one below:
    EXP-00008: ORACLE error 1555 encountered
    ORA-01555: snapshot too old: rollback segment number 10 with name "_SYSSMU10$" too small
    EXP-00000: Export terminated unsuccessfullyMy DB is configured as:
    SQL> show parameter undo_
    NAME                                 TYPE        VALUE
    undo_management                      string      AUTO
    undo_retention                       integer     54000
    undo_tablespace                      string      UNDOTBSAlso:
    SQL> select max(tuned_undoretention) from v$undostat;
    MAX(TUNED_UNDORETENTION)
                       75598The Max value is reached somewhere in the evening, but our job runs at
    SQL> select begin_time from v$undostat where TUNED_UNDORETENTION = 75598;
    BEGIN_TIME
    29/05/2012 17:39:46At the time (as per my log file) when my export job failed, the above value was:
    SQL> select TUNED_UNDORETENTION from v$undostat where BEGIN_TIME like '29/05/2012 16:2%';
    TUNED_UNDORETENTION
                  71318Please advice how the above issue can be addressed/resolved.
    For further information, please let me know. Thank you.
    Suddhasatwa
    India.
    Edited by: SBhaumik_DBA on May 30, 2012 9:50 PM

    Hello. Thanks for the inputs on CONSISTENT option. There are pre-laid change mgmt processes in every organisation which needs to be maintained/taken in account before such changes are made, and that too, with client approvals, etc. Since it was not a feasible option to get EXPDP or RMAN implemented at this point, so was this question raised.
    There is a small issue, however, if we use CONSISTENT=N. Below is an extract from asktom.oracle.com:
    >
    imagine if you started an export at 9am of the EMP and DEPT tables.
    EMP started exporting at 9am and DEPT at 9:15am.
    Now, the EMP data would be "as of 9am", but the DEPT data would be as of 9:15am. What if
    you import that data now -- will it work? maybe, maybe not -- perhaps at 9:10am, someone
    fired the last employee in department 50 and deleted department 50. Your EMP export
    would have them in this deptno, your DEPT export would not have this deptno. The import
    would fail.
    If you use consistent=y, Oracle will export all of the data "as of 9am", so deptno=50
    will be included in all tables and the import will succeed.
    >
    That's one of the risks involved.
    Is there any other solution we can have in place for this issue? Thanks.

  • EXPORT Backup failing due to character set problem

    Hi ,
    The export Backup failing due to character set problem
    . . exporting table ravidlx
    EXP-00008: ORACLE error 6552 encountered
    ORA-06552: PL/SQL: Compilation unit analysis terminated
    ORA-06553: PLS-553: character set name is not recognized
    P
    Please suggest how to set character set
    Regards,
    kk
    Edited by: kk001 on Aug 29, 2011 7:22 PM

    kk001 wrote:
    Hi ,
    The export Backup failing due to character set problem
    . . exporting table ravidlx
    EXP-00008: ORACLE error 6552 encountered
    ORA-06552: PL/SQL: Compilation unit analysis terminated
    ORA-06553: PLS-553: character set name is not recognized
    P
    Please suggest how to set character set
    I don't know what you have.
    I don't know what you do.
    I don't know what you see.
    It is really, Really, REALLY difficult to fix a problem that can not be seen.
    use COPY & PASTE so we can see what you do & how Oracle responds.
    do as below so we can know complete Oracle version & OS name.
    Post via COPY & PASTE complete results of
    SELECT * from v$version;

  • Error compiling movie in Premiere and failed export in AME (CS6) - PLEASE HELP!!!

    Hi,
    I'm trying to export from my timeline which contains multiple mxf files shot with a canon xf105. i'm using cs6 on an apple mac and I never had this issue before:
    When I try to export to a quick time movie directly from Premiere I get this message after 5 seconds:
    When I send the video to AME I get this message including a sound of a sheep after 10 seconds:
    I have about 100 7 second clips that make up an 11 minute movie. I copy and pasted 4 clips (28 seconds) into a new sequence and tried to export it and it worked, both directly through premiere and through AME. Does that mean that premiere and AME can't handle so many clips? Or why is it showing me an error?
    I'm helpless and I need to finish this project very soon, I would be SO GRATEFUL for any help. Don't know what to do ..
    Thank you!

    Thank you John. I sat all night for about 8 hours on it and found out what caused the error. I had about 100 clips in my timeline that I was trying to export as one movie. Four clips caused the error. These four clips would playback perfectly in premiere, the whole timeline would render and everything seemed normal. Only after exporting 5 clips at a time I could see where the export would fail and show an error. At the end it was four clips, these four would playback fail to export, causing the entire sequence to fail.
    I have one question about this:
    1 How and why did this happen? Does that happen often with MXF files shot on a canon xf camera?
    2 How can I avoid this to happen again in the future?
    3 Isn't there a quicker way to find out which clips are causing a problem, rather than having to export each of them first to find out (which is a very annoying thing to do if you're literallt working with hundreds of clips)?
    Would be great if somebody has any insight for future reference!!!
    Thank you!

  • Will SUBMIT report EXPORTING LIST TO MEMORY work, when Run in Background?

    You can use SUBMIT <report> EXPORTING LIST TO MEMORY, and then Call the FM LIST_FROM_MEMORY to get the Data.
    This works fine, when the Program is Run in Foreground. My question is, will it work when I Run the Program in Background? i.e. When I Run the Program in Background, will the SUBMIT Statement, Export the List to Memory? Because only then the FM LIST_FROM_MEMORY will get the Data.
    Any alternate solution to meet the same requirement will be appreciated.

    It works for me... my spool output looked like:
    11.01.2008          JC: Calling program - test list to memory                  1                                                                               
    ZLOCAL_JC_SDN_CALLING_PROGRAM                started at 12:54:29                        
    ZLOCAL_JC_SDN_CALLING_PROGRAM                call complete 12:54:30                     
    ZLOCAL_JC_SDN_CALLING_PROGRAM                started at 12:54:30                                                                               
    11.01.2008           JC: Called program - testing list to memory                                                                               
    ZLOCAL_JC_SDN_CALLED_PROGRAM                 was called at: 12:54:29                    
    for the following code:
    report zlocal_jc_sdn_calling_program.
    parameters:
      p_start(1)            type c.
    start-of-selection.
      perform testcase.
    *&      Form  testcase
    form testcase.
      data:
       lt_list              type table of abaplist.
      write: / sy-repid, 'started at', sy-uzeit.
      submit zlocal_jc_sdn_called_program
        exporting list to memory
        and return.
      write: / sy-repid, 'call complete', sy-uzeit.
      call function 'LIST_FROM_MEMORY'
        tables
          listobject = lt_list.
      write: / sy-repid, 'started at', sy-uzeit.
      call function 'WRITE_LIST'
        tables
          listobject = lt_list.
    endform.                    "testcase
    and
    report zlocal_jc_sdn_called_program.
    start-of-selection.
      write: / sy-repid, 'was called at:', sy-uzeit.

  • The Creation of Export DataSource Failed Error while transporting ODS Cube

    Hi  All,
    I am facing this issue from last 1 week.. i had developed an ODS cube in APO-DP BW which will fetch data from SAP R/3 and its working fine in APO Dev Server.  But when i transport this cube into APO PAC(Prodn Server) the below error i am getting..
       Start of the after-import method RS_ODSO_AFTER_IMPORT for object type(s) ODSO (Activation Mode)
       The creation of the export DataSource failed
       Password logon no longer possible - too many failed attempts
       Password logon no longer possible - too many failed attempts
       Error when creating the export DataSource and dependent Objects
       Error when activating DataStore Object ZANAUTSL
    I also updated the transport conversion tables but still problem not resolved.
    Immediate help is hightly appreciated.
    Thanx
    AJ

    Hi AJ,
    Looking at your error, it seems that the RFC user's password is locked and hence connectivity from R/3 towards APO BW is broken.
    You know the name of your export datasource (from R/3 to APO BW). Find out the name of your R/3 source system e.g. PACCLT000, by scrolling to the right against teh export data source.
    Take help of your Basis or EAI team to identify the RFC destination corresponding to the connectivity from the R/3 source system (PACCLT000) to your APO BW system. (If needed ask for help from your BW team, I am not very sure how connectivity would be set up from R/3 to APO BW, I guess this would be independent from CIF connectivity)
    For this RFC connection from R/3 to APO BW, see which RFC user is maintained in SM59 in APO and ask your security team to reset (or unlock) the password of this RFC user in R/3, and then if required update the user password details in SM59 in APO also.
    After this, your issue should get resolved.
    Thanks - Pawan

  • DSO activation failed due to creation of the export datasource failed

    hi experts,
    i am activating DSO, but failed. Cause is "The creation of the export DataSource failed"
    there are many threads in the forum saying restoring the BI myself source system can address it, I tried many times, but failed.
    I used program RSDG_ODSO_ACTIVATE to activate an already activated DSO, it returned same error and the original activated DSO turned into inactivated. So I guess there must be something wrong with the setting.
    please advise, thanks!
    attach error info:
    The creation of the export DataSource failed
    Message no. RSBM035
    Diagnosis
    The system could not create DataSource .
    System Response
    The metadata for a DataSource must be created while the export InfoSouce is being generated. An error occurred at that time.
    Procedure
    Consult the appropriate developer (function module: RSA1_OLTPSOURCE_GENERATE).
    The delta process ODS does not exist
    Error when creating the export DataSource and dependent Objects
    Error when activating DataStore Object ZFIM_D09

    Hi,
    As I read the system RESTORE option should resolve your issue. From RSA1 try to restore your source system and try to active your DSO again.
    Regards,
    Durgesh.

  • Transport Error-The creation of the export DataSource failed

    Hi Experts,
    I am transporting a DSO from DEV to QA in 7.0 system.While transporting the DSo i am getting the below mentioned error.
    The creation of the export DataSource failed
    Reading the Metadata of APMD0009 ...
    Creating DataSource 8APMD0009 ...
    Password logon no longer possible - too many failed attempts
    Password logon no longer possible - too many failed attempts
    Error when creating the export DataSource and dependent Objects
    Error when activating DataStore Object APMD0009
    the request conatins just the DSO and not the Export datsource.i have also tried exporting both together still it failed.
    I have referred OSS note No.597326 for the same.But it didnt helped in resolving the issue.
    Has any one come across this kind of an issue.
    Thanks in advance!!!!!
    Regards,
    Umesh.

    No it didnt seem to work still got the same password error..                                                                               
    Start of the after-import method RS_ODSO_AFTER_IMPORT for object type(s) ODSO (Activation Mode)              
    /     The creation of the export DataSource failed                                                                 
          Name or password is incorrect (repeat lo gon)                                                                
          Name or password is incorrect (repeat lo gon)                                                                
          Error when creating the export DataSource and dependent Objects                                              
          Error when activating DataStore Object 0BBP_BID                                                              
    /     The creation of the export DataSource failed                                                                 
          Name or password is incorrect (repeat lo gon)                                                                
          Name or password is incorrect (repeat lo gon)                                                                
          Error when creating the export DataSource and dependent Objects                                              
          Error when activating DataStore Object 0BBP_QUO                                                              
    /     The creation of the export DataSource failed                                                                 
          User not authorized. Session terminated                                                                      
          User not authorized. Session terminated                                                                      
          Error when creating the export DataSource and dependent Objects                                              
          Error when activating DataStore Object 0PUR_DS03                                                             
    /     The creation of the export DataSource failed                                                                 
          Name or password is incorrect (repeat lo gon)                                                                
          Name or password is incorrect (repeat lo gon)

  • The creation of the export DataSource failed 0FIGL_O06, 0FIGL_O02

    Hello Expert,
    I have an issue with the export data source creation,
    This is the detail,
    Thank you very much in advance for your kind help,
    The creation of the export DataSource failed
    Message no. RSBM035
    Diagnosis
    The creation of the DataSource &v1& was unsuccessful.
    System Response
    Whilst generating the export InfoSource, the metadata for a DataSource must be generated. An error arose when doing this.
    Procedure
    Consult the appropriate developer (function module: RSB1_OLTPSOURCE_GENERATE).

    Niurka,
    Is this datasource for a hierarchy? See if note - 403092 is relevant.
    Viren

  • Creation of export datasource failed

    Hi All.
    i copied a bussiness content data source object (DSO) and tried to activate it. it is giving error that
    "The creation of the export DataSource failed"
    Why ??? where m i going wrong.
    Thanks & Regards,
    Mo

    Hello,
         This is the problem becos the system is unable to create DATAMART for DSO object.  The following reasons might be hindering the creation of DSO.  Please check whether
    1)  You have proper authorization to create Datasource/Datamarts.
    2)  If so then, check whether DATAMART for the BW Self Source System is properly Installed from Business Content.  (I hope you are working on the version 3.5 or later.. here we need to manually install Aplication Component related to Datamart from Business Content so that Datamart creation never fails after that)
    3)  Also check BW Self Source System is properly functioning.
    Thanks
    Kishore Kusupati
    Edited by: Kishore Kumar K on Jul 28, 2008 5:35 AM

  • The export operation failed to create an image file

    I've been experiencing bizarre behavior when attempting to export images to my Usb-connected card reader. After reading some threads on this form, I was convinced that my reader was defective. Same problem on a brand-new reader.
    The specific behavior was as follows: I attempted to export roughly 150 custom-named 500 KB image files to the memory card. The last 15 or so failed to transfer and I got the message, "the export operation failed to create an image file for the versions identified below."
    Trashing VP list didn't help. What did was changing the custom name. There was nothing particularly unusual about the original custom name and the new one was virtually identical. After changing the name, the export worked without a hitch.
    Has anyone experienced similar behavior? Any ideas what's going on?

    problem was that the NEW card reader was faulty as well. My luck!

  • Multiple Sequences on same Timeline = Failed Export?

    I'm trying to make a compilation reel - combining about 7 or 8 previous projects into one long timeline - for export from FCP 5 to Compressor2 - to make a m2v. I'm using Best Quality, 90 minute presets.
    The way I laid out the timeline was to copy the squences from all the projects that I needed and the copy/paste, or drag and drop them into the one new
    compilation sequence.
    Problem that I run into is that it fails every time when I try to export using Compressor 2.
    I can export it to Compressor and set everything up to run, and Compressor will start out fine, but then it never finishes - at some point in the process it just stalls and then if i touch anything in the Batch window or in FCP the export willl fail.
    It's only a 1 hour sequence, so it shouldn't be takking 8+ hours to render - it's not like I'm being impatient.
    I've exported lots of other projects with Compressor 2 and FCP HD, so I'm not sure whats wrong/different this time - the only thing I can think of is that I combined multiple sequences in one time line.
    Does anyone know what could be going wrong?
    If the sequences are the problem, what the best way around that?
    Do I just export ref movies for each project and then use those to combine
    in the new compilation timeline?
    I'm going to try to just export a ref movie from FCP and then take that to Compressor, but I have a feeling the same thing is going to happen.
    Thanks,
    Steve

    Check the file size. The .mov extension doesn't have a lot to do with it. If it's big, you did a self-contained movie. Or pen it it in QT Player Pro and check the files used - Command-J, Resources tab. Should be just one entry there.
    Pretty hard to do it wrong, just one little checkbox...
    Russ

  • "Build and Export Cache" fails to export 100% Previews:

    "Build and Export Cache" fails to export 100% Previews:
    I am moving from Bridge CS5 to CS6 and have a very large number of 100% Previews in my CS5 cache.  The idea of regenerating all these 100% Previews in CS6 is NOT amusing.  It is amazing that there is not a simple import function for this task as a way to make the software upgrade more "seamless"… but apparently there is not.
    I have read the Adobe documents:
        "Bridge Help / Manage the cache | Adobe Bridge CS4, CS5"
        "Creative Suite / Work with the Adobe Bridge cache"
    Based on these documents, in Bridge CS5 I used the export function in
    Tools>Cache>Build and Export Cache…
        with "Build 100% Previews" checked
        and "Export Cache To Folders" checked.
    Unfortunately, the "Build and Export Cache" fails to export 100% Previews to the target directory.  They should appear in the target directory as hidden files in the format xxxxx.NEF.JPG.  Yes, I do know how to view hidden files in both the Finder and in Bridge.
    In Bridge CS5 I tried Purging and rebuilding the Cache for the target directory with no luck.
    I tried running "Build and Export Cache" in Bridge CS6….  still no hidden Preview files in the target directory.
    My settings in both CS5 & CS6 Bridge - Preferences:
        "Keep 100% Previews in Cache" is checked
        "Automatically Export Cache to Folders When Possible" is checked
    My settings in both CS5 & CS6 Bridge - Options for thumbnail quality and preview generation:
        "Generate 100% Previews" is checked
    Using OS X 10.6.8
    Anyone have a suggestion?????

    Bridge is the only piece of software I have used, which incorporates a database, where new versions do not provide for importing the objects of the older version.  Very strange.
    That is a very mildly conclusion but unfortunately until the cache strategy for Bridge is finally sorted out this problem will exist.
    Now I have to confess that I can't use the 'Auto export cache when possible' for several versions now due to a rare problem that after the first time usage without problem created export cache almost every second time generates a warning message that due to failure it needs to replace the Cache T file, hence I deselected this option permanently.
    I would think that if you have those already cached and exported files for 100 % preview in the dedicated folders it would read those files and add it to the database and central cache file when having pointed Bridge to that folder, but I'm far from sure about that.
    Also after rereading your first post you state to expect the build and export cache to build also hidden files with the two extensions from original filetype followed by .jpg from cache in the folder itself (target directory)? Here I'm a bit lost. The mentioned double extension files only appear in the central cache folder and are visible but buried  in the subfolders for each quality in the central cache file at user library (default) or custom set location in Bridge prefs.
    The exported cache to folder are hidden files and as long as I can remember that where 2 files already in the File browser (forgot the extension they used for this) and currently .BridgeCache (very small, few KB) and the for me problematic .BridgeCacheT file that can grow very large and has about the same size as the subfolder generated under full in the central cache.
    I can see the content of the central cache without problem including the double extensions and previews of the files as thumbs in the Finder, jet with option to show hidden files I can see the CacheT file but only as a blank document icon and I can't find an application on my system to open this file to reveal its content.
    Just tried it on a folder with small sized files and having set preview quality to HQ and 100 % preview (checkerboard icon in Path Bar) and then used the option from menu tools to build and export cache to folder including 100 %. Both subfolder in Central Cache and about same sized hidden CacheT file where generated without problems and the full preview was instantly on demand using magnifier. (but all this without the option in prefs to auto export to folder)
    So to me it seems (if I understand everything correctly) that either the existing exported files from CS5 do cause the problem or your setup of CS6 is not working correctly.
    Are we still on the same track or am I completely lost?

Maybe you are looking for

  • Can't send or receive mail from certain e-mail address...

    Has anyone ever run into an instance where you couldn't send or receive mail to a 1 specific e-mail address? Even after adding the address to your contact list? Here's my situation. There is one person that is trying to e-mail me, but no matter what

  • Why my method is not working can anyone tell me plz how to write the 2darry

    public class fourth { int z; int h; public int[][] table(int z)(int h ){ int[][] two = new int[z][h]; for (int i=0; i < z; i++) { for (int j = 0; j < h; j++) { two[z][h] = (int) (z * h); return two; }

  • Type of X equals which data elements or data type

    Hi ABAP Experts, I declareted variable type of X in my program. (Example TYPES: BEGIN OF T_XML_LINE,          DATA(1024) TYPE X,        END OF T_XML_LINE.) But I want to create structure with SE11 Tcode in my program. But I dont know Type of X equals

  • Help with Plsql Procedure

    This is my thread in this forum, so please let me know if I am not so specific in my request. I have an existing table (say Table AAA having columns A1, A2, A3) and I have created a view on this table (say AAA_VW). I have also added 3 more rows in th

  • Owb error while deploying

    Hi, I have successfully installed OWB Repository, OWB client on one machine and the OWB runtime on the other. I have the source(scott/tiger) database and warehouse database. I could very well import the tables. I have created the fact and dimensions