Control Excel options from SAP

Hi Experts,
In excel I want to add the expiry date from ABAP code.
I am generating the excel and at the time of generation I want it to restrict to some people which I am able to do
using function ADD of excel--> permission
In the F1 of function ADD it is mentioned that we can pass 3 variables
--> Email
--> permission type
--> expiration date
I tried various format of date but this is not working.
When i call the bewlo mentioned code, I am able to add the user restriction
  CALL METHOD OF w_permission 'Add' = w_usrperm
    EXPORTING
    #1 = email
    #2 = 1.
when i try to use the 3rd parameter, it fails and doesn't even add the user restriction.
  CALL METHOD OF w_permission 'Add' = w_usrperm
    EXPORTING
    #1 = email
    #2 = 1
    #3 = sy-datum.
can you help me on this.
Regards,
Yadesh

try to pass the date with the following format:
write sy-datum to lv_datum DD/MM/YYYY.
(change the format DD/MM/YYYY according to your regional settings)
if it doesnt work then try
concatentate '#' lv_datum '#' into lv_value.
in Excel some date values must be specified with # around... but I'm not sure if it is the case for you

Similar Messages

  • Unable to export report to excel file from SAP

      Hi all,
    I have a problem to download data from a report. The XL gets downloaded in a different format than my colleague.
    We are using the same XL version but two weeks back the SAP GUI 730 got reinstalled to my machine and since then the problem
    started.
    Can you please confirm is there is any particular user settings for this?
    I have login in any different working ( SAP Export ) machine with my login ID and Password and try to export the report to excel file from SAP, and I have same issue . Same we have requested another user to login in my machine with their ID and Password and check the same, They have tried and its working for then in my machine.
    see screenshots attached.
    Thanks.

    Execute report>
    Right click anywhere in the report output and select Spreadsheet.
    A pop up box will appear, select which export option you would like to use and click green check.
    NOTE: If you don't see this option then goto Settings>Switch List then try above said.
    Thanks,
    Kumar

  • How to execute Excel Marco from SAP using Office Integration Classes

    Is there a way to trigger Excel Macro from SAP? I tried using method CALL METHOD document->execute_macro
    of i_oi_document_proxy  but it does not work.
    Thanks
    Vivek

    Try this:
    If you are using OLE to populate the Excel Sheet then, then yes you can run a macro.
      CALL METHOD OF OBJ_EX_APP 'Run'
           EXPORTING #1 = MACROSTR.
    Adding a Field Exit
    To add a field exit first find the data element that is linked to the screen field- the screen number and program
    Run program RSMODPRF. You will need to create two function modules one FIELD_EXIT_MEPO_VENDOR and
    FIELD_EXIT_MEPO_VENDOR_A
    FIELD_EXIT_MEPO_VENDOR should have code simply of input = ouput.
    FIELD_EXIT_MEPO_VENDOR_A should have the code for whatever the functionality is required
    Go back to RSMODPRF and run the program without parameters. Use the push buttons to assign the screen, 'A' and program. Use the drop down to activate the field list.
    This should now work, but there is no way of debugging. For further information look at OSS 29377
    program zzdirlist.
    for AIX this method also works.
    DATA: BEGIN OF TABL OCCURS 0,
          TEXT(80) TYPE C,
          END OF TABL.
    DATA: COMMAND(256) TYPE C.
    COMMAND = 'ls'.
    CALL FUNCTION 'RFC_REMOTE_PIPE' DESTINATION 'SERVER_EXEC'
    EXPORTING COMMAND = COMMAND
    READ = 'X'
    TABLES PIPEDATA = TABL.
    LOOP AT TABL.
       WRITE:/ TABL-text.
    ENDLOOP.

  • How to extract the data into Excel / PDF from SAP

    Hi,
    We have spool number of a report output.
    We want to extract the data into Excel / PDF from SAP directly...
    Plz guide...

    Hi ,
    Please check this [Thread|HOW TO DOWNLOAD SAP OUTPUT TO EXCEL FILE;. Hope your problem will be solved.
    You can check [this also.|http://wiki.sdn.sap.com/wiki/display/sandbox/ToConvertSpoolDataintoPDFandExcelFormatandSenditinto+Mail]
    Thanks,
    Abhijit

  • Export Excel Documents from SAP Business One

    Hello Guys,
    I have been having a problem with one of our customers regarding the export of documents from SAP Business One to Excel, Whenever a user tries to export a list to Excell SBO first exports it to a txt file. I found a thread where some of you had recommended to follow the steps of this procedure in order to allow the system to export the file directly into Excel:
    1. On your desktop go To: "Start -> Programs -> Microsoft Office ->
    Microsof Excel
    2. In Excel go to:"Tools #> Options #> General" Tab.
    3. De-select the tick-box "Ignore Other Applications"
    In order to de-select the "Portection from Macro Viruses"
    1. In Excel go to:"Tools -> Macro -> Security"
    2. Set the security level to "Medium".
    Change path from 'Local' to 'Server'
    1. Define the path:
    a) Choose "Administration"
    b) Choose "System Initialization"
    c) Choose "General Settings"
    d) Select the "Path" tab
    e) Define a path for the Excel folder by using the Browse (...)
    option
    Press 'Export to Excel' to open the 'AutoOpen.xls
    Make sure you change / remove the 'Local;=True' Statement accordingly,
    meaning:
    Excel is Starting from the server: remove the statement.
    Excel is Starting from the client: add the statement.
    The Excel folder should be located in a shared Folder in the server and
    it should contain the "AutoOpen.xls" file.
    I followed all the steps up until the step where it tells me to press "Export to Excel" to open the "AutoOpen.xls"  ( I believe it refers to the Excel Export Command) however when I click the icon it does not open the 'AutoOpen.xls. Does anybody know what the problem might be?? ( I checked the AutoOpen.xls" file and it does exist in the excel folder located in the shaerd folder)
    I`d sure appreciate your help guys!!

    Hi Manuel,
    Can you make sure your path is :
    C:\Program Files\SAP\SAP Business One Server\B1_SHR\ExclDocs\
    Test with this and see what is your result ..make sure you are exporting with folder with Sharing folder B1_SHR .
    Hope this helps
    Bishal
    Edited by: BIshal Adhikari on Sep 17, 2009 11:19 AM

  • Sending external mail with excel attachment from SAP

    Hi All,
    I am trying to send a external mail from SAP. Mail is getting posted correctly with attachment having type excel. If attach file has more than 1 records then in mail it is coming in a single lines. it is not getting wrap.
    e.g. my attach internal table has records like LINE1
                                                                      LINE2
                                                                      LINE3
    output in attach excel file is : LINE1         LINE2          LINE3
    in attach file it should come line by line.
    source code of my function module is as follows :
    FUNCTION ZXI_SEND_MAIL_WITH_ATTACHMENT.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(SUBJECT) TYPE  SO_OBJ_DES OPTIONAL
    *"     REFERENCE(ATTACH_NAME1) TYPE  SOOD-OBJDES
    *"     REFERENCE(EXT1) TYPE  SOODK-OBJTP
    *"     REFERENCE(MAIL_ID) TYPE  ADR6-SMTP_ADDR
    *"  TABLES
    *"      IT_CONTENT TYPE  SOLI_TAB OPTIONAL
    *"      IT_ATTACH TYPE  SOLI_TAB OPTIONAL
      DATA: send_request       TYPE REF TO cl_bcs.
      DATA: document           TYPE REF TO cl_document_bcs.
      DATA: sender             TYPE REF TO cl_sapuser_bcs.
      DATA: recipient          TYPE REF TO if_recipient_bcs.
      DATA: exception_info     TYPE REF TO if_os_exception_info,
      bcs_exception      TYPE REF TO cx_document_bcs.
      DATA i_attachment_size TYPE sood-objlen.
    Creates persistent send request
      send_request = cl_bcs=>create_persistent( ).
      TRY.
    *****Create txt mail document**************************
          document = cl_document_bcs=>create_document(
                                        i_type    = 'RAW'
                                        i_text = it_content[]
                                        i_subject = subject ).
    **************Creates Attachment 1***********************
          CALL METHOD document->add_attachment
            EXPORTING
              i_attachment_type    = ext1
              i_attachment_subject = attach_name1
              i_att_content_text   = it_attach[].
    Add document to send request
          CALL METHOD send_request->set_document( document ).
    Get sender object
          sender = cl_sapuser_bcs=>create( sy-uname ).
    Add sender
          CALL METHOD send_request->set_sender
            EXPORTING
              i_sender = sender.
          recipient = cl_cam_address_bcs=>create_internet_address(
                               i_address_string = mail_id ).
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient  = recipient
              i_express    = 'U'
              i_copy       = ' '
              i_blind_copy = ' '
              i_no_forward = ' '.
    **********Trigger e-mails immediately****************************
          send_request->set_send_immediately( 'X' ).
          CALL METHOD send_request->send( ).
          COMMIT WORK.
        CATCH cx_document_bcs INTO bcs_exception.
      ENDTRY.
    ENDFUNCTION.
    please suggest me a solution and thanks in advance.
    Thanks&Regards,
    Sachin

    See the sample code  for sending attachment as Mail
    Mailing with Attachment by ABAP Coding  
    Refer this link:
    Mail with attachment.
    FORM send_list_to_basis .
      DATA: w_path      LIKE rlgrap OCCURS 0 WITH HEADER LINE,
            lt_index    TYPE sy-tabix,
            doc_type(3) TYPE c,
            descr       LIKE it_objpack_basis-obj_descr,
            temp_data   LIKE w_path,
            temp1       TYPE string,
            tab_lines   TYPE i,
            langu(15)   TYPE c,
            expirydate  TYPE so_obj_edt,
            L_FILE1(100).
      CONCATENATE 'C:\' sy-repid '_' sy-datum '.XLS' INTO L_FILE1.
      W_PATH-FILENAME = L_FILE1.
      APPEND w_path.
      CLEAR w_path.
      wa_doc_chng-obj_descr  = 'User List not logged on for 180 days'.
      wa_doc_chng-obj_langu  = 'E'.
      wa_doc_chng-obj_expdat = sy-datum.
      CLEAR w_subject.
      CONCATENATE 'Please find attached document with list of users'
                  'not logged on for 180 days for client' sy-mandt
                  INTO w_subject SEPARATED BY space.
      it_objtxt_basis-line = w_subject.
      APPEND it_objtxt_basis.
      CLEAR it_objtxt_basis.
      it_objtxt_basis-line = text-004.
      APPEND it_objtxt_basis.
      CLEAR it_objtxt_basis.
      CLEAR w_tab_line.
      DESCRIBE TABLE it_objtxt_basis LINES w_tab_line.
      READ TABLE it_objtxt_basis INDEX w_tab_line  INTO l_cline.
      wa_doc_chng-doc_size =
       ( w_tab_line - 1 ) * 255 + STRLEN( l_cline ).
      CLEAR it_objpack_basis-transf_bin.
      it_objpack_basis-head_start = 1.
      it_objpack_basis-head_num   = 0.
      it_objpack_basis-body_start = 1.
      it_objpack_basis-body_num   = w_tab_line.
      it_objpack_basis-doc_type   = 'RAW'.
      APPEND it_objpack_basis.
      CLEAR it_objpack_basis.
      LOOP AT w_path.
        temp1 = w_path.
        descr = w_path.
        CALL FUNCTION 'STRING_REVERSE'
          EXPORTING
            string  = descr
            lang    = 'E'
          IMPORTING
            rstring = descr.
        CALL FUNCTION 'STRING_SPLIT'
          EXPORTING
            delimiter = '\'
            string    = descr
          IMPORTING
            head      = descr
            tail      = temp_data.
        CALL FUNCTION 'STRING_REVERSE'
          EXPORTING
            string  = descr
            lang    = 'E'
          IMPORTING
            rstring = descr.
        CALL FUNCTION 'STRING_SPLIT'
          EXPORTING
            delimiter = '.'
            string    = descr
          IMPORTING
            head      = temp_data
            tail      = doc_type.
        CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            filename      = temp1
            filetype      = 'BIN'
            header_length = 0
            read_by_line  = 'X'
            replacement   = '#'
          TABLES
            data_tab      = it_upload.
        DESCRIBE TABLE it_upload LINES tab_lines.
        DESCRIBE TABLE it_objbin_basis LINES lt_index.
        lt_index = lt_index + 1.
        LOOP AT it_upload.
          wa_objbin_basis-line = it_upload-line.
          APPEND wa_objbin_basis TO it_objbin_basis.
          CLEAR wa_objbin_basis.
        ENDLOOP.
        it_objpack_basis-transf_bin = 'X'.
        it_objpack_basis-head_start = 0.
        it_objpack_basis-head_num   = 0.
        it_objpack_basis-body_start = lt_index.
        it_objpack_basis-body_num   = tab_lines.
        it_objpack_basis-doc_type   = doc_type.
        it_objpack_basis-obj_descr  = descr.
        it_objpack_basis-doc_size   = tab_lines * 255.
        APPEND it_objpack_basis.
        CLEAR it_objpack_basis.
      ENDLOOP.
      it_reclist_basis-receiver = '[email protected]'.
      it_reclist_basis-rec_type = 'U'.
      APPEND it_reclist_basis.
      CLEAR it_reclist_basis.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = wa_doc_chng
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = it_objpack_basis
          contents_txt               = it_objtxt_basis
          contents_bin               = it_objbin_basis
          receivers                  = it_reclist_basis
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
      IF sy-subrc EQ 0.
        SUBMIT rsconn01 WITH mode = 'INT' AND RETURN.
      ENDIF.
    ENDFORM.                    " send_list_to_basis
    Reward points if useful
    Regards
    Anji

  • How to send ALV Report in excel format from SAP

    Hi Gurus,
    We are using SAP 4.7 and using different SAP reports.Now I want to send SAP ALV report in excel format directly from SAP in background.Now we send these reports in background weekly by using autimetic scheduling but this is PDF format.Now I want to change this pdf format to excel format.In SCOT T.Code I am able to find any excel format.Please help me out.
    I am waiting for your reply.
    Advance Thanks
    Nirmal

    Hi Nirmal,
    I have done the same in my previous organisation.For this particular solution you need to ask your basis guys to upgrade the support package so that BCS classes could be available in the system.
    API interafces five some problem with attachemnts and SAP has recommended to use BCS classes.
    Currently BCS classes won't be availbale in 4.7.
    Once the BCS classes are available
    use below code
       CONSTANTS:
        lc_tab          TYPE c VALUE cl_bcs_convert=>gc_tab,
        lc_crlf         TYPE c VALUE cl_bcs_convert=>gc_crlf,
       lc_codepage     TYPE abap_encod VALUE '4103',
    data :
       lv_string      TYPE string,
       binary_content TYPE solix_tab,
       size           TYPE so_obj_len,
       *" Set Heading of Excel File
      CONCATENATE 'Employee DATA'
                   lc_crlf lc_crlf
                   INTO lv_string.
       *" Set Header for Excel Fields
      CONCATENATE lv_string
                  lc_header1 lc_tab
                  lc_header2 lc_tab
                  lc_header3 lc_tab
                  lc_header4 lc_tab
                  lc_header5 lc_tab
                  lc_header6 lc_tab
                  lc_header7 lc_tab
                  lc_header8 lc_tab
                  lc_header9 lc_tab
                  lc_header10 lc_crlf
                  INTO lv_string.
    "lc_header1 to 10 could be your field headers
       "Move Internal table data
      LOOP AT gt_final1 INTO gwa_final1.
        CONCATENATE lv_string
                    gwa_final1-field1     lc_tab
                    gwa_final1-field2      lc_tab
                    gwa_final1-field3    lc_crlf
                    INTO lv_string.
      ENDLOOP.
       *" convert the text string into UTF-16LE binary data including
    *" byte-order-mark. Mircosoft Excel prefers these settings
    *" all this is done by new class cl_bcs_convert (see note 1151257)
      TRY.
          cl_bcs_convert=>string_to_solix(
            EXPORTING
              iv_string   = lv_string
              iv_codepage = lc_codepage  "suitable for MS Excel, leave empty
              iv_add_bom  = abap_true     "for other doc types
            IMPORTING
              et_solix  = binary_content
              ev_size   = size ).
        CATCH cx_bcs.
          MESSAGE e445(so).
      ENDTRY.
      TRY.
    *" create persistent send request
          send_request = cl_bcs=>create_persistent( ).
          document = cl_document_bcs=>create_document(
            i_type    = lc_doc
            i_text    = main_text
            i_subject = lc_sub  ).     
          document->add_attachment(
            i_attachment_type    = lc_attach                    "#EC NOTEXT
            i_attachment_subject = lc_sub                       "#EC NOTEXT
            i_attachment_size    = size
            i_att_content_hex    = binary_content ).
       send_request->set_document( document ).
       recipient = cl_cam_address_bcs=>create_internet_address( email ).
       CALL METHOD send_request->add_recipient
              EXPORTING
                i_recipient = recipient.
       IF recipient IS NOT INITIAL.
            sent_to_all = send_request->send( i_with_error_screen = abap_true ).
            COMMIT WORK.
    *        MESSAGE text-014 TYPE gc_succ  .
          ENDIF.
        CATCH cx_bcs INTO bcs_exception.
          MESSAGE i865(so) WITH bcs_exception->error_type.
      ENDTRY.
    For BCS decalartion u can go to se 38 and see program BCS_EXAMPLE_1 to BCS_EXAMPLE_7.
    Rewrads if helpful.
    Cheers
    Ramesh Bhatt

  • Executing Excel Macros from SAP

    Hi all Experts,
    I have created a program which tranfers data from different internal tables into Different Worksheets of a single workbook.
    Now, Can some one please tell me how to Execute macros from SAP.
    Regards,
    AJ

    To execute an Excel macro follow these steps.
    1. Create macro inside Excel Workbook where you transferred your information.
    2. Use following instruction to execute the desired macro you create:
        DATA: EXCEL TYPE OLE2_OBJECT.
        CREATE OBJECT EXCEL 'Excel.Application'.
        CALL METHOD OF EXCEL 'Run' EXPORTING #1 = 'WRITE_SHEET_CELL'
                                                                            #2 = 'VALUE1'
                                                                            #3 = 'VALUE2'
                                                                            #4 = 'VALUE3'.
    In previous example, macro WRITE_SHEET_CELL was created first. The macro name must be in uppercase.
    Regards.
    Rafael Rojas.

  • Have a pushbutton on downloaded excel sheet from SAP

    Hello
         Is it possible to have a Pushbutton on downloaded excel sheet from SAP

    Check OLE for this.

  • Search option from SAP Portal to sharepoint portal

    Hi Experts,
    We need to integrate windows sharepoint portal and SAP Enterprise portal.
    As part of that we are implement search option in SAP portal.
    That is with the help of TREX search.
    here when we search any thing with the help of TREX ,
    it has to go to windows sharepont and search the required
    and bring the data back to SAP Portal.
    For this purpose what are the available options and how it has to done ?
    I found that it can be done with the help of cucstom J2EE search Engine.
    I am not sure how it can be done.
    If any one has ideas or implemented already please guide me.
    My client require searching option like this,
    we need to provide drop down box in SAP Portal with 3 options like
    1) search in Share point portal
    2) search in SAP POrtal
    3) Search in both the portals
    Need suggestio0ns how it can be done.
    Thanks in advance.
    Regatds
    Bala

    Hi vijay,
    Thanks for your reply,
    But still i did n't get clear idea.
    please mail me your phone number so that i can discuss with you.
    my mail id <b>[email protected]</b>
    Let me know whether you have worked on this area?
    Thanks in advance
    Regards
    Bala

  • Exporting data to Excel 2007 from SAP report

    Dear all,
    Earlier we used to have Excel 2003 and while downloading data from MC.9 Report - Export - Transfer to XXL, we could able to download the data.
    Now we have installed Excel 2007 and trying to download the data from MC.9 report, its opening excel, but no data is being copied,,, blank excel sheet,,,, further we could not able to download the data.
    Is there any setting need to be done in SAP reporting or excel 2007 to download the data to Excel 2007.
    thanks in advance.
    urendra

    Pl. go through the following step.
    1. Execute MC.9
    2. Select (click on) key figure column
    3. Select  Time series Button (CtrlShiftF4)
    Now seperate window will come.
    4. Select the button Save to PC file (shift+F8)
    By this procedure you can download to excel
    Regards
    Amol

  • Hide back option from sap gui for windows in transaction iview

    Dear experts,
    sir i m using sap gui for windows in transaction iview in the enterprise portal is there any process to hide the back option or hide command window(in which we write transaction) from the transations iview from the portal not from the registry please help sir............

    Hello,
    We have faced the same problem and after two days investigating we think it is imposible to hide back button, toolbar ... via wingui (sapgui for windows).
    So, be careful with the end user that has access to this iview/role, because he will see the transaction menu also.
    I hope this clarify you a bit more.
    have a nice day.

  • How to create an excel file from SAP?

    I needed to create an excel file(with out data) format with fields read from a table.

    check FM
    EXCEL_OLE_STANDARD_DAT
    Regards
    prabhu

  • Upload and save an Excel file from a local machine to SAP

    I am looking for a transaction which allows me to upload an Excel file from a local machine to SAP and save this file (the users should be able to edit the file in SAP afterwards).
    Then I would like to open and read the data from the file with the help of a function module which works as a background job.
    Unfortunately, I cannot use the application server because our users do not have the authorization to save files on it. Besides, the application server is not able to process Excel files.
    Thank you in advance.
    Stephan Klumpp

    Hi Stephan,
    You can do this using OLE technology. Bu you will have performance issues.
    Can you check the below demo programs? It has similar functionality. I am able to create excel sheet from sap and also able to save the data in the sap.
    SAPRDEMOEXCELINTEGRATION
    SAPRDEMOEXCELINTEGRATION2
    Please also check the below rograms for more help.
    SAPRDEMOACTIVEXINTEGRATION
    SAPRDEMODOCUMENTCONTAINER
    SAPRDEMODOCUMENTCONTAINER2
    Thanks
    Ramakrishna

  • Spot instead comma in Excel from SAP

    Hi all.
    I get a Excel file from SAP. One of the fields is material, with format XXXXX.X in SAP, but in Excel it is shown with format XXXXX,X I need in Excel the material is shown with a spot, like SAP. What can I do?
    The code is:
    CREATE OBJECT Excel  'EXCEL.APLICATION'.
    CALL METHOD OF Excel 'WORKBOOKS' = books.
    CALL METHOD OF books 'ADD' = book.
    LOOP AT tab.
    PERFORM rellenar_celdas USING x1 tab-gltri.
    PERFORM rellenar_celdas USING x2 tab-matnr.
    ENDLOOP.
    SET PROPERTY OF Excel 'VISIBLE' = 1.
    FORM rellenar_celdas USING i j val.
    CALL METHOD OF Excel 'CELLS' = cell
    EXPORTING
    #1 = i
    #2 = j
    SET PROPERTY OF cell 'VALUE' = val.
    ENFORM.
    Thanks a lot.
    Marta.

    I did like this
    FORM CREATE_GRID USING
           X1 TYPE I Y1 TYPE I
           X2 TYPE I Y2 TYPE I
           NAME.
    *Workbooks.workSheets(1).columns(GS_CELLS).
    *Worksheets("Sheet1").Cells(5, 3).Font.Size = 14
       CALL METHOD OF GS_EXCEL 'Cells' = GS_CELL1
       EXPORTING #1 = X1 #2 = Y1.
       CALL METHOD OF GS_EXCEL 'Cells' = GS_CELL2
       EXPORTING #1 = X2 #2 = Y2.
       CALL METHOD OF GS_EXCEL 'Range' = GS_CELLS
       EXPORTING #1 = GS_CELL1 #2 = GS_CELL2.
       CALL METHOD OF GS_CELLS 'Select' .
       CALL METHOD OF GS_CELLS 'Merge' .
       CALL METHOD OF GS_CELLS 'BorderAround'
       EXPORTING #1 = 1 #2 = 2.
       SET PROPERTY OF GS_CELLS 'NumberFormat' = '#,##0.00' .
       SET PROPERTY OF GS_CELLS 'RowHeight' = 13.
       SET PROPERTY OF GS_CELLS 'Value' = NAME.
       SET PROPERTY OF GS_CELLS 'VerticalAlignment' = 2.
    *  SET PROPERTY OF gs_cells 'HorizontalAlignment' = -4108.
       SET PROPERTY OF GS_CELLS 'WrapText' =  1.
       GET PROPERTY OF GS_CELLS 'Font' = GS_FONT.
       SET PROPERTY OF GS_FONT 'Size' = 8.
    ENDFORM.

Maybe you are looking for

  • Can not insert/update data from table which is created from view

    Hi all I'm using Oracle database 11g I've created table from view as the following command: Create table table_new as select * from View_Old I can insert/update data into table_new by command line. But I can not Insert/update data of table_new by SI

  • Query of Module Purchase Order, Good Receipt PO,  Good Return

    Hi, Like to ask assistance regarding Module Purchase Order, Good Receipt PO,  Good Return under Purchasing A/P. I have a hard time to linking the tables above: PO Module have table : OPOR and OPOR1 GRPO have table : OPDN and PDN1 Good Return have tab

  • Wavy video problem in iDVD

    Howdy. I'm new to video editing, so please forgive any incorrect use of terms. I've got a problem with video in iDVD. I'm importing my HDV data from my Canon HV10 (I believe it's 1080 HD) to FC4 Express. I edit, then export to Quicktime movie. Then i

  • Why constant Podcast download errors?

    Constantly get "download error, tap to retry".    This especially true for news and financial programs.....   So info is there but not able to be downloaded.   I can delete the pending file, but that doesn't get the info downloaded.    Is this issue

  • After Lightroom CC update, PS & Bridge fail to update and get error U43M1D204.  Retried for two days still same error.

    After installing the lightroom CC update, PS and Bridge reported they had updates.  When trying to update I get the error U43M1D204 and it fails.  Retried for two days now and still cannot get it to work.  Tried removing PS and Bridge but there is no