Using in standard scrits wish is best method .

hi
experts ,
                  using in standard scrits wish is best method . using  nace or subroutine.
   and how to proceed.
                                                                                srinivas

Hello, Padmanaban;
We do not recommend using ADO.NET for really large datasets. It is too much data to manipulate in memory.
The database is designed to do that and it works very efficiently as you have proven.
For such a large amount of data, use our OLEDB(ADO) driver and logon to the database directly. Make sure the query is run server side and returns only the required data to the report.
Here is an article with some good design tips:
[Click here|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/701c069c-271f-2b10-c780-dacbd90b2dd8].
Elaine

Similar Messages

  • Adobe X PDF files converted to jpg, edited and converted back to PDF have ragged, unclear text.  I didn't have this problem with Acrobat 9 standard.  What is the remedy for this.  If this is the best I can expect, I won't be able to use X standard.

    Adobe X PDF files converted to jpg, edited and converted back to PDF have ragged, unclear text.  I didn't have this problem with Acrobat 9 standard.  What is the remedy for this.  If this is the best I can expect, I won't be able to use X standard.

    I can't imagine any worse workflow than converting to JPEG to edit text, then back to PDF. Text in a PDF is a vector thing, smooth at all resolutions. And JPEG is made for photos. EVERY conversion to JPEG and back loses quality but how much loss there is will vary.
    If you must go to an image format, try PNG.

  • How to check which is th best method to use in LSMw and the file

    Hi all,
    I am new to LSMW,
    Can know me when i get the file , how to check the which is the Best method ( Batch input, Direct input,BAPI, IDOC)  have to use in LSMW .
    How to check the input file is completely filled and how to check whether it is correct and also how to Prevalidation check has to be done fior the file before uploading.
    Can you provide any documents LSMW also Apprecited.
    Regards,
    Madhavi

    Hi Madhavi,
    To check Correctness & completeness of the file:
    1. The input file structure should be same as source structure what you defined whicle creating LSMW.
    2. Check the following steps to assure the field mapping is done correctly.
    a) Maintain field mapping & conversion rule
    b) Check 'Display Read data'
    c) Check ' Display Converted data''
    Please note LSMW is a tool, which will simply upload the data whatever you are providing. So you need to be careful while making your file and validate it outside SAP ( before upload start)
    Pradeep D

  • Best method for timestamping? (for later use with perl script)

    What is the best method that I can use to timestamp events in Linux for later use with perl script?
    I am performing some energy measurements.. where I am running several tasks separated by 20 secs in between. Before I start any execution of tasks, I always place initial delay for me to start the script and start the measurement device.
    My problem is that I don't know how long is that first delay exactly. So to solve this, I thought I could use date commands to time stamp all tasks.. or at least to timestamp first dela.
    Here is example of what I am doing:
    1st delay
    task 1
    20s
    task 2
    20s
    task 3..... etc
    What would be the best to use?

    logger.
    It posts messages straight to the system log.  You can see the message, in all its glory using tools like journalctl.  You will see the message, the date, time, host name, user name, and the PID of logger when it ran.

  • What is the best method to use for revealing the text on a jpg (as though the text is drawing itself?) Thanks.

    What is the best method to use for revealing the text on a jpg (as though the text is drawing itself?) Thanks.

    tacbob wrote:
    Are there any tutorials? I cannot find anything close.
    http://itunes.apple.com/de/podcast/write-on-effects-in-motion/id287113664?i=4883 4057
    The MacBreak Podcasts are an excellent source of info!
    Have a look on the others ..

  • What is the best method of using an iPad as an extra screen for a macbook pro?

    I just received a macbook pro what is the best method for using an ipad as an extra screen for an ipad? Hopeflly, one that is no cost to me.

    Sorry, but are you incapable of looking things up for yourself? Everything that you have asked is easily searchable on the internet.
    I used it over wi-fi.
    http://avatron.com/apps/air-display

  • What's the best method of burning CD/DVD using MBP?

    As per my title, what is the best method of burning CD/DVD using my MBP? Can I use iDVD, disk utility etc? I'm referring to burning stuff like music, photos, doc etc. I used Toast Titanium (shd be version 6) with my iBook G4 but it doesn't seem to work with MBP after data migration. Guess the version is too old and not supported in Snow Leopard. Is there any upgrade for Toast Titanium and how much would it cost?

    Hi tanvivien,
    The best method is really going to depend on what you're burning. All of the iLife applications (iPhoto, iDVD, iMovie, etc.) make it pretty easy to burn with the click of a couple of buttons via the "Share" menu drop down.
    You can use Finder for files/data as well as media but if it's multimedia then usually the programs where they're managed or stored is easier.
    Information on Toast and how to upgrade would be found here - http://www.roxio.com/enu/products/toast/titanium/overview.html

  • HT1229 what is the best method for using a iphoto with an external hard drive for greater capacity?

    what is the best method for using a iphoto with an external hard drive for greater capacity?

    Moving the iPhoto library is safe and simple - quit iPhoto and drag the iPhoto library intact as a single entity to the external drive - depress the option key and launch iPhoto using the "select library" option to point to the new location on the external drive - fully test it and then trash the old library on the internal drive (test one more time prior to emptying the trash)
    And be sure that the External drive is formatted Mac OS extended (journaled) (iPhoto does not work with drives with other formats) and that it is always available prior to launching iPhoto
    And backup soon and often - having your iPhoto library on an external drive is not a backup and if you are using Time Machine you need to check and be sure that TM is backing up your external drive
    LN

  • Which is best method to bind huge number records using RAS.

    Hi All ,
    i am using CR XI R2 server to create report dynamicaly using sql query.
    if follow the below method using DataDefModel.Table and giving table_name the object name in the database (RPT_PROCPLANNEDVSCOMPLETED is the SP in database having 4,00,000 records)., it populates and shows the report in expected time.
    CrystalDecisions.ReportAppServer.DataDefModel.Table crTable;
    rcDoc.ReportAppServer = "RAS"
    rcDoc.New();
    crTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo crConnectionInfo;
    crConnectionInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    crConnectionInfo = GetADOConnectionInfo(); // Connection propery bag set
    crTable.ConnectionInfo = crConnectionInfo;
    string table_name;
    table_name = "RPT_PROCPLANNEDVSCOMPLETED";
    crTable.Name = table_name;
    crTable.Alias = table_name;
    rcDoc.DatabaseController.AddTable(crTable, null);
    now i need to pass dynamic sql query instead of giving object name. hence i followed this method
    here DSReport1 is dataset i want to bind.
    string tempFileName = Server.MapPath("New.xml");
                rcDoc.ReportAppServer = "RAS"
                rcDoc.New();
                DSReport1.WriteXml(tempFileName, XmlWriteMode.WriteSchema);
                CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo crConnectionInfo;
                crConnectionInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
                ISCRTable table = DataSetConverter.Convert(DSReport1).Tables[0];
                crConnectionInfo = AddDataSourceUsingSchemaFile(rcDoc, tempFileName, "Views", DSReport1);
                table.ConnectionInfo = crConnectionInfo;
                rcDoc.DatabaseController.AddTable(table, null);
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo AddDataSourceUsingSchemaFile(ReportClientDocument rcDoc, string schema_file_name, string table_name, System.Data.DataSet data)
                PropertyBag crLogonInfo; PropertyBag crAttributes;
                CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo crConnectionInfo;
                CrystalDecisions.ReportAppServer.DataDefModel.Table crTable;
                // create logon property
                crLogonInfo = new PropertyBag();
                crLogonInfo["XML File Path"] = schema_file_name;
                // create logon attributes
                crAttributes = new PropertyBag();
                crAttributes["Database DLL"] = "crdb_adoplus.dll";
                crAttributes["QE_DatabaseType"] = "ADO.NET (XML)";
                crAttributes["QE_ServerDescription"] = "NewDataSet";
                crAttributes["QE_SQLDB"] = true;
                crAttributes["QE_LogonProperties"] = crLogonInfo;
                // create connection info
                crConnectionInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
                crConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
                crConnectionInfo.Attributes = crAttributes;
                return crConnectionInfo;
    this method is very slow compared to the 1 method. is this the right way of doing, or can anyone suggest better method. i also dont want to create xml file.
    Thanks in ADVANCE
    Padmanaban V

    Hello, Padmanaban;
    We do not recommend using ADO.NET for really large datasets. It is too much data to manipulate in memory.
    The database is designed to do that and it works very efficiently as you have proven.
    For such a large amount of data, use our OLEDB(ADO) driver and logon to the database directly. Make sure the query is run server side and returns only the required data to the report.
    Here is an article with some good design tips:
    [Click here|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/701c069c-271f-2b10-c780-dacbd90b2dd8].
    Elaine

  • Best Method of Transferring From Old Mac to New Mac

    I've got a 27" iMac on order that's supposed to ship sometime in early January, and am wondering what is the best method of transferring everything from this Mac to the new one (once it arrives)?
    As I understand it, there are essentially three ways of doing this:
    Migration Assistant
    Setup Assistant
    Time Machine
    I've got two user accounts on this Mac, and will need to transfer everything for both accounts. I have about 350GB worth of files, data, and applications to transfer.
    Is one of the above methods better than the others for accomplishing this? Are there any "gotchas" I should be aware of before moving everything over?
    Advice and assistance is welcomed.

    The easiest method is to use Setup Assistant that automatically starts the first time you use a new Mac. It will offer you the opportunity to migrate all users or just those you select.
    Mike Osborn wrote:
    ... Are there any "gotchas" I should be aware of before moving everything over?
    If you do not use Setup Assistant, you can always use Migration Assistant later. However, this can easily become confusing if you already created a user account on the new Mac. Most people won't have the patience to use Setup Assistant and understandably want to use their new Mac right away. If you elect to do that, don't create an account with the same name as one you wish to migrate. Instead, create a user account that you plan to erase after you migrate your existing accounts. The reason is that if you create a brand new account named, for example, "Mike Osborn", you will be unable to migrate to another account with that name.
    Use a wired connection. Wireless can take an unacceptable amount of time (days).
    Don't create a brand new Apple ID either. Have your existing Apple ID and password ready and use it, so you don't make the mistake of creating an Apple ID with no pedigree.
    Register your new Mac (and all your other Apple equipment, if you have not yet done so) using this link:
      https://supportprofile.apple.com/
    This provides for a convenient database of all your Apple equipment's serial numbers, service history, and warranty eligibility.

  • Best method for networking with ubuntu linux

    Hi,
    I'm setting up an ubuntu linux fileserver, and I was wondering what the best method for filesharing with my mac is. I'm currently running osx 10.4.11, though I may be upgrading to 10.5 soon. I'll be running SMB networking for a couple of other computers, but I'd prefer something a bit more robust that can handle file permissions etc.

    Mac OS X supports NSF out of the box. Configuration isn't documented.
    I recall Apple got rid of net info manager in Leopard, so the configuration will be different. Perhaps more unix like.
    Mac OS X support the Unix Network File System (NFS). However, it leaves out
    the GUI.
    This page show you how to use NetInfo Manager:
    http://mactechnotes.blogspot.com/2005/09/mac-os-x-as-nfs-server.html#c1168221713 40271068
    NFS Manager can both setup NFS shares and connect to NFS shares.
    http://www.bresink.com/osx/NFSManager.html
    Once you figure out how NFS Manager configures the NFS shares, you can
    use Applications > Utilities > NetInfo Manager to create more shares.
    You will either have to coordinate Unix Userid number and Unix Group Id number or use the mapall option on the share.
    To find out your Mac OS X userid and group id do:
    applications > utilities > terminal
    ls -ln
    ls -l
    # lists the NFS share on your mac
    showmount -e localhost
    #list NFS shares on a remote host
    showmount -e remote-ip-address
    Once you see what NFS Manager does, you will be able to use NetInfo Manager to manage a connection. In Mac OS 10.4 you can configure the /etc/exports control file. See man exports for the details. Before that you had to have the data in NetInfo manager. When Mac OS X came out, many common Unix control files were not present. Instead the data had to be in NetInfo manager. Over time Apple has added more and more standard Unix control files.
    ======
    You do know about the need to match userids & groupids.
    # display uid and gid
    ls -ln
    sudo find / -user short-user-name -exec ls '-l' {} \;
    # on Mac OS X
    you will need to go into NetInfo Manager and select user and find your short-user-name. Change uid and guid.
    #on Linux look in
    /etc/passwd
    /etc/group
    # with care...
    # change 1000:20 to your values for uid:gid
    sudo find / -user short-user-name -exec chown 1000:20 {} \;
    The manual for Tenon MachTen UNIX (which Apple checked when doing Mac OS
    X) says that one should crate the file /etc/exports, which will cause
    portmap, mountd and nsfd to launch at startup via the /etc/rc file. The
    file must not contain any blank lines or comments, and each line has the
    syntax
    directory -option[, option] hostlist
    where 'directory is the pathname of the directory that can be exported,
    and 'hostlist' is a space separated list of hostnames that can access the
    directory. For example
    /usr -ro foo bar
    /etc
    /Applications
    /User/gladys gladys
    The client the uses a command like
    /sbin/mount -t type [-rw] -o [options] server:directory mount_point
    where 'type' is 'nfs', 'server' the name of the server, 'directory' the
    server directory mounted, and 'mount_point' the client mount point. See
    'man mount' for details.
    I haven't tried the above, but it would be nice to know if it works on Mac OS X.
    Hans Aberg
    This will give you some hints on NFS. Post back your questions.
    Robert

  • Best Methods for Time, Tempo and Rhythm Alignment?

    Hello All, I am looking to edit some lengthy jams to concise segments. I wish to mix and match audio tracks (ex. drum section from begining with bass section in middle with guitar section at end). No metronome was used, so while the general structure (melody and rhythm) remained similar, tempos vary so that the parts don't match up perfectly. I know Logic has some pretty powerful time-based editing capabilities through its flex mode, but i am confused where the logical starting point would be for my situation. Do you think it would be to first chop up segments, pick a q-reference, set a global tempo, stretch or compress segments, and then individually correct any remaining rhythm alignment issues? What do you think are the best methods to accomplish this? I hope my questions are clear - if not please tell me. Thanks to anyone who cares and can help!
    JS

    Matt Woodward has some sample code on his blog to use the
    asyncronous event gateway to send email. The post is here :
    http://mattwoodward.com/blog/index.cfm?commentID=203
    This should take care of your timeout issues...
    Ross Valenti
    <edited to fix misspelled name >

  • Best Method Of Import For Future Preservation

    I would like to import all my home movies through iMovie to an external hard drive, but am wondering if that is the best method to ensure that I will always be able to use/access them in the years to come. A couple of questions:
    **Does iMovie still preserve and save to the external drive the original format the movie was recorded in? Does it switch it to something that only iMovie can recognize and find?
    **What if iMovie quits being made in 10 years or if I switch to a different editing program down the road? Will I still be able to use/access my movies?
    **Would it be better to skip going through iMovie and just copy the movies/files directly to the external drive?
    Thank you for any info you can give me.
    Nkulu

    Nkulu wrote:
    .. Does iMovie still preserve and save to the external drive the original format the movie was recorded in?
    in iMHD≤6: yes, even after editing, the unaltered original video is kept untouched; in iM08 answer is more complicated: the Events store the original data, but it is unable to export without altering it.. And: mpeg2 and AVCHD files get automatically converted.. but into a lossless codec ..
    Does it switch it to something that only iMovie can recognize and find?
    the .mov digged deep into the file structure of iM (in iMHD6: in the project packages; in iM08: in the Events Folder) are playable without iM..
    .. What if iMovie quits being made in 10 years or if I switch to a different editing program down the road? Will I still be able to use/access my movies?
    very hard to tell; my experience: cross-app/cross-platform, accessability is .. small. compare with 'opening iMHD6 project with iM08' , or 'transfer iM08 to FCE' .... and those are actual apps from one manufacturer..
    .. Would it be better to skip going through iMovie and just copy the movies/files directly to the external drive?
    that's why I'm in the process of decision making come back to tape (HDV) - I'm storing about an terabyte of my son's life on video in a simple shoebox.. no copying, backup, no transfer.. as long as I get some service which is able to playback that worlwide standard, I can watch and use those videos..
    I often tell that situation: me being on Cuba, running out of 'storage space' ... 7$ and got a new tape, 60min.. imagine that with a fancy HDDcorder.. you need additionally in your travel luggage your Mac, power brick, prob. an ext. harddrive, just for 'emtpying' your camcorder .. honestly: not on MY vacations/my hotel rooms, tents.. ..
    and don't tell me '17h recording time' .. IF HiDef camcorder, than FullHD.. which is actually a max. of 3h per device.. and I do record more than 3h on a 2 weeks journey..

  • XML in Oracle 9i (best method to return a xml file from a table query)

    Hello.
    What is the best method to query a table, or set of tables (that will return thousands of rows) using xml in oracle? (best performance)
    I'm currently using DBMS_XMLGen, is there a better method ?

    I think, if your talking about generating XML, that you should use XMLElement, XMLForest, etc. to create your XML.
    Lets assume that you base is relational data, then maybe the following great example will give you an idea how to do it : Re: Generate XML Schema from oracle tables
    As michaels pointed out (did you read the link/ URL given?), the general expectancy is that the packages will be less and less important. So also maintenance wise the XMLElement, etc way will be the best, also for the future, maintainable method.

  • How to use internal table in Exporting Parameter of method.

    Hi Friends,
    I am new to abap oops and using the following code to read a select-option and pass the data in an internal table but on defining
    internal table of a standard  type it is giving me following error :
    ITAB is not an internal table - the OCCURS n specification is missing.
    code
    ====
      class lcl_get_details DEFINITION.
        PUBLIC SECTION.
          types : r_carrid type RANGE OF sflight-carrid.
          data  : itab type STANDARD TABLE OF sflight.
          METHODS : get_data IMPORTING s_carrid type R_carrid
                             EXPORTING itab type sflight.
      ENDCLASS.   
    class lcl_get_details IMPLEMENTATION.
      METHOD get_data.
        select *
        from sflight
        into table itab
        where carrid in s_carrid.
        if sy-subrc eq 0.
          sort itab by carrid.
        endif.
      endmethod.   
    ERROR : ITAB is not an internal table - the OCCURS n specification is missing.
    Kindly help.

    Hi,
    I think your problem is, because you use 2 variables named ITAB in method get_data.
    Instance-variable ITAB is defined as STANDARD TABLE OF sflight.
    Exporting-parameter ITAB is defined as sflight.
    It seems like in implementation of get_data exporting-parameter ITAB is used.
    Try this implementation:
    METHOD get_data.
      select * from sflight into table me->itab
       where carrid in s_carrid.
      if sy-subrc eq 0.
      sort me->itab by carrid.
      endif.
    ENDMETHOD.
    This should solve your compiler error.
    Nether the less, get_data will yield an empty structure as result.
    Regards, Hubert
    Edited by: Hubert Heitzer on Feb 24, 2010 10:22 AM

Maybe you are looking for