Uploading CSV file for adding contacts

Is it possible to upload a csv file of my contacts to the contact on my storm?  If so, how is that done?

install the Desktop Manager. you can download it from the software section of the Blackberry.com website.
take the one "without Media manager" and install it on your PC.
then after openingthe Desktop Manager :
first, do a backup of what's in your Blackberry Storm
then you can do a manual synchronization, just choose ascii file and follow the instructions.
The search box on top-right of this page is your true friend, and the public Knowledge Base too:

Similar Messages

  • Issue when I upload CSV file for insert contact list on Cisco Attendant Console Advanced

    Hi Friends,
    I have error "Provided file is not valid CSV File" when I upload CSV file to Cisco Attendant Console Advanced system. I'm not sure what happen about my CSV. My purpose is insert contact list to system and create CSV base on documentation.
    Anyone have idea to solve this issue please kindly help me.
    Thanks

    You are right, whenever Cisco device boots, the IOS files gets loaded on the DRAM.
    But in this process, some temporary files are also generated which gets saved in the flash/Disk, that’s the only reason you got these error messages. It’s not recommended at all to have less space in the Flash than what is recommended on Cisco.com. I would say please remove some files from Disk and have minimum 256 MB flash otherwise your router may drop into rommon mode at the time of next reload.
    Well, it’s good to upgrade the bootstarp image too. Currently you are running 15.X IOS code, I would say run 15.X bootstarp image on the box.
    You may download bootstarp image for 7206VRX NPEG2 from the link below:-
    http://software.cisco.com/download/release.html?mdfid=282188585&flowid=1380&softwareid=280805685&release=15.2.4S4&relind=AVAILABLE&rellifecycle=ED&reltype=latest
    If you want to know the procedure of the upgrade, click the link mentioned below:-
    http://www.cisco.com/en/US/docs/ios/12_2/configfun/command/reference/frf010.html#wp1017654
    -Amant

  • Upload csv files with infopackages

    Hello,
    I want to upload csv files for an infopackage in BW System and when i execute the infopackage, the system sends the error message "Role for scan virus /SCET/GUI_UPLOAD is not active".
    Can anybody help me?
    Thanks
    Silvia Marques

    Hi Silvia,
    You can check OSS note: 841387. Other relevant notes are :803637, 797108 and 807989.
    Hope this helps...

  • HT2486 how can I export the contact book data to a csv file for editing?

    how can I export the contact book data to a csv file for editing?

    You can edit a card right in Contacts. No need to export and re-import.
    Select a name and on the right side, click the Edit button:

  • Sample CSV file for Master Schema Upload in CCM

    Hi All,
    Can some please send me a sample CSV file for Master Schema Upload in CCM to my ID <i>[email protected]</i>. Points will be awarded for the same
    Regards
    Hari

    Hi
    Sent the same to your email id. )
    Regards
    - Atul

  • How can i import contacts from a csv file to "iCloud Contacts"?

    How can I import contacts from a csv file to "iCloud Contacts"?

    The only way I know of to import cells from a csv file is by creating a new file.  But then you can select the desired cells and copy them to the other file.  I just did it to be sure it works.
    1. Create the new spreadsheet file via the upload command.
    2. Select the cells (table) that you want to move to the other file and press command+C (copy).
    3. Close the new file and open the existing file.
    4. Select the top/right cell of the area to receive the copied "table" and press commant+V (paste).
    I hope this is what you're trying to do!

  • How to upload .CSV file from Application Server

    Hi Experts,
        How to upload .CSV file separated by ',' from Application server to an internal table.
    Invoice No,Cust No,Item Type,Invoice Date,days,Discount Amount,Gross Amount,Sales Amount,Customer Order No.,Group,Pay Terms
    546162,3233,1,9/4/2007,11,26.79,5358.75,5358.75,11264,HRS,11
    546163,2645,1,9/4/2007,11,3.07,305.25,305.25,10781,C,11
    Actually I read some already answered posts. But still I have some doubts.
    Can anybody please send me the code.
    Thanks in Advance.

    Hi Priya,
    Check this code
    Yhe logic used here is as follows,
    Get all the data into an internal table in the simple format ie: a row with one field contains an entire line
    After getting the data, we split each line of the table on every occurrence of the delimiter (comma in your case)
    Here, I have named the fields as field01, field02 etc, you could use your own names according to your requirement
    parameters: p_file(512).
      DATA : BEGIN OF ITAB OCCURS 0,
              COL1(1024) TYPE C,
             END OF ITAB,
             WA_ITAB LIKE LINE OF ITAB.
      DATA: BEGIN OF ITAB_2 OCCURS 0,
        FIELD01(256),
        FIELD02(256),
        FIELD03(256),
        FIELD04(256),
        FIELD05(256),
        FIELD06(256),
        FIELD07(256),
        FIELD08(256),
        FIELD09(256),
        FIELD10(256),
        FIELD11(256),
        FIELD12(256),
        FIELD13(256),
        FIELD14(256),
        FIELD15(256),
        FIELD16(256),
       END OF ITAB_2.
      DATA: WA_2 LIKE LINE OF ITAB_2.
        OPEN DATASET p_FILE FOR INPUT IN TEXT MODE ENCODING NON-UNICODE.
        IF SY-SUBRC = 8.
          WRITE:/ 'File' , p_FILE , 'cannot be opened'.
          LV_LEAVEPGM = 'X'.
          EXIT.
        ENDIF.
        WHILE SY-SUBRC <> 4.
          READ DATASET p_FILE INTO WA_ITAB.
          APPEND WA_ITAB TO ITAB.
        ENDWHILE.
        CLOSE DATASET p_FILE.
      LOOP AT ITAB INTO WA_ITAB.
        SPLIT WA_ITAB-COL1 AT ','    " where comma is ur demiliter
         INTO WA_2-FIELD01 WA_2-FIELD02 WA_2-FIELD03 WA_2-FIELD04
         WA_2-FIELD05 WA_2-FIELD06 WA_2-FIELD07 WA_2-FIELD08 WA_2-FIELD09
         WA_2-FIELD10 WA_2-FIELD11 WA_2-FIELD12 WA_2-FIELD13 WA_2-FIELD14
         WA_2-FIELD15 WA_2-FIELD16.
        APPEND WA_2 TO ITAB_2.
        CLEAR WA_2.
      ENDLOOP.
    Message was edited by:
            Kris Donald

  • Uploading CSV file problem

    Hello everyone.
    I have a minor problem in uploading CSV file to HTMLDB.
    I don't know the exact reason, but HTMLDB threw
    "ORA-20001: Unable to create collection: ORA-06502: PL/SQL: numeric or value error" whenever I tried to upload my csv file. after a few repetition of deleting potential problem-causing columns and trying again, I found out the following:
    when numeric value and character value are stored together in single column, the upload fails. For example, we have a column which stores the employee number. The employee number is just a sequential numeric value, however temporary employees have 'T' in front of their employee number, so it begins something like T0032 and so on.
    So, then, I tried to enclose all the employee numbers which start with numeric value with " character, but that would just simply take too long to do it manually, and excel does not seem to support enclosing the values with " when it's saving the spreadsheet with CSV format.
    So, I'm kind of stuck right now.
    Can anyone give me a good way to deal it?
    THANK YOU!

    Thanks for updating my forum setting, my name is now clearly visible :-)
    anyway.. I went back and tested couple of things...
    It now appears that the problem is not caused from values inside the column... instead..
    I believe the size of csv file with certain character set is the issue here...
    This is a rough estimate, but file size larger than about 31.7 ~ 9kb caused errors IF THEY CONTAINED OTHER CHARACTER SET THAN ENGLISH.
    here are informations about my setting:
    1. Oracle database: initially 9.2.0.1 -> patched upgrade to 9.2.0.4
    2. HTMLDB: 1.4.0.00.21c (downloaded from otn)
    3. db character set : UTF-8
    4. OS: windows 2000 (with up-todate service pack and
    security patches and etc..)
    5. system: toshiba tecra 2100 with 1GB ram and 40GB hdd
    6. operation system locale: korean, south korea
    I tried uploading many other files in both english and korean, which is my national language. The english csv file worked beautifully, without any file size limitations. However, when I tried to upload a file with
    KOREAN characters in it, it failed.
    Intrigued by this behavior I started to test the file upload with various excel files, and found out that..
    1. english csv files caused absolutely no errors.
    2. engilsh file with single korean character immediately
    threw the error, if the size exceeded 31.8kb (or I
    think the size is 32kb)
    3. I tested korean file mixed english file, caused
    the same error if the size exceeded 32kb.
    the distribution of korean characters inside the
    csv file did not matter, just don't go beyond 32kb!
    Please reproduce this behavior (but I presume that some efforts will be required in order to reproduce this error perfectly, since it is not easy to obtain foreign OS in US regions.. is it?)
    anyway, thanks for your quick reply, and
    I hope this problem gets fixed, because in this manner,
    I have to split my file into 32kb chunks!
    - Howard

  • Upload Csv files with infopackages - Error 1

    Hello again,
    i'm trying to upload csv file into a infopackage with master data text but the sistem sends a error message "Error 1 uploading external data".
    Infopackage settings:
    source system: PC
    file type: data file
    csv file
    data separator ;
    ESC signal "
    a created a txt file with data separated with ; and later converted txt file into a csv file.
    can anybody help me pls?
    Thanks
    Silvia Marques

    Hi Silvia,
    If the fields are correct in the transfer structure (only 2 fields). Then check whether the field length and type has been defined correctly for both the fields.
    If thats not a problem then try to load only upto PSA.
    If you are using IDOC as your transfer method then go to the "details" tab of the monitor of the error request and see the details. It will give you the correct picture of the error.
    Bye
    Dinesh.

  • Uploading csv file into database using apex

    Dear all
    I am using apex 4 and oracle express 10g, i need to upload .csv file into the database for one of my appls, i have referred discussion forum for solutions, i found also, but some how its not working for me.
    below mentioned is error and the code
    ERROR:
    ORA-06550: line 38, column 8: PLS-00221: 'V_DATA_ARRAY' is not a procedure or is undefined ORA-06550: line 38, column 8: PL/SQL: Statement ignored ORA-06550: line 39, column 8: PLS-00221: 'V_DATA_ARRAY' is not a procedure or is undefined ORA-06550: line 39, column 8: PL/SQL: Statement ignored ORA-06550: line 40, column 8: PLS-00221: 'V_DATA_ARRAY' is not a procedure or is undefined ORA-06550: line 40, column 8: PL/SQL: Statement ignored ORA-06550: line 41, column 8: PLS-00221: 'V_DATA_ARRAY' is not a proc
    Error
    OK
    CODE:
    DECLARE
    v_blob_data BLOB;
    v_blob_len NUMBER;
    v_position NUMBER;
    v_raw_chunk RAW(10000);
    v_char CHAR(1);
    c_chunk_len number := 1;
    v_line VARCHAR2 (32767) := NULL;
    v_data_array wwv_flow_global.vc_arr2;
    BEGIN
    -- Read data from wwv_flow_files
    select blob_content into v_blob_data
    from wwv_flow_files where filename = 'DDNEW.csv';
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- Read and convert binary to char
    WHILE ( v_position <= v_blob_len ) LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    -- Convert comma to : to use wwv_flow_utilities
    v_line := REPLACE (v_line, ',', ':');
    -- Convert each column separated by : into array of data
    v_data_array := wwv_flow_utilities.string_to_table (v_line);
    -- Insert data into target table
    EXECUTE IMMEDIATE 'insert into TABLE_X (v1, v2, v3, v4 ,v5, v6, v7,v8 ,v9, v10, v11)
    values (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11)'
    USING
    v_data_array(1),
    v_data_array(2),
    v_data_array(3),
    v_data_array(4);
    v_data_array(5);
    v_data_array(6);
    v_data_array(7);
    v_data_array(8);
    v_data_array(9);
    v_data_array(10);
    v_data_array(11);
    -- Clear out
    v_line := NULL;
    END IF;
    END LOOP;
    END;
    what i understand from this is system does not identify v_data_array as array for some reasons, please help me.
    initially system was giving error for hex_to_decimal, but i managed to get this function on discussion forum and now it seems to be ok. but v_data_array problem is still there.
    thanks in advance
    regards
    Uday

    Hi,
    Mistakes in your sample I did correct
    Problem 1
    select blob_content into v_blob_data
    from wwv_flow_files where filename = 'DDNEW.csv'; to
    select blob_content into v_blob_data
    from wwv_flow_files where name = :P1_FILE;Problem 2
    EXECUTE IMMEDIATE 'insert into TABLE_X (v1, v2, v3, v4 ,v5, v6, v7,v8 ,v9, v10, v11)
    values (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11)'
    USING
    v_data_array(1),
    v_data_array(2),
    v_data_array(3),
    v_data_array(4);
    v_data_array(5);
    v_data_array(6);
    v_data_array(7);
    v_data_array(8);
    v_data_array(9);
    v_data_array(10);
    v_data_array(11);  to
    EXECUTE IMMEDIATE 'insert into TABLE_X (v1, v2, v3, v4 ,v5, v6, v7,v8 ,v9, v10, v11)
    values (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11)'
    USING
    v_data_array(1),
    v_data_array(2),
    v_data_array(3),
    v_data_array(4),
    v_data_array(5),
    v_data_array(6),
    v_data_array(7),
    v_data_array(8),
    v_data_array(9),
    v_data_array(10),
    v_data_array(11);  And I did create missing table
    CREATE TABLE TABLE_X
        v1  VARCHAR2(255),
        v2  VARCHAR2(255),
        v3  VARCHAR2(255),
        v4  VARCHAR2(255),
        v5  VARCHAR2(255),
        v6  VARCHAR2(255),
        v7  VARCHAR2(255),
        v8  VARCHAR2(255),
        v9  VARCHAR2(255),
        v10 VARCHAR2(255),
        v11 VARCHAR2(255)
      );Regards,
    Jari
    Edited by: jarola on Nov 19, 2010 3:03 PM

  • How to search a .csv file for data using its timestamp, then import to labview

    Hi, I'm currently obtaining density, viscosity and temperature data from an instrument, adding a timestamp and writing it to a .csv file which I can view in Excel. This works fine (see attached code) but what I need to do now is to search that csv file for data which was obtained at a certain time, import the temperature, density & viscosity values at this time back into Labview to do some calculations with them, while the data acquisition process is still ongoing.
    I've found various examples on how to import an entire csv file into labview, but none on how to extract data at a specific time. Also, whenever I try to do anything with the .csv file while my data acquistion VI is running, I receive error messages (presumably because I'm trying to write to and import data from the .csv file simultaneously). Is there some way around this, maybe using case structures?
    If you need to know my skill level, I've been using Labview for a few weeks and prior to that have basically no experience of writing code, so any help would be great. Thanks!
    Solved!
    Go to Solution.
    Attachments:
    Lemis VDC-30 read registers MODBUS v5.vi ‏56 KB

    It sounds as if you are going about this a little backwards writing to a data file and then extracting from the file but its the weekend so I can't think of an improved way to do it at the moment. 
    Searching for a specific time with those specific values is quite easy, or if you wanted to select any time then you could interpolate the values to find any value that you want (This is where the contiguous measurement comes in, as you have readings at discrete times you will have to interpolate the values if you want to get the 'measured value' at a time point that is not exactly one of your measured points).
    If you can extract the TDMS time column and the T, D & V then simply thresholding and interpolating each of your array/data sets should allow readings at your desired times.
    Attachments:
    Interpolate.png ‏301 KB

  • Update on importing csv file for drop down options

    My search on this topic provided me with a suggestion for the capability to upload a csv file for drop down options.  However, the discussion was from April 2011.  Has any progress been made on this since?
    Thanks.

    This is not something we currently support but you can add or vote on feature ideas:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    Thanks,
    Jeff

  • Upload csv file to sap in background

    Dear Expert,
    Please help me I want to record vendor data in background mode for this i used SHDB and has done recordings then i used gui_upload function in program and successfully uploaded CSV file without any error, then i have created session when i am running session with foreground or display error checkbox it is running correctly, as i want to run in background then i clicked on background checkbox  for process it gives information message 1 session transferred to background processing but when i am checking log there it is showing trasaction read 0, transaction processed 0, transaction with error 0, transactions deleted 0.
    Please tell me cant i upload csv file in background with this method?
    Is it manadatory to use open datset, read data set for uploading file in background?

    Hello Sir,
    During opening dataset it is opening only one record from excel file that is first row. It is not reading rest rows, I tried to used it like this...
    do 10 times.
      perform open_dataset using dataset.
      read dataset dataset into record.
      if sy-subrc <> 0.
        exit.
      endif.
      append record.
    enddo.
    First time it reads first row second time at open_dataset it is giving dump given below.
    The file "D:\vendor.csv" is already open.
    What happened?
    Error in ABAP application program.
    The current ABAP program "ZNEWTEST" had to be terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    Please resolve my problem....

  • Symbol gone for adding contacts

    my + symbol is gone for adding contacts. i restored my phone and it's still not back... any suggestions?

    install the Desktop Manager. you can download it from the software section of the Blackberry.com website.
    take the one "without Media manager" and install it on your PC.
    then after openingthe Desktop Manager :
    first, do a backup of what's in your Blackberry Storm
    then you can do a manual synchronization, just choose ascii file and follow the instructions.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Uploading CSV file

    Hi,
    i saved excel file into CSV file in that file amount filed contains comma.now iam uploading csv file into internal table using GUI_UPLOAD iam getting data into internal table.
    internaltable contains row  like
    1100,600000,1114,"1,89",Hours on Project.  1,89 is amount
    filed.how can i split the above internal table and move to another internal table.another internal table row contains like 1100  600000 1114  1,89  Hours on Project. Please provide me solution.
    Regards,
    Suresh

    There is a function module for converting file to CSV format please find the code below :
    *& Report  ZCRPT_PP_013
    REPORT  zcrpt_pp_013.
           no standard page heading
           line-size  80
           line-count 65(0)
           message-id ...
      Dev. Class       :                                                 *
      Report Name      :                                                 *
      Program Type     :                                                 *
      Created by       :                                                 *
      Created on       :                                                 *
      Transaction Code :                                                 *
      Module Name      :                                                 *
      Object ID        :                                                 *
      Description      :                                                 *
      SAP Release      : 4.6 C                                           *
      Change Request   :                                                 *
    TYPE-POOLS : slis, truxs.
          1 :   Tables Defination                                        *
    TABLES : mseg,mara,makt,mard,t001w.
          2 :   Selection Screen                                         *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_matnr FOR mard-matnr.
    PARAMETERS : p_werks LIKE mard-werks.
    SELECTION-SCREEN END   OF BLOCK b1.
    *SELECTION-SCREEN BEGIN OF BLOCK m WITH FRAME.
    *PARAMETERS: p_file TYPE  rlgrap-filename.
    *SELECTION-SCREEN END OF BLOCK m.
          3 :   Internal Table Declaration                               *
    DATA   :  BEGIN OF it_mara OCCURS 0,
              place1(12),
              place2(12),
              matnr LIKE mard-matnr,
              maktx LIKE makt-maktx,
              labst LIKE mard-labst,
              werks like mard-werks,
              place3(12),
              date(10) ,
              END OF it_mara.
    DATA: it_mara1 TYPE truxs_t_text_data.
    DATA : layout    TYPE slis_layout_alv,
           event     TYPE slis_t_event ,
           wa_event  TYPE slis_alv_event,
           variant   TYPE disvariant.
    DATA : alvly     TYPE slis_layout_alv.
    DATA : alvev     TYPE slis_t_event.
    DATA : fcat      TYPE slis_t_fieldcat_alv.
    DATA : w_fcat    TYPE slis_fieldcat_alv.
            :   Start of Selection                                       *
    START-OF-SELECTION.
      perform build_layout.
      PERFORM select.
      PERFORM process.
      PERFORM display.
    END-OF-SELECTION.
      F o r m     R o u t i n e s     S t a r t s     H e r e            *
    *&      Form  SELECT
          text
    -->  p1        text
    <--  p2        text
    FORM select .
      SELECT matnr  werks FROM mard
             INTO CORRESPONDING FIELDS OF TABLE it_mara
             WHERE matnr IN s_matnr
             AND werks LIKE p_werks.
      LOOP AT it_mara.
      SELECT SUM( labst ) FROM mard INTO it_mara-labst
                                 WHERE matnr = it_mara-matnr
                                 AND werks = it_mara-werks.
        SELECT SINGLE maktx INTO it_mara-maktx FROM makt
                          WHERE matnr = it_mara-matnr.
        MODIFY it_mara TRANSPORTING maktx labst.
      ENDLOOP.
    ENDFORM.                    "SELECT
    *&      Form  PROCESS
          text
    -->  p1        text
    <--  p2        text
    FORM process .
      LOOP AT it_mara.
        WRITE  sy-datum TO it_mara-date USING EDIT MASK '__/__/____'.
        WRITE 'VIKROLI' TO it_mara-place1.
        WRITE 'VIKROLI' TO it_mara-place2.
        WRITE 'Stock'   TO it_mara-place3.
       WRITE  '2101'   TO it_mara-werks.
        MODIFY it_mara TRANSPORTING place1 place2 labst place3 date.
      ENDLOOP.
      DELETE ADJACENT DUPLICATES FROM it_mara  COMPARING ALL FIELDS.
      DELETE it_mara WHERE labst EQ ' '.
    CALL FUNCTION 'SAP_CONVERT_TO_CSV_FORMAT'
      EXPORTING
        I_FIELD_SEPERATOR          = ';'
      I_LINE_HEADER              =
      I_FILENAME                 =
      I_APPL_KEEP                = ' '
      TABLES
        i_tab_sap_data             = it_mara
      CHANGING
        I_TAB_CONVERTED_DATA       = it_mara1
      EXCEPTIONS
        CONVERSION_FAILED          = 1
        OTHERS                     = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              filename                        = 'C:\Documents and Settings\coconut1\Desktop\ticket\FG_VIKROLI.csv'
            FILETYPE                        = 'ASC'
            WRITE_FIELD_SEPARATOR           = ','
          IMPORTING
            FILELENGTH                      =
            tables
              data_tab                        = it_mara1
            FIELDNAMES                      =
           EXCEPTIONS
             FILE_WRITE_ERROR                = 1
             NO_BATCH                        = 2
             GUI_REFUSE_FILETRANSFER         = 3
             INVALID_TYPE                    = 4
             NO_AUTHORITY                    = 5
             UNKNOWN_ERROR                   = 6
             HEADER_NOT_ALLOWED              = 7
             SEPARATOR_NOT_ALLOWED           = 8
             FILESIZE_NOT_ALLOWED            = 9
             HEADER_TOO_LONG                 = 10
             DP_ERROR_CREATE                 = 11
             DP_ERROR_SEND                   = 12
             DP_ERROR_WRITE                  = 13
             UNKNOWN_DP_ERROR                = 14
             ACCESS_DENIED                   = 15
             DP_OUT_OF_MEMORY                = 16
             DISK_FULL                       = 17
             DP_TIMEOUT                      = 18
             FILE_NOT_FOUND                  = 19
             DATAPROVIDER_EXCEPTION          = 20
             CONTROL_FLUSH_ERROR             = 21
             OTHERS                          = 22
          IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    ENDFORM.                    " PROCESS
    *&      Form  DISPLAY
          text
    -->  p1        text
    <--  p2        text
    FORM display .
      w_fcat-fieldname = 'PLACE1'.
      w_fcat-tabname   = 'it_mara'.
      w_fcat-col_pos   = 1.
      w_fcat-outputlen = '10' .
      APPEND w_fcat TO fcat.
      CLEAR w_fcat.
      w_fcat-fieldname = 'PLACE2'.
      w_fcat-tabname   = 'it_mara'.
      w_fcat-col_pos   = 2.
      w_fcat-outputlen = '10' .
      APPEND w_fcat TO fcat.
      CLEAR w_fcat.
      w_fcat-fieldname = 'MATNR'.
      w_fcat-tabname   = 'it_mara'.
      w_fcat-col_pos   = 3.
      w_fcat-outputlen = '15' .
      APPEND w_fcat TO fcat.
      CLEAR w_fcat.
      w_fcat-fieldname = 'MAKTX'.
      w_fcat-tabname   = 'it_mara'.
      w_fcat-col_pos   = 4.
      w_fcat-outputlen = '40' .
      APPEND w_fcat TO fcat.
      CLEAR w_fcat.
      w_fcat-fieldname = 'LABST'.
      w_fcat-tabname   = 'it_mara'.
      w_fcat-col_pos   = 5.
      w_fcat-outputlen = '15' .
      APPEND w_fcat TO fcat.
      CLEAR w_fcat.
      w_fcat-fieldname = 'PLACE3'.
      w_fcat-tabname   = 'it_mara'.
      w_fcat-col_pos   = 6.
      w_fcat-outputlen = '15' .
      APPEND w_fcat TO fcat.
      CLEAR w_fcat.
      w_fcat-fieldname = 'DATE'.
      w_fcat-tabname   = 'it_mara'.
      w_fcat-col_pos   = 7.
      w_fcat-outputlen = '15' .
      APPEND w_fcat TO fcat.
      CLEAR w_fcat.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
         i_callback_program                = sy-repid
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
         is_layout                         = alvly
         it_fieldcat                       = fcat
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
         i_save                            =  'X'
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          t_outtab                          = it_mara
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " DISPLAY
    *&      Form  build_layout
          text
    -->  p1        text
    <--  p2        text
    form build_layout .
    alvly-no_input          = 'X'.
    alvly-no_colhead        = 'X'.
    alvly-zebra             = 'X'.
    alvly-colwidth_optimize = 'X'.
    endform.                    " build_layout

Maybe you are looking for

  • Network Manager Openvpn

    Hi all !! Good to be part of the arch commumnity I recently installed networkmanager package openvpn plugin pptp plugin vpnc plugin and the applet Although the Add button is enabled in the networkmanager gui when i choose to add an openvpn connection

  • Iphone as a security tool against car-steals?

    Is there any accessory that comes along with Iphone to secure car with a localisation seeker. Actually I'd like to put this thing (if there exist) in my bike in order to localise it anytime I want!

  • Secure inter-session communication

    How to pass data from one session to another session of same user? I mean how to pass it a way that nobody else can intercept? Oracle's DBMS_PIPE private pipes are not secure enough, SYSDBA can read/write from/to anybody's private pipe. :(. Any ideas

  • CDR-21605: Failed while processing Module Component % in function c

    I'm generating a form with designer 6i (status 6.5.69.1.0 configuration 4.012). My form is a tabular form, every tab has the subcomponents that refer to previous tab. When I create the last subcomponent, exactly the 5th, and I generate, designer give

  • Printer issue - could not print multiple copies

    Hello Gurus, Good day! We not able to print multiple copies (2 or more) in SAP level but we were able to print multiples copies using non SAP applications (i.e word, excel). I already checked in UNIX level and I dont see any stuck spools. Can you ple