More than 40 rows in Data Type

Hi all, i must put more than 40 rows in a Data Base and Data Type olny suports 40 rows!!
How can i do this?
Thankz

Matias,
40 rows in a database:  you mean 40 records (Count) in a database.  you can put more than this also.
Data Type olny suports 40 rows: You mean you need 40fields for each record. You can have more than that.
Your question seems confusing. Please be clear.
Regards,
---Satish

Similar Messages

  • How to update more than one Bank data in LSMW using recording

    Hi friends,
    please let me know how can we upload more than one bank data for vendore master in LSMW, and i am Using Recording and i have to use that.
    thanks a lot.
    Regards,
    veeru.

    Hi
    I have used the direct input but, there are address fields missing in the direct input like, SORT2, MOB_NUMBER, SMTP_ADDR. these fields.
    when i see the documentation for direct input, it says for additional address you need to use another BAPI. but here the problem is we are using internal numbering for vendor, so how to link the created vendor and the address uploaded to correct vendor.
    thanks a lot,.

  • How to insert more than 32k xml data into oracle clob column

    how to insert more than 32k xml data into oracle clob column.
    xml data is coming from java front end
    if we cannot use clob than what are the different options available

    Are you facing any issue with my code?
    String lateral size error will come when you try to insert the full xml in string format.
    public static boolean writeCLOBData(String tableName, String id, String columnName, String strContents) throws DataAccessException{
      boolean isUpdated = true;
      Connection connection = null;
      try {
      connection = ConnectionManager.getConnection ();
      //connection.setAutoCommit ( false );
      PreparedStatement PREPARE_STATEMENT = null;
      String sqlQuery = "UPDATE " + tableName + " SET " + columnName + "  = ?  WHERE ID =" + id;
      PREPARE_STATEMENT = connection.prepareStatement ( sqlQuery );
      // converting string to reader stream
      Reader reader = new StringReader ( strContents );
      PREPARE_STATEMENT.setClob ( 1, reader );
      // return false after updating the clob data to DB
      isUpdated = PREPARE_STATEMENT.execute ();
      PREPARE_STATEMENT.close ();
      } catch ( SQLException e ) {
      e.printStackTrace ();
      finally{
      return isUpdated;
    Try this JAVA code.

  • How to get more than 256 bytes data

    hello.
    I use Schlumberger 32K Card�iJava Card 2.1�j.
    Please tell me how to get more than 256 bytes data from the applet in the card!!
    According to JCRE specification, need to use Get Response Command.
    What is Get Response command?
    Do I have to write processing of Get Response command to an applet?
    Or JCRE processes Get Response command?
    If knows, please tell me about!!
    Thanks.

    Thanks for your response!!
    I understand that I have to write processing of Get Response command to an applet.
    But case of Schlumberger 32K card, when host send Get Response command to an applet, card reply 6F-00!?
    I'm investigating now, and it seems that response is returned before applet processes Get Response command(CLA = 00, INS = C0).
    Do JCRE perform the process of Get Response command?

  • HT1351 i can not store more than 7 gb data in my ipod classic 7 gen 120gb

    i can not store more than 7 gb data in my ipod classic 7 gen 120gb

    See Corrupt iPod classic. What do you see for the stats?
    tt2

  • I can not store more than 7 gb data in my ipod classic 7 gen 120gb

    i can not store more than 7 gb data in my ipod classic 7 gen 120gb

    See Corrupt iPod classic. What do you see for the stats?
    tt2

  • I have an iphone  4 8gig there is 2.4 gig of "other" showing on my usage which is more than all oter data on the phone.  What is it and how do I delete some to clear space?

    I have an iphone 4 8gig there is 2.4 gig of "other" showing on my usage which is more than all other data on the phone.  What is it and how do I delete some to clear space?

    Sorry. We can't help you. It's no longer an iPhone. Apple won't touch it.
    Take it to whoever replaced the screen and see if they can help you.
    iPhones are not user servicable and Apple does not sell iPhone parts at all. I'd be surprised if you were actually able to back it up at this point. It sounds like it's completely borked.

  • Involve more than one HTML data set.

    Hello,
    I am building a website and using spry data sets for it. I need to have opportunity to involve more than one data set. In this sample found exactly what I need - http://livedocs.adobe.com/en_US/Spry/SDG/help.html?content=WSFC985AA5-C5E9-4266-ACE0-62299 A0E0B70.html but in my case I am using HTML data set not the XML. In all browsers except IE all seems to work fine, but I get an Spry debugger error - Spry.Data.HTMLDataSet: 'garden2' is not a valid element ID. 'garden2' is a id for table that I am using as HTML data source. It seems that dreamweaver ain't too supporting this thing with HTML as in that sample, because when i try to open this Data set in bindings panel I get an error -  Invalid URL schema. My idea is that , one HTML data set contains the name list of the products categories and unique url for each product name , and this unique url shows path for other HTML data set for each product, which contains product list for each category. Link to the part of my website where I am trying to do this stuff http://www.varpa.eu/garden.html?row=0  .
    So how can I get rid of the Spry debugger error and make it work in IE ?
    Thank you,
    Richard.

    I found  why page wasn't working on IE,I had not just closed one <tr> tag in HTML data set file. But spry debugger error still occurs in Opera , Safari , Chrome and Dreamweaver live view and I can't still open the second second data set in bindings panel.To hide this <div> with spry debugger error, I just attached style to ir visibility : hidden; . But it's still very weird though that adobe isn't supporting this option for HTML data set, but supports only for XML , isn't it ?
    Richard.

  • Building a method with more than one result data

    Hi, everyone:
    I'm a little shy to ask this question, however, it's been hanging in my mind for so long, so I think I'd rather make a confession on it. You may laugh at me if you want, I'm ready for that, but I more look forward to that someone can really give me the light, or even the link, or some hint....
    For your ease of reading, I give the question first, and my whole story behind:
    When I need a method which can provide more than one result( in other words, multiple outputs), how can I do it in Java? As I know, either you pass and object, or the result of the function is an object will do , for the object contains the datas you want, but that means your needs for those data have to be defined in object format in advance, won't that be inconvinient? Or Java has a better solution for that?
    //And here's the whole story....
    I began my career as a programmer by starting with LabVIEW, it's a graphical programming language made by National Instrument, and it's powerful on DAQ, and industrial field. One of the most important issues on design is to devide your system into multiple functions( in its own term: subVI), I think it's just like applying structured analysis method.
    When we dealing with functions in LabVIEW, a programmer can define his own function with mulitiple inputs and outputs, for example, I can design a function called SumAndDevide, which accepts two input ( two variables to be summed and devided) and gives two results( result of summing and that of deviding).
    The methodology has its power, at least it provide the functional decomposition, and you can compose a suitable solution in certain circumstance even they are not the smallest unit function. And testing is easy. It affects me so large that I look the trail of it when I come to other programming languages. In COBOL( well, that is a VERY old COBOL version ), I was scared to find there is no protection to the inner data on the performed sections, while making a outside subroutine to be called is cubersome and really a hard work. When I came to Delphi, I knew that using the result of a function cannot satisfy me, for it give only one output, even you can define it as variant, but I think it's vague to realize. So I use the difference of called by value and called by reference to handle the problem, that is: a value parameter for the input, and a variable paramter for the output.
    Well, when I came to Java, I am stunned again, now there is no passing by reference mechanism in Java, otherwise you have to pass it as an object, but that means when you need multiple outputs, the output has to be defined in object form in advance. And that will be very inconvinient!! I tried to find some solutions, but I can't. So is there any way that in Java you can define a method with multiple output? or Java handles the problem in totally different way?
    Any comments will be appreciated!!
    Thanks!!
    aQunx from Taiwan

    You missed the most common OO solution - separation of concerns and implementation hiding.
    If you have a function which returns a string, that is one method of the object that provides the service.
    If you have a function which returns a real, that is a different method of the object.
    If both functions require common code, move that into a private method which is called by both. If the method is costly, cache the result.
    eg an aerodynamics properties class, which could be done as a multivalued return of (lift, drag), refactored to independent lift() and drag() methods, which delegate to an interpolate() method, which caches the interpolated value and uses mach, pressureHeight and _alpha to determine whether it should recalculate:  /**
       * Calculates the aerodynamic drag force at a given mach, alpha and pressure height.
      public double drag (final double aMach, final double aPressureHeight, final double aAlpha) {
        interpolate(aMach, aPressureHeight, aAlpha);
        return _drag;
       * Calculates the aerodynamic lift force at a given mach, alpha and pressure height.
      public double lift (final double aMach, final double aPressureHeight, final double aAlpha) {
        interpolate(aMach, aPressureHeight, aAlpha);
        return _lift;
      private void interpolate (final double aMach, final double aPressureHeight, final double aAlpha) {
        if (aMach != _mach) {
          setMach(aMach);
          _pressureHeight = Double.NaN;
        if (aPressureHeight != _pressureHeight) {
          setPressureHeight(aPressureHeight);
          _alpha = Double.NaN;
        if (aAlpha != _alpha) {
          setAlpha(aAlpha);
    ... actual interpolation happens in the private setXXX methods.

  • Crashed 160GB Classic Will No Longer Hold More than 32GB of Data

    So, a few months ago, my 160GB iPod Classic (which is 3 years old last Christmas), crashed on me. I was in the process of uploading some songs to it when it froze; I attempted to eject it, got no response and simply unplugged it. Upon plugging the iPod back in, I was informed that it was corrupted and had to be restored, which I did. Now I find that the iPod simply won't hold hold more than approximately 30-32GB of media before a similar process occurs: the iPod freezes during syncing and then becomes corrupted upon ejection, wherein I restore the iPod and repeat. My initial thought is that a significant portion of the hard drive has crashed and will no longer hold data, but I figured it's probably worth asking whether there's anything I can do to fix this. My AppleCare has expired, and I'm wondering if there's any way around buying an entirely new iPod to remedy the issue. Any help would be appreciated.

    Hi d.a,
    I work for Dr Pod, an iPod repair company.
    It sounds like your hard drive is dying. This is common for an iPod of this age. First of all, I'd try restoring and see if this makes any changes. You can do this by plugging the iPod into iTunes and then clicking 'Restore'.
    If this does not work, then it sounds like your iPod has a hardware fault. As your iPod is 3 years old, it is out of warranty, and Apple would charge you for any repairs. A new hard drive for this iPod usually costs around £100.
    If you feel that this price is too high, then you could look to buy a new iPod from Apple. They will take your old iPod and give you a 10% discount of the cost of your iPod.
    I hope that I have helped. Please get back to me if you need any more assistance,
    Mark Sweeney
    Dr Pod Founder

  • How can I transfer more than 64 bit data from host to target?

    Hi all, I'm currently using PCIe-7851r fpga card to drive my device. There were 64 lines to be controlled. So what I did is generating the commands on the host pc and then transfer it to the target via DMA FIFO. The data type of the FIFO is U64, i.e. every one digit controls 64 DIO lines. But the question becomes complex when I transfer 66 line command. I tried to create 2 FIFOs, but I can hardly make the 2 FIFOs synchronized.
    I think I might be able to create 2 U64 arrays, one contains the original 64 line command,s and the other contains the 2 line info (a waste). And then I interleave them in the host and decimate them in the target. There should be enough cycles to to this. But I dont think this is a good solution. Is there any better method? Thank you.
    LabVIEW 2009, Windows XP, PCIe-7851R
    Regards,
    Bo
    My blog Let's LabVIEW.
    Solved!
    Go to Solution.

    Using the techniques highlighted in this tutorial:
    http://zone.ni.com/devzone/cda/tut/p/id/4534
    You could use code like this:
    Mark B
    ===If this fixes your problem, mark as solution!===

  • What happens when you need More than 1 indexed Date??

    I need multiple date fields on my opportunity record for reporting purposes.
    Unfortunately there is 1 indexed date field...
    How am I able to create indexed data that I can run reports on???? OR am I limited to just 1 indexed date field and the others are going to be non-indexed with all the associated performance issues of a non-indexed field?
    Thanks for your insight,

    Hi,
    I am not very sure about a concern.
    FYI if you are not aware that there is no need for all fields in reports to be indexed.
    It makes a difference only if you have some filters, conditions etc on that field otherwise if it is a simple field that is there are part of the report to present data without any filters, conditions etc, it doesnt make any difference
    Hope it helps
    -- Venky CRMIT

  • More than 1023 characters data in basic report layout?

    Hi,
    Am developing a basic report, where in I have to accommidate around 1100 characters data in a line (columnn headings itself are taking 1080 characters), but system is allowing only 1023 characters, pls. let me know how to achive this?
    Thank you

    If a bottle can only hold 1 litre and you are told to put 2 litres in it, would you also ask how you should do it?
    Why don't you just break up 1 line into 2 separates lines?

  • IT0041 - employee with more than 12 date types;

    Has anyone had an instance where an employee has had more than 12 valid Date Types on IT0041?  If so, how did you enter their 13th date type?  We have just created our 12th date type in the table and we will probably be creating a 13th date type in the near future.  We have a number of employees who already use 11 date types and could use the 2 new ones as well.  I tried to create a new Subtype for my new Date Type - but the new Subtype requires that Date Type 01 be entered.  I am not comfortable with having two identical Date Type 01s in IT0041 (one on Subtype 0001 and one on Subtype 0098). 
    Has anyone used more than one Subtype on IT0041?

    Thank you for your responses.  I don't think changing the Time Constraint class is the best solution for our organization.  We did look at that option.  I don't want to have multiple valid records; I want the ability to have more than 12 date types (values) on one record.  Also, if we allow more than one record, SAP forces us to have Date Type 01 on both valid records - I would be concerned that these values may not match, and then Time Eval would bomb. 
    I'm also still curious if anyone has used more than one Subtype on IT0041?  Again, we did try this, but SAP forces a Date Type 01 on both Subtypes.

  • One parameter - multiple data types?

    I posted a question similar to this in my attempts to use a lexical parameter to make my ORDER BY clause dynamic, but here's a more basic version of my question.
    Is there a way to order by a column from the SELECT list, and make that column capable of having more than one different data type?
    I'm trying to make my ORDER BY dynamic, but the data element the user chooses to order by may be a character, a number, or a date; however, I'm trying to use a parameter to do this, and Reports requires that a paremeter be designated as only one data type.
    Anyone ever found a way to make their ORDER BY dynamic enough to accommodate for the possibility of ordering by just one column that may not always have a value of the same data type?

    I think i have a solution for you at last.
    Do...
    Delare 2 user parameters.
    MYPARAMETER1;
    MYPARAMETER2;
    In myparameter1. add values of your order by clause.
    like.
    COMMENT_DATE ASC
    COMMENT_DATE DESC
    AMOUNT ASC
    AMOUNT DESC
    etc
    Let your myparameter2 empty & also do not diplay that on your parameter form.
    Now open After Parameter Form Trigger under Report Triggers.
    Code it as.
    :MYPARAMETER2 := ' ORDER BY ' || ' ' || :MYPARAMETER1 ;
    RETURN TRUE;
    Then in your query in the end type
    &myparameter2;
    Hope this will work for u brice...
    Capri...

Maybe you are looking for

  • Do I 'need' an audio interface on modern Macs?

    Hi there Don't think I've posted on here in nearly 10 years but I'd be really glad of some help. I currently record on a 2003 eMac running 10.3.9 using Garageband 06. I record directly into the audio in via a tube preamp. I am considering finally upg

  • Adding attachment

    Hi all, I have got a requirement in which i need to allow the user to attach documents. That is, we are providing maintenance view for the user to maintain information about a process in the view. The view has many fields related to the process. In a

  • Field to move left side

    i have a document print in which i have two columns, first column is image field (refering to a file in the local machine), second field is a normal text column, if the 1st field is null then i want the second column to move to the left, i have set b

  • CFS and memory mapped file

    I would like to know if it is possible to memory map (mmap) a file that is residing on a cluster file system (CFS or GFS). If I remember correctly, memory mapping a file residing on NFS has issues. Thanks, Harsh

  • Back to parameter form when report is executed

    Hi Is it possible to be back to the parameter form when the report is executed? E.g. 1 - Enter information in the parameter form, 2 - Execute the report 3 - Back to parameter form 4 - .... 5 - When all the reports processed, exit the report. Thank yo