How can i download a DDIC table

Dear Experts,
How can i download table's technical setting download on Loacl DIsk.with through dd03l i can download table but there no technical setting like delevery class.
Please replly Soon.
Thanks,
Ravi

If you install the opensoruce components called SAPLink (https://sourceforge.net/projects/saplink/) you can use this to download most SAP objects including Data Dictionary into an XML file that can then be loaded into other systems also via SAPLink.  The XML file that is downloaded I belive should contain all of the infromation that you are looking for.
I saw a presentation on SAPLink last year at TechEd and it looked powerfull.
~Ian

Similar Messages

  • Can i Download all ddic table objects on local disk

    Dear experts,
        I want to make a reports in which i give a table name and press save button .It save all fields , technical settings at all ,eveything  in local disk.
    What should can i do for that.
    Thanks,
    jatein

    hi jatin,
    u can download the smartform.
    Go to tcode smartforms. Give the name of the smartform that u want to download to the local drive.
    Go to the menu and choose the option utilities -
    > download form.
    Give the local path where u have to store the smartform.
    Thanx
    Biswa

  • How can i download data in excel sheet .

    Hi all
    My Requirement : In a selection screen after giving a VBELN,It will show all the related data from VBRP table through alv  . There are a customize icon ,after clicking the icon it will download all fetched data .
    Can any one help me .how can i download the fetched data through excel ?
    Regards
    Rajesh .

    Hi Rajesh,
    I understood your requirement as from ALV you want to download the data to an Excel sheet.
    In standard ALVs, you need to do this
    In other cases like Z programs etc, often Icon is provided  (as you said) like this
    You need to select Local File option here as shown below
    In both case you will get this pop-up
    Now when you continue you will get SAVE dialog-box, where you can give a name to your excel file and Save.
    Hope this is your query.
    Jogeswara Rao K

  • How can I load data into table with SQL*LOADER

    how can I load data into table with SQL*LOADER
    when column data length more than 255 bytes?
    when column exceed 255 ,data can not be insert into table by SQL*LOADER
    CREATE TABLE A (
    A VARCHAR2 ( 10 ) ,
    B VARCHAR2 ( 10 ) ,
    C VARCHAR2 ( 10 ) ,
    E VARCHAR2 ( 2000 ) );
    control file:
    load data
    append into table A
    fields terminated by X'09'
    (A , B , C , E )
    SQL*LOADER command:
    sqlldr test/test control=A_ctl.txt data=A.xls log=b.log
    datafile:
    column E is more than 255bytes
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)

    Check this out.
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/ch06.htm#1006961

  • How can I create a new table in a MySQL database in MVC 5

    I have an MVC 5 app, which uses MySQL hosted in Azure as a data source. The point is that inside the database, I want to create a new table called "request". I have already activated migrations for my database in code. I also have the following
    code in my app.
    Request.cs: (inside Models folder)
    public class Request
    public int RequestID { get; set; }
    [Required]
    [Display(Name = "Request type")]
    public string RequestType { get; set; }
    Test.cshtml:
    @model Workfly.Models.Request
    ViewBag.Title = "Test";
    <h2>@ViewBag.Title.</h2>
    <h3>@ViewBag.Message</h3>
    @using (Html.BeginForm("SaveAndShare", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
    @Html.AntiForgeryToken()
    <h4>Create a new request.</h4>
    <hr />
    @Html.ValidationSummary("", new { @class = "text-danger" })
    <div class="form-group">
    @Html.LabelFor(m => m.RequestType, new { @class = "col-md-2 control-label" })
    <div class="col-md-10">
    @Html.TextBoxFor(m => m.RequestType, new { @class = "form-control", @id = "keywords-manual" })
    </div>
    </div>
    <div class="form-group">
    <div class="col-md-offset-2 col-md-10">
    <input type="submit" class="btn btn-default" value="Submit!" />
    </div>
    </div>
    @section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
    HomeController.cs:
    [HttpPost]
    public ActionResult SaveAndShare(Request request)
    if (ModelState.IsValid)
    var req = new Request { RequestType = request.RequestType };
    return RedirectToAction("Share");
    The point is that, I want the user to fill the form inside the Test view and click submit, and when the submit is clicked, I want a new entry in the new table to be created. But first of course I need to create the table. Should I create it using SQL query
    through MySQL workbench? If yes, then how can I connect the new table with my code? I guess I need some DB context but don't know how to do it. If someone can post some code example, I would be glad.
    UPDATE:
    I created a new class inside the Models folder and named it RequestContext.cs, and its contents can be found below:
    public class RequestContext : DbContext
    public DbSet<Request> Requests { get; set; }
    Then, I did "Add-Migration Request", and "Update-Database" commands, but still nothing. Please also note that I have a MySqlInitializer class, which looks something like this:
    public class MySqlInitializer : IDatabaseInitializer<ApplicationDbContext>
    public void InitializeDatabase(ApplicationDbContext context)
    if (!context.Database.Exists())
    // if database did not exist before - create it
    context.Database.Create();
    else
    // query to check if MigrationHistory table is present in the database
    var migrationHistoryTableExists = ((IObjectContextAdapter)context).ObjectContext.ExecuteStoreQuery<int>(
    string.Format(
    "SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = '{0}' AND table_name = '__MigrationHistory'",
    // if MigrationHistory table is not there (which is the case first time we run) - create it
    if (migrationHistoryTableExists.FirstOrDefault() == 0)
    context.Database.Delete();
    context.Database.Create();

    Hello Toni,
    Thanks for posting here.
    Please refer the below mentioned links:
    http://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-deploy-aspnet-mvc-app-membership-oauth-sql-database/
    http://social.msdn.microsoft.com/Forums/en-US/3a3584c4-f45f-4b00-b676-8d2e0f476026/tutorial-problem-deploy-a-secure-aspnet-mvc-5-app-with-membership-oauth-and-sql-database-to-a?forum=windowsazurewebsitespreview
    I hope that helps.
    Best Regards,
    Sadiqh Ahmed

  • I've updated to the most recent version of iTunes and I can no longer see any of my old music on my mac.  All the music is still available on my ipad.  How can i download the music on my mac?

    I've updated to the most recent version of iTunes and I can no longer see any of my old music on my mac.  All the music is still available on my ipad.  How can i download the music on my mac?

    First, are you positive it is really not there?  Have you looked in your iTunes folder in your Music folder, and in the media folders there? Do you see your media files?
    If your media are gone it is a lot easier to restore from a proper computer backup.  Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was planned with you maintaining a master copy of your media on a computer which is itself properly backed up against loss. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchases which can be transferred to a computer.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only purchases from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software.  See this document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991

  • How can I download to the desktop rather than preview, preview is a nuisance

    How can I download items to my desktop rather than "preview"? Preview is a nuisance.

    You can set up a default download location through your browser(s) Preferences.
    If you do not want Preview to open the files, do the following:
    Highlight your file>File>Get Info>
    In the Get Info window, scroll down to "Open with:"
    Select the application you want to open the file with.
    Click the "Change All..." button if you want to "Use this application to open all documents like this.”
    ==========================
    Short cut:
    Control mouse click (right mouse click if available), Open With...-> Other
    Pick Preview on a PDF document, and make sure to check Always Open With before hitting Open.
    Thanks to a brody for the above short cut.

  • I converted by PDF files to Doc files.  How can I download them to my desktop?

    I need to update the .doc files.  How can I download them to my desktop?  It should be simple  but I can't figure it out.

    HI DaiseyBabii,
    Sign in to cloud.acrobat.com with your Adobe ID and password.
    Click the Files tab, and you'll see a list of all the files you've converted.
    Click the file that you want to download, and then click Download in the upper-right corner.
    Let us know if that doesn't do the trick.
    Best,
    Sara

  • HT5731 How can I download my TV episodes to my Macbook Pro. I bought them from my iPad2, and I looked for them with the same AppleID on iTunes Store and they wont download to my iTunes.

    How can I download my TV episodes to my Macbook Pro. I bought them from my iPad2, and I looked for them with the same AppleID on iTunes Store and they wont download to my iTunes.

    What country are you in ? Depending upon what country that you are in then you might be able to redownload them on your Mac's iTunes via the Purchased link under Quicklinks on the iTunes store homepage
    If you're not in a country where TV programmes can be redownloaded then connect the iPad to your Mac's iTunes and use the File > Devices > Transfer Purchases to copy them over from your iPad

  • I tried to download video from RCA Small Wonder EZ201 to my new macbook pro.  Macbook pro recognizes the device but then message appears that device was improperly ejected when it is still connected. How can I download these videos?

    When I connect the RCA Small Wonder to my MacBook Pro, the device is recognized in finder as EZ201.  I tried to copy the video files in the folder but within a minute or two, I receive a message that the disk was ejected improperly, even though the device is still connected.  I was able to download the first few videos before it stopped working and was able to play them using Perian.  However, when I tried to connect the device again, it froze my system and I had to force a shut down by turning the computer off. Why is the device initially recongized but then shows as improperly ejected when it is still connected? How can I download the videos if the MacBook Pro won't allow the device to stay connected?

    A picture of a screen that suggests my new MBP Retina never connects to the "Macbook Pro backup ("StefanTimeCapsule")
    This is the one that has the files for the backups procured by the Time Machine program. But it can't "connect"-- You 'll see int he sideways pic (sorry!) that the options STILL says "connecting"
    Do i have to make these Time Machines more open to connection?

  • How can we download the Purchase order report?

    Hi,
    In my requirement i am displaying the PurchaseOrder details report to the Manager in the workitem he want to download the report (after execution of the workitem the manager approved the PO) in the form of EXCEL sheet.
    Can anybody give the solution for this?
    Early response is appriciable and rewardable?
    Regards,
    Chow

    Hi,
    No i am not using any portal to execute the work item.
    can you please tell what is this UWL(Portal)?
    With this how can we execute the Workitem?
    How can we download the report by using the UWL portal to execute the workitem?
    Early response is appriciable.
    Could you give the reply ASAP Please?
    Regards,
    Chow.

  • How can i download an app from iTunes store, that exists just in a "swiss store". Because my account isn't allowed to download apps from other stores than a slovene. ???

    how can i download an app from iTunes store, that exists just in a "swiss store". Because my account isn't allowed to download apps from other stores than a slovene. ???

    You have to be in a country, and have a billing address in that country, to download from its store. You can try requesting that the app be added to the Slovenia store, but unless the app's developer/rights-holder agrees to it then Apple won't be able to sell it there : http://www.apple.com/feedback/itunes.html

  • I just updated the OS to 10.6.8 but then i never get the app store that supposed to be included in the update. so now, how can i download the app store?

    i just updated the OS to 10.6.8 but then i never get the app store that supposed to be included in the update. so now, how can i download the app store?

    Hi,
    Have you tried a Restart since doing the Update...?
    If Yes and you still don't have it...
    Download and Install the 10 6 8 Combo Update from here
    http://support.apple.com/kb/DL1399
    Cheers,

  • How can I download flash player in my nokia n97?

    how can I download flash player in my nokia n97?? 
    I can't view any videos at website
    Moderator's Note: Subject line changed as it is not seem to be a relevant and support issue.

    It depends in what format the online videos are.
    For some formats you might find appropriate players on Nokia Store
    If you're trying to watch youtube movies, you can point your phone's browser to http://m.youtube.com/

  • Pages downloaded from the App-store refuses to save: Permission denied. How can I download a new one?

    Pages downloaded from the App-store refuses to save: Permission denied. How can I download a new one? Please Advice .

    Is the computer yours, and are you the Administrator or a user with administrator rights? Are you allowed to install software on the computer?
    Check your "purchased" list. Pages should show there, and if it's not installed it should read "install" next to it.
    Have you tried another mac? You can install the purchased software on another Mac by using your AppleID that you purchased the software with on the first mac.
    And yes, kerropas se viesti

Maybe you are looking for