Want more time to read the field "add a description"

When I am writing a long description in the field "add a description" and then I want to read all I have written, I only have about 10 seconds to read the content in the "enlarged field". Is it possible to do something to get more time to read?

Great Now it counts the column as 43, its correct
but I get this error while coming to this line
int j = addressData.RowCount;
                for (int i = 0; i < j; i++)
                    IRfcStructure row = addressData.GetStructure(i);---> Error at this line
ERROR msg:     FIELD FIELDNAME of TABLE [STRUCTURE RFC_DB_FLD] (GETTER): cannot convert CHAR30 into IRfcStructure
so I changed the code to
IRfcStructure row = addressData.GetStructure(i.ToString());
It shows error as: Element 0 of container metadata  unknown [RfcInvalidParameter Exception]

Similar Messages

  • Do I need to be online to use creative cloud? I want to use it in the field without internet connection.

    Do I need to be online to use creative cloud? I want to use it in the field without internet connection.

    Creative Cloud Help | Creative Cloud / Common Questions
    Do I need to be online to access my desktop apps?
    No, the desktop applications in Creative Cloud, such as Photoshop and Illustrator, are installed directly on your computer, so you don’t need an ongoing Internet connection to use them.
    An Internet connection is required the first time you install and license your apps, but you can use the apps in offline mode with a valid software license. The desktop apps will attempt to validate your software licenses every 30 days.
    Annual members can use the apps for up to 99 days in offline mode. Month-to-month members can use the software for up to 30 days in offline mode.

  • Why do I have to download an attachment (lets say a picture) in my email each time I read the email?

    Why do I have to download an attachment (lets say a picture) in my email each time I read the email? When I have an internet connection, then it is not a problem with the exception of using the data plan and if the file is larger then it takes more time but when I don't have internet and I need to see the attachment...
    Thank You

    On the menubar, select Mail > Preferences > Accounts tab > select the mail account on the left > Advanced tab > Keep copies of messages for offline viewing: > set to All messages and their attachments.
    You need to do this for each of your mail accounts.
    Regards,
    Captfred

  • Does only Adobre Reader "reads" the fields of a PDF when created with Acrobat?

    I created a PDF with several fields and exported it.
    Then I tried to open it with Firefox and the fields didn't appear.
    But it works OK with Adobe Acrobat.
    Does only Adobre Reader "reads" the fields of a PDF when created with Acrobat?

    Adobe software reads form fields. The rules for how to do form fields are a part of the PDF standard (a book available to anyone) but some companies ignore it and others do half a job. To be safe, use only Adobe Reader. And beware of browsers that ignore Adobe Reader even if you have it.

  • How to read the field type from field id of DynamicFldTbl

    Hi,
    In my application, i am using DynamicFldTbl, whch parses FML32 field table definition file. My field table definition file contains information about field names and its types.
    I checked the API of DynamicFldTbl and didn't find any API to get the field type from field it.
    Any way to read the field type from field id?
    Thanks in advance
    Raguraman

    Hi Raguraman,
    Once you have the field table, you can then create an FML32 buffer (TypedFML32) using the constructor that takes a field table, and then use the Fldtype() method on the specific field ID you wish to get the type of. I know this is sort of tedious and we should provide Fldtype() and some others on the field table class directly.
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

  • How to do Query optimization?It takes more time to fetch the record from db. Very urgent, I need your assistance

    Hi all
                                     I want to fetch just twenty thousands records from table. My query take more time to fetch  twenty thousands records.  I post my working query, Could you correct the query for me. thanks in advance.
    Query                    
    select
    b.Concatenated_account Account,
    b.Account_description description,
    SUM(case when(Bl.ACTUAL_FLAG='B') then
    ((NVL(Bl.PERIOD_NET_DR, 0)- NVL(Bl.PERIOD_NET_CR, 0)) + (NVL(Bl.PROJECT_TO_DATE_DR, 0)- NVL(Bl.PROJECT_TO_DATE_CR, 0)))end) "Budget_2011"
    from
    gl_balances Bl,
    gl_code_combinations GCC,
    psb_ws_line_balances_i b ,
    gl_budget_versions bv,
    gl_budgets_v gv
    where
    b.CODE_COMBINATION_ID=gcc.CODE_COMBINATION_ID and bl.CODE_COMBINATION_ID=gcc.CODE_COMBINATION_ID and
    bl.budget_version_id =bv.BUDGET_VERSION_ID and gv.budget_version_id= bv.budget_version_id
    and gv.latest_opened_year in (select latest_opened_year-3 from gl_budgets_v where latest_opened_year=:BUDGET_YEAR )
    group by b.Concatenated_account ,b.Account_description

    Hi,
    If this question is related to SQL then please post in SQL forum.
    Otherwise provide more information how this sql is being used and do you want to tune the SQL or the way it fetches the information from DB and display in OAF.
    Regards,
    Sandeep M.

  • How to read the field value from Table Control

    Hello Experts,
    I am creating my first Table Control Screen. Basically I have to create a screen (102) with a table control which has 2 fields: A_QTY, B_QTY and 2 Buttons: SAVE, EXIT.
    When Clicked on 'SAVE' the data (MATNR) from a previous screen (101)  and the data (A_QTY, B_QTY) from the new screen (102) should be saved into a Z-table.
    Internal table t_data has 3 fields.
    MATNR
    A_QTY
    B_QTY.
    Table Control TC_RACK was declared like this:
    controls tc_rack type tableview using screen 0102.
    I/0 Fields:
    A_QTY type ZQTY.
    B_QTY type ZQTY.
    The screen Flow Logic:
    process before output.
    module status_0102.
      loop at t_data into w_data with control tc_rack.
      endloop.
    process after input.
      module exit_0102 at exit-command.
      loop at tc_rack.
      endloop.
    module user_command_0102.
    module status_0102output.
      set pf-status 'STATUS_102'.
      set titlebar 'TITLE_102'.
      describe table t_rack lines tc_rack-lines.
    endmodule.                 "status_0102 output
    process after input.
    module user_command_0615 input.
    case ok_code.
       when 'SAVE_RK'.
       when others.
    endcase.
    endmodule.                 "user_command_0102 input
    Now for eg, when the users enter values for A_QTY and B_QTY like this:
    A_QTY     B_QTY
    1000         2000
    3000         4000
    How can I read these values and pass them to T_DATA so that I can save it into Z-table?
    I greatly appreciate your help.
    I've gone through some previously posted threads and could not understand because my knowledge in this area is preliminary.
    Thanks a lot.
    Could you please let me know
    Edited by: dev a on Jan 13, 2010 2:46 PM

    Hi dev a
    You should use
      DATA: lv_name(30) TYPE c.
      FIELD-SYMBOLS: <QTY> type ZQTY.
    GET CURSOR FIELD lv_name.   "Get the field name in table control
    check sy-subrc = 0.
    assign  (lv_name) to <QTY>.  "Here you get the value in <QTY>
    check sy-subrc = 0.
    Also use <your table control>-current_line to get the table index uo're currently on.
    Hint: Do not use GET CURSOR LINE if you want to get table index since this gives you the line relative to dialog screen
    Good luck
    Dean Q.
    Edited by: Dean Q on Jan 13, 2010 11:11 PM

  • Is there any way to read the field name,through the property binded to it.

    Hi
    I want to know that,is there any method exits with which i can find the field names of the screen,if i have the property attribute with me.
    as my req is to make the validation for the property attr,& check  how many fields are binded with the single property attr,i have read the property attr dynamically,now need to find the fields linked,& need to check how many fields have not field value,& through the error msg.

    just read the attribute binded to properties using code wizard ( Control + F7).
    Code generalted will be like :
    DATA lo_nd_cn_check TYPE REF TO if_wd_context_node.
        DATA lo_el_cn_check TYPE REF TO if_wd_context_element.
        DATA ls_cn_check TYPE wd_this->element_cn_check.
        DATA lv_ca_check LIKE ls_cn_check-ca_check.
      navigate from <CONTEXT> to <CN_CHECK> via lead selection
        lo_nd_cn_check = wd_context->get_child_node( name = wd_this->wdctx_cn_check ).
      get element via lead selection
        lo_el_cn_check = lo_nd_cn_check->get_element(  ).
      get single attribute
        lo_el_cn_check->get_attribute(
          EXPORTING
            name =  `CA_CHECK`
          IMPORTING
            value = lv_ca_check ).
    Here i have read attribute CA_CHECK.

  • How can i read the field name in the internal table

    Hi friends
    i want to read the internal table filed name.
    my requirement is like this:
    data: begin of t_header occurs 0,
           extno(12),
           priotiy(5),
           ecnumber(10).
          end of t_header.
    loop at t_header.
    if the field name is priority i want to write some other
    logic here.....
    endloop.
    Please tell me how can i do this.

    data: wf_fld_cat type slis_t_fieldcat_alv .
    data: wf_repid like sy-repid .
    data: int_tab_name type slis_tabname .
    move: sy-repid to wf_repid  ,
            'INT_OUTPUT' to int_tab_name .
      call function 'REUSE_ALV_FIELDCATALOG_MERGE'
       exporting
         i_program_name              = wf_repid
         i_internal_tabname          = int_tab_name
      I_STRUCTURE_NAME             =
      I_CLIENT_NEVER_DISPLAY       = 'X'
        i_inclname                   = wf_repid
        i_bypassing_buffer           = 'X'
      I_BUFFER_ACTIVE              =
        changing
          ct_fieldcat                  = wf_fld_cat[]
       exceptions
         inconsistent_interface       = 1
         program_error                = 2
         others                       = 3
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    wf_fld_cat[] will hold the itab definition.
    Regards
    Raja

  • Adding time stamp to the field

    Hi,
    All
    I need to pass the Current Date and Time Stamp to the Target Field
    For Current Date there is a Standard Function Is There ,For Time stamp Is there any Standard Function is there or we Need to write write UDF ,if we need to write to UDF Please provid Java Code for that.
    Marks is awardble
    Thnx in advance
    Regards
    kumar

    Hi,
    Using this java code you can get both Date and Time...
    import java.util.Date;
    Date d = new Date();
    return d.toString();
    The format returned will be like this "Tue Dec 26 12:15:24 IST 2006"
    To change the format, you can use get methods( getDate(), getHours() ) of Date class and concatenate them.
    Regards,
    Uma

  • Apple response to my movie download issue. A one time refund, Read the Terms of Sale, you buy the rental you own it works or not. I tried VUDU and it works great via my PS3. Thanks for everyone input.

    Hi Ernest,
    Chris, here from the iTunes Store. I see that you rented the movie "Captain America: The First Avenger" from the iTunes Store and it will not play properly. When it comes to your money, I can certainly appreciate how important it is to feel that you are treated fairly, and I would be more than happy to help you out with this today.
    I'm happy to report that I was able to make a one time exception for you, and have reversed the charge for "Captain America: The First Avenger," which I understand did not work for you. In five to seven business days, a credit of $3.99, plus any applicable sales tax, should be posted to your Visa.
    Please keep in mind the refund will not process until payment has been received successfully by iTunes, which usually takes three to five business days from the date of your purchase. Once payment has been received, you will receive an invoice for your purchase and the refund will appear three to five business days after your invoice is sent.
    It is highly recommended to monitor the order that a refund has been requested for, to ensure the purchase was processed successfully by your financial institution. If the payment or refund does not appear on your statement after the appropriate amount of time, please respond to the correspondence received and we will gladly investigate this matter further.
    Please note that according to the iTunes Store Terms of Sale, all sales are final, so this is an exception which I cannot guarantee will be granted again in the future. The iTunes Store Terms of Sale are available for you to review here:
    Terms of Sale
    http://www.apple.com/legal/itunes/us/sales.html
    If you have any further questions or concerns regarding this issue, please let me know and I would be more than happy to address them for you. Thank you very much for being part of the iTunes Store family, Ernest, and I hope you have a great day.
    Sincerely,
    Chris

    Sorry your experience wasn't a plesant one, but most of the issues they work on are hardware in nature, not software.. I'm not taking up for Apple... I'd had my share of run-ins with them as well.
    As for your iTunes issue... an EASY solution is to simply tell iTunes that the location you want your tunes stored in is your Public folder. Items in your public folder can be seen and opened by others, so your wife could easily access the files there.
    For you, go to your Music folder, find the iTunes folder, and drag it to your public folder.
    Next, go to iTuness>Preferences and click on the Advanced tab, then the General Tab, and the first window you see is the iTunes Music Folder Locataion. Click Change, then navigate to the iTunes folder in you Public folder.
    Now, next time you purchase a song from the iTunes store, or import songs from a CD, they will be stored in the iTunes folder, in your public folder.
    You wife does basically the same thing except she navigates to YOUR public folder, and the iTunes folder inside.
    She will have to manually find and import any new songs you add but at least your entire library will be available for her to listen to.
    There are other ways of getting the same thing done, but I think this is the easiest.
    Quad 2.5   Mac OS X (10.4.6)  

  • Less sql query cost ... but more time to fetch the records...

    Hi,
    I faced up to a 'peculiar' situation with a costly db view.
    I attempted to reduce the total view cost
    specifically for 223 records fetched{the cost from 149 reduced to 74,
                                                           the recursive calls from 796 reduced to 224,
                                                           the consistent gets from 311516 reduced to 310341,
                                                            the physical reads from 7 reduced to 0}
    but the amount of time needed to fetch the results is greater than the old version of the db view....{it may be the double...}
    Have you any idea about this...????
    Note: I have got fresh statistics...
             I use db 10g v.2
    Thanks,
    Sim

    Try tracing the query and see what tkprofs shows you.
    alter session set events '10046 trace name context forever, level 12';
    run the query
    alter session set events '10046 trace name context off';
    Then run tkprofs on the trace file produced to see where the database is spending its time/effort. Do likewise for the baseline query in a different session (so you will generate a different trace file).
    If that does not produce anything useful, try using
    alter session set events '10053 trace name context forever';
    run the query
    alter session set events '10053 trace name context off';
    Then examine the trace file to see if you can learn anything.
    Since you have not given us anything more to go on, that is about all the help I can give....

  • I want to put symbol ( ' ) in the fields or expressions

    I want to put (') like members's for an example :
    1) select ' sale's ' from dual;
    2) select to_char( hire_date,' DD "of" " ' " Mon YYYY') from employees;
    Because the ORA-01740 error message appears and I tried to put q'[ ' ]' but the same error appears.
    Please help me.
    Thanks,

    836329 wrote:
    Thanks for all .
    but the q' [' ]' you can't put it on select hire_date,' dd "of" Mon q' [' ]' YYYY') from employeesYou mean like this?
    SQL> ed
    Wrote file afiedt.buf
      1  select ename, to_char(hiredate,q'[dd "of" Mon ' YYYY]') as hiredate
      2* from emp
    SQL> /
    ENAME      HIREDATE
    SMITH      17 of Dec ' 1980
    ALLEN      20 of Feb ' 1981
    WARD       22 of Feb ' 1981
    JONES      02 of Apr ' 1981
    MARTIN     28 of Sep ' 1981
    BLAKE      01 of May ' 1981
    CLARK      09 of Jun ' 1981
    SCOTT      19 of Apr ' 1987
    KING       17 of Nov ' 1981
    TURNER     08 of Sep ' 1981
    ADAMS      23 of May ' 1987
    JAMES      03 of Dec ' 1981
    FORD       03 of Dec ' 1981
    MILLER     23 of Jan ' 1982
    14 rows selected.
    SQL>

  • AfterEffects doesn't read the field Order from the Movie Rendered

    We are using QuickTime for Rendering, we are rendering to UpperFielded and we are setting the fileding information to the quicktime movie using AddImageDescriptionExtension as mentioned in QuickTimeSdk...
    We give temporalTopFirst for upperFielding and TemporalBottomFirst for Lower Fielding...
    After Importing to After Effects, it shows LowerFielded Always...
    Am i doing anything wrong, do i need to set any to any other header...
    Regards
    Noorul

    I don't think that AE ever uses this info due to it being totally unreliable (and missing in a number of specific CoDecs). It's more likely adjusting things based on the interpretation rules. In my experience this only works when you embed a project reference where AE compares that reference against the file...
    Mylenium

  • More time to answer the phone

    How do I get my Droid to give me more than about 15 seconds to scramble to answer the phone?  Where is the setting and can I make it as long as, say, 1 or 2 minutes?

    There is no setting for this. I think I have seen a way to change the frequency that your phone polls the towers but I don't remember how and it involves accessing hidden menus an therefore cannot be discussed in this forum.

Maybe you are looking for