ABAP Function to read long texts in HR Infotypes

Is there any standard ABAP function to read long texts in HR infotypes like ABAP function to read comments entered in infotype 19

HI ,
try this code
tables pcl1.
include rpc1tx00.  " This include is explained on web page above
start-of-selection. 
perform fill_key.  perform get_data.end-of-selection.
form fill_key. 
  tx-key-pernr = p_pernr.
  tx-key-infty = p_infty.
  tx-key-subty = p_subty.
  tx-key-objps = p_objps. 
  tx-key-sprps = p_sprps.
  tx-key-endda = p_endda. 
tx-key-begda = p_begda.
tx-key-seqnr = p_seqnr.
"OR
  SELECT * INTO CORRESPONDING FIELDS OF wa_p0219
   FROM pa0219
   WHERE pernr = p_pernr
     AND subty =  p_subtyp
     AND endda = '99991231'.
  ENDSELECT.
MOVE-CORRESPONDING gs_p0219 TO tx-key.
    MOVE '0219' TO tx-key-infty.
     IF wa_p0219-itxex = 'X'.
       MOVE-CORRESPONDING wa_p0219 TO tx-key.
     endif.
endif
endform.                    " fill_key
form get_data. 
      import ptext from database pcl1(tx) id tx-key.
       loop at ptext.            "ptext is defined in above include  
               write: / ptext-line. 
      endloop.
endform.  " get_data
Prabhudas

Similar Messages

  • How to read long text in Document line item

    Hi,
    How to read long text in FI Document line item.

    Use Read_text function module.
    you need to pass
    ID
    LANGUAGE
    NAME
    OBJECT   to the function moduel
    To find the Text id name language and object these are the following steps. Example: FB02
    1. goto FB02, Enter Document number
    2. from menuselect Goto>Header-->header Text..... New window will be displayed 
    3. select the Header Text. here you can see all the text. 
    4. click on the TEXT (which you want to know the Text id) , then press log ICON (you can find in bottom right of the text window) it looks like a rolled paper. 
    5. in the Next window you will find Text Name. Text ID, Language. etc...
    Regards,
    Lalit Mohan Gupta.

  • Reading long text for more records at a time

    Hi all,
    We have a requirement for which that data like textid textname textobject  and language  must  be taken in to an internal table and for each record in the internal table i  have to read the long text inorder to compare the long text for the given search text.
    If i use Read_text inside the loop and endloop it works but it may not be appropriate in performance point of view.
    Is there any function module which can read long texts for more records at a time.
    The long text data in STXL will be in raw data format right? is there any way to convert raw data to normal so that by hitting the STXL i can read the long text data for more than one record at a time.
    Thanks in advance
    sanju.

    HI Sanju,
    Below is a code snippet which describes reading a long text frm the screen and appending it into the internal table.This code is actually to read the text from the screen and inserting a record into STXl and STXH.
    From your query what i understood is that you are storing the long text from the screen into a internal table and so you not want to use the read_text FM due to performance issue.
    Since tdline(tline table) is 132 char long format i use this small logic to read the screen data and append it to my internal table.
    *Data Declarations
      DATA: lv_strlen TYPE i,
            lv_create TYPE boolean,
            lv_desc TYPE string.
      DATA: ls_text TYPE tline,
            ls_basic_text TYPE stxh.
      DATA: lt_text TYPE ztty_tline_tab.
      CONSTANTS:
       lc_tdid TYPE  thead-tdid VALUE 'Z001',
       lc_tdobject TYPE thead-tdobject VALUE 'Z_ALERTS'.
    *Appending the text to the internal table.
      lv_strlen = STRLEN( iv_alert_text-alert_text ).
      lv_desc = iv_alert_text-alert_text.
      IF lv_strlen < 132.
        ls_text-tdformat = '*'.
        ls_text-tdline = lv_desc.
        APPEND ls_text TO lt_text.
      ELSE.
    *logic to wrap text
        DO.
          ls_text-tdformat = '*'.
          IF STRLEN( lv_desc ) < 132.
            ls_text-tdformat = '*'.
            ls_text-tdline = lv_desc.
            APPEND ls_text TO lt_text.
            EXIT.
          ENDIF.
          IF lv_desc+132(1) <> ' '.
            CONCATENATE lv_desc(131) '-' INTO ls_text-tdline.
            lv_desc = lv_desc+131.
          ELSE.
            ls_text-tdformat = '*'.
            ls_text-tdline = lv_desc(132).
            lv_desc = lv_desc+132.
          ENDIF.
          APPEND ls_text TO lt_text.
        ENDDO.
      ENDIF.
    Please award graciously if found helpful.Please do ask me if i have not answered you properly.
    Thank you.
    Message was edited by:
            P M Harish

  • Reading long text from excel file to an internal table

    Hi
    Can any body tell me how to read long text from excel file to an internal table.
    When i am using this FM KCD_EXCEL_OLE_TO_INT_CONVERT then it is reading only 32 characters from each cell.
    But in my excel sheet in one of the cell has very long text which i need to upload into a internal table.
    may i know which FM or what logic i need to use for this problem.
    Regards

    Hi,
    Here is an example program.  It will upload an Excel file with two columns.  You could also assign the Excel structure dynamically, but I wanted to keep the example simple.  The main point is that the internal table (it_excel in this example) must match the Excel structure that you want to convert.
    Remember, this is just an example to help you figure out how to properly use the technique.  It will certainly need to be modified to fit your requirements, and as always there may be a better way to get the Excel converted... this is just one possibility that has worked for me in the past.
    *& Report  zexcel_upload_test                            *
    REPORT  zexcel_upload_test.
    TYPE-POOLS: truxs.
    TYPES: BEGIN OF ty_excel,
             col_a(10) TYPE n,
             col_b(35) TYPE c,
           END OF ty_excel.
    DATA: l_data_tab         TYPE TABLE OF string,
          l_text_data        TYPE truxs_t_text_data,
          l_gui_filename     TYPE string,
          it_excel           TYPE TABLE OF ty_excel.
    FIELD-SYMBOLS: <wa_excel>  TYPE ty_excel.
    PARAMETERS: p_file TYPE rlgrap-filename.
    * Pass the file name in the correct format
    l_gui_filename = p_file.
    * Upload data from PC
    CALL METHOD cl_gui_frontend_services=>gui_upload
      EXPORTING
        filename                = l_gui_filename
        filetype                = 'ASC'
        has_field_separator     = 'X'
      CHANGING
        data_tab                = l_data_tab
      EXCEPTIONS
        file_open_error         = 1
        file_read_error         = 2
        no_batch                = 3
        gui_refuse_filetransfer = 4
        invalid_type            = 5
        no_authority            = 6
        unknown_error           = 7
        bad_data_format         = 8
        header_not_allowed      = 9
        separator_not_allowed   = 10
        header_too_long         = 11
        unknown_dp_error        = 12
        access_denied           = 13
        dp_out_of_memory        = 14
        disk_full               = 15
        dp_timeout              = 16
        OTHERS                  = 17.
    IF sy-subrc <> 0.
    *   MESSAGE ...
      EXIT.
    ENDIF.
    * Convert from Excel into the appropriate itab
    l_text_data[] = l_data_tab[].
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
      EXPORTING
        i_field_seperator    = 'X'
        i_tab_raw_data       = l_text_data
        i_filename           = p_file
      TABLES
        i_tab_converted_data = it_excel
      EXCEPTIONS
        conversion_failed    = 1
        OTHERS               = 2.
    IF sy-subrc <> 0.
    *   MESSAGE ...
      EXIT.
    ENDIF.
    LOOP AT it_excel ASSIGNING <wa_excel>.
    *  Do something here...
    ENDLOOP.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      PERFORM filename_get CHANGING p_file.
    *       FORM filename_get                                             *
    FORM filename_get CHANGING p_in_file TYPE rlgrap-filename.
      DATA: l_in_file  TYPE string,
            l_filetab  TYPE filetable,
            wa_filetab TYPE LINE OF filetable,
            l_rc       TYPE i,
            l_action   TYPE i,
            l_init_dir TYPE string.
    * Set the initial directory to whatever you want it to be
      l_init_dir = 'C:\'.
    * Call the file open dialog without multiselect
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title            = 'Load file'
          default_extension       = '.XLS'
          default_filename        = l_in_file
          initial_directory       = l_init_dir
          multiselection          = 'X'
        CHANGING
          file_table              = l_filetab
          rc                      = l_rc
          user_action             = l_action
        EXCEPTIONS
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          OTHERS                  = 4.
      IF sy-subrc <> 0.
        REFRESH l_filetab.
      ENDIF.
    * Read the selected filename
      READ TABLE l_filetab INTO wa_filetab INDEX 1.
      IF sy-subrc = 0.
        p_in_file = wa_filetab-filename.
      ENDIF.
    ENDFORM.                    " filename_get
    Regards,
    Jamie

  • Not able to read long text in MCI10001

    Hi gurus,
    I am using MCI10001 for IW21 tcode where I have to read long texts of maintenance line items under Maintenance Tasks tab.
    Long text is not getting created for line items at this exit. Please suggest me if any exits/BADIs available where I can read the same.
    Thanks in advance.
    Anees

    Hello,
    You need to set FM ‘SAVE_TEXT’.or  'CREATE_TEXT'
    tdformat = '>X'  <-- this format you can not set directly in editor
    CONCATENATE '*' tdline
             INTO tdline
             SEPARATED BY space.
    this will make text to be non editable.
    Thank you...

  • Definition of a "NOT RELEVANT GRANT" is missing. Read long text

    Dear All,
    Kindly suggest me how to post migo.
    During MIGO system throwing an error:
    Definition of a "NOT RELEVANT GRANT" is missing. Read long text
    Message no. GRANTMGMT408
    Regards
    Sanjeet

    Hi Sanjeet,
    It looks like your FI team has done config regarding Grands management and Funds Management.
    Plz consult with them...
    Check the SAP-Help for any doubts.
    SAP Library - Grants Management
    Plz check with transaction - "GMGRANTD" , if anything available.

  • Getting a runtime error in reading long text from production order

    Hi all,
    I am trying to read production order long text and the code is not showing any syntax error but if i execute it i am getting a runtime error as "Text object aufk is not available".
    But i did check for the text object , text id enties in TTXOB and TTXID tables. Also i am able to see the relevant text in tables STXH and STXL, dont know why i am getting this runtime error and unable to debug.
    I tried a lot searching in forums, but they all ask me to write the code in the way i did, so dont know what is the problem.
    Data Declarations
    data: xaufk  type aufk.
    data: l_name type thead-tdname.
    data: ilines type table of tline with header line.
    Parameters
    parameters: p_aufnr type aufk-aufnr.
    concatenate sy-mandt p_aufnr into l_name.
    condense l_name no-gaps.
              CALL FUNCTION 'READ_TEXT'
                EXPORTING
                 CLIENT                         = SY-MANDT
                  ID                                =  'kopf'
                  LANGUAGE                 =  sy-langu
                  NAME                          = l_name
                  OBJECT                       = 'aufk'
                TABLES
                  LINES                         =  ilines
              write : ilines.
    Regards
    Jessica

    Hey Vijay,
    Thanks for you reply, It worked, i am not getting the runtime error, but also not getting the output.
    am i missing anywrite statements?
    Please check the code and suggest changes if required. i want to see the long text in the production order in the output. should i say write: ilines.?
    Data Declarations
    data: xaufk  type aufk.
    data: l_name type thead-tdname.
    data: ilines type table of tline with header line.
    Parameters
    parameters: p_aufnr type aufk-aufnr.
    concatenate sy-mandt p_aufnr into l_name.
    condense l_name no-gaps.
              CALL FUNCTION 'READ_TEXT'
                EXPORTING
                 CLIENT                         = SY-MANDT
                  ID                            = 'KOPF'
                  LANGUAGE                      =  sy-langu
                  NAME                          = l_name
                  OBJECT                        = 'AUFK'
                TABLES
                  LINES                         =  ilines
                 write : ilines.
    Regards,
    Jessica.

  • Function to retrieve long text in FI document for payment file

    Hi
    Is there a function i could use to retrieve the long text in the invoice document for the payment reference field in the payment file?
    Would appreciate your urgetn advice.
    Thanks.

    Possiblity could be that you have passed the wrong object name id or any parameters.
    See below the similar code.
    If you want to know the correct tdobject and correct tdname combinations go to table STXH and under name give the document number ie 1900000000 ie docno then you will come to know the correct tdname and object and tdid from which you can use the read_text function module
    DATA : tdobject TYPE thead-tdobject,
               tdname   TYPE thead-tdname,
               tdid     TYPE thead-tdid,
               tdspras  TYPE thead-tdspras.
      DATA : lines    TYPE STANDARD TABLE OF tline INITIAL SIZE 0,
             wa_lines TYPE tline.
    CONCATENATE bkpf-bukrs bkpf-belnr bkpf-gjahr INTO tdname.
      tdobject = 'BELEG'.
      tdid     = '0005'.
      tdspras  = sy-langu.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
    *     CLIENT                        = SY-MANDT
          id                            = tdid
          language                      = tdspras
          name                          = tdname
          object                        = tdobject
    *     ARCHIVE_HANDLE                = 0
    *     LOCAL_CAT                     = ' '
    *   IMPORTING
    *     HEADER                        =
        TABLES
          lines                         = lines
        EXCEPTIONS
          id                            = 1
          language                      = 2
          name                          = 3
          not_found                     = 4
          object                        = 5
          reference_check               = 6
          wrong_access_to_archive       = 7
          OTHERS                        = 8.
       IF sy-subrc <> 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ELSE.
         READ TABLE lines INTO wa_lines INDEX 1.
         IF sy-subrc = 0.
           write at 51(10) wa_lines-tdline.
         ENDIF.
       ENDIF.
    Regards
    Gopi

  • Reading Long Texts in BW

    Hi,
    I would like to dump the contents of R/3 in a table in BW. One of the fields in this proposed BW table is going to be of more than 1500 characters length. I cannot use ODS because we can only include InfoObjects of maximum 60 Chars in lenght. Other than Eugene's blog, I could not find much in the forum. It might take lot of effort for more than 1500 characters
    My proposal:
    1) Create a Function Module (may be an RFC enabled Function module) within BW that will connect to R/3 and pull the data. And then dump it into the table.
    <b>Is it correct? If so, how do we do it?</b>
    <b>Are there any other possible ways?</b>

    Hi
    This is very simple. Write an ABAP code in R/3 using call function READ_TEXT which reads the standard text (SO10 - tcode) and return the values, then again call the GUI_DOWNLOAD function to download the text file to your local drive. You can also use the STXH table to get the parameters like TDNAME, OBJNM, ID, LANG etc. for the function module in your program
    Execute the program.
    Once you got the file in your local drive follow the procedure in the BW side
    Go to the specific InfoObject, in general tab check the box for "Char is document attribute" Save + Check + Activate the IO.
    Then write an ABAP program (copy the code from this link) in BW save & activate the program after editing according to your need.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8046aa90-0201-0010-5e99-962948c83331
    In this pdf document you can find a program in the last few pages and there would be two different codes, one for retreiving data from .pdf (pdf file) and another code for retreiving data from .DOC
    Go to RSA1 -> Documents -> Enter characteristic name
    then refresh the DOCUMENT page and double click on the characteristic. And now you can see the text file uploaded into BW and this can be used in the BEx report as well.
    Let me know if you still have any doubts or if you get stuck anywhere in the above mentioned procedure.
    PS - You dont want to change the length more than 60 chars in the maintenance of the infoobject even if it is possible.
    ~ Vaishnav

  • Reading Long Text from MM03

    I need to read a long text from MM03, view - Sales Text. I cannot use FM READ_TEXT as there is no header data available there.
    How do i do it?

    Amol,
    Sales Text CANNOT exist without the HEADER DATA.
    You have to use READ_TEXT with these paramters.
    Text Name       Material Number (NAME)
    Language        EN
    Text ID         0001 (ID)
    Text object     MVKE (OBJECT)
    regards,
    Ravi
    Note : Please close the thread if the issue is solved.
    Message was edited by: Ravikumar Allampallam

  • Read long text error

    Hello,
    I am facing following error while updating a decision tree in basic pay "determine default for pay scale data". The error said: unforeseable error while generating, please read the long text.  What do I do?
    Thanks

    Dear ,
    you are required to double click on this error msg and then may u get the detailed error msg. only then it can be concluded wht the issue is till then plz go through the following details(ensure yiu are maintaining correct return value for the feature TARIF:
    With this feature you control whether the default value is determined
    from T001P from the personnel area and personnel subarea, or whether the
    default value is determined directly from the feature.
    The return value must have the form xx/yy/z, in which xx is the pay
    scale type, yy the pay scale area, and z the planned remuneration type.
    If the feature returns SPACE as a value, then the value pay scale type
    or pay scale area is determined by table T001P. If the value does not
    equal SPACE, then this value will be taken as the pay scale type or pay
    scale area.
    You can either enter return both values or only one of the two values.
    The missing value is determined from table T001P.
    hope it will work.
    Rgds,
    priyanka

  • Reading Long Text -LT31 -- VA02

    Hi All,
    Acc to my requirements.I want to display the text at the header level in the sap script form.
    I used the following code, the script form is displaying the limited text only,it is because of ITCSY value holds only 255.But I want to display more text.what changed do I need to do.
    Please help me out.I greatly appreciate your help in this.
    FORM GET_PACK_TEXT TABLES TAB_IN STRUCTURE ITCSY
    TAB_OUT STRUCTURE ITCSY.
      DATA GV_NAME LIKE THEAD-TDNAME.
      DATA GV_VBELN LIKE VBAK-VBELN.
      DATA GV_VBELV LIKE VBFA-VBELV.
      DATA GV_ID LIKE THEAD-TDID.
      DATA GV_OBJECT LIKE THEAD-TDOBJECT.
      DATA GV_LEN TYPE I.
      GV_ID = 'ZH20'.
      GV_OBJECT = 'VBBK'.
      DATA I_LINE LIKE TLINE OCCURS 0 WITH HEADER LINE.
      READ TABLE TAB_IN WITH KEY 'LTAK-VBELN'.
      IF SY-SUBRC EQ 0.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = TAB_IN-VALUE
          IMPORTING
            OUTPUT = GV_VBELN.
        SELECT SINGLE VBELV FROM VBFA INTO GV_VBELV WHERE VBELN = GV_VBELN.
        GV_NAME = GV_VBELV.
        CALL FUNCTION 'READ_TEXT'
          EXPORTING
            ID                            = GV_ID
            LANGUAGE                      = SY-LANGU
            NAME                          = GV_NAME
            OBJECT                        = GV_OBJECT
          ARCHIVE_HANDLE                = 0
          LOCAL_CAT                     = ' '
        IMPORTING
          HEADER                        =
          TABLES
            LINES                         = I_LINE
         EXCEPTIONS
          ID                            = 1
          LANGUAGE                      = 2
          NAME                          = 3
           NOT_FOUND                     = 4
          OBJECT                        = 5
          REFERENCE_CHECK               = 6
          WRONG_ACCESS_TO_ARCHIVE       = 7
          OTHERS                        = 8
        IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      IF SY-SUBRC EQ 0.
        CLEAR TAB_OUT-VALUE.
        LOOP AT I_LINE.
          CONCATENATE TAB_OUT-VALUE I_LINE-TDLINE INTO TAB_OUT-VALUE
    SEPARATED BY SPACE.
          GV_LEN = STRLEN( TAB_OUT-VALUE ).
          IF GV_LEN > 355.
            CONDENSE TAB_OUT-VALUE.
            EXIT.
          ENDIF.
        ENDLOOP.
        MODIFY TAB_OUT TRANSPORTING VALUE WHERE NAME = 'PACK_TEXT'.
      ENDIF.
    ENDIF.
    ENDFORM.                    "GET_Pack_Text
    Thanks,
    Praveen

    Zarina,
    Thanks for your reply.
    I tried with that..but still getting the same output.
    I looped through ILINE the value is going to tab_out but the script form is not showing up the full text.
    Please send me the code to my ID [email protected]
    Thanks,
    Praveen

  • How to retrieve long text for a particular record

    Hi,
    I've been looking through some of the numerous posts relating to reading long texts but I can't seem to find out how to retrieve the necessary parameters for READ_TEXT for a particular record without using the GUI.
    Is there a way in ABAP that one could retrieve the parameters that are required to execute READ_TEXT just from one of the fields in the base table.  eg.  I would like to bring back a list of all materials with their associated long texts.  I can run a query on MARA for example and retrieve the necessary material information but I would like to know how I could get the necessary information, for each row in my results, to pass to READ_TEXT. 
    What information would I need to perform the above, if at all possible?
    Thanks in advance,
    Charles

    You can check out SE75.  Here is where the objects and ids are listed/maintained.  There is one trick to find the object/id.  That is,  create the text in the specific transaction.  If you are talking about header text for a sales orders, go to VA02 and enter some text and save.  Now go to SE16, enter STXH as the table name.  On the selection screen for STXH,  enter your user name for "created by" and enter the date.  Execute.  The record that you see is probably the text that you just created.  You can see the object, the id, and even how the name is built.  In this case,  it would be sales order number.
    Sometimes where you enter the text, there is a little "scroll" icon under the text editor, clicking that will tell you the object and id.  In some cases, this functionality is not there.
    Regards,
    Rich Heilman

  • Problem in downloading long text

    Hi Experts,
    I am facing problem  while downloading long text.
    previously it was working 5ne. now it is giving the error meaasge
    ID ST Language En not found
    is there any settings to do.
    Thanks & Regards
    Sangareddy

    In a SAPscript you do not need to use ABAP code to retrieve long text - Just use the INCLUDE command in SAPSCRIPT - see help for details
    /: INCLUDE name [OBJECT o] [ID i] [LANGUAGE l] [PARAGRAPH p]
    this puts the complete long text in and formats it for the window
    Long text problem in sap script
    Reward points..

  • Writing an excel into message long text of se91

    does somebody know where i can write via abap fm into message long text? and where those texts are stored?

    got problems with parameters:
    My Message class  in se91 is called "Z_MAL"
    Message Number "999"
    Name of short text: "TMP Long TEXT for MAL"
    Self explanaty not marked.
    The fm wants to have more informations?
    REPORT  z_tmp_write.
    DATA: ls_line TYPE tline.
    DATA: lt_line LIKE TABLE OF ls_line.
    BREAK-POINT.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
    *     CLIENT                        = SY-MANDT
          id                                 = '999'
          language                      = 'EN'
          name                           = 'Z_MAL'
          object                           = 'Z_MAL'
    *     ARCHIVE_HANDLE      = 0
    *     LOCAL_CAT                 = ' '
    *   IMPORTING
    *     HEADER                        =
        TABLES
          lines                         = lt_line
    *   EXCEPTIONS
    *     ID                            = 1
    *     LANGUAGE                      = 2
    *     NAME                          = 3
    *     NOT_FOUND                     = 4
    *     OBJECT                        = 5
    *     REFERENCE_CHECK               = 6
    *     WRONG_ACCESS_TO_ARCHIVE       = 7
    *     OTHERS                        = 8
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      BREAK-POINT.
    Code Formatted by: Alvaro Tejada Galindo on Jan 31, 2008 11:58 AM

Maybe you are looking for

  • Adobe Reader 8 crashes on my MacBook

    I cannot seem to get Reader 8 to run for more than 10 seconds before is shuts itselft down on my CoreDuo MacBook - no error messages. I've done fresh downloads, reinstalled it, deleted Reader Library files, rebooted, and launched it in every way poss

  • Airport Express/Modem incompatibility

    My Prestige 630-C Series ADSL USB Modem works perfectly for my DSL connection to my Powerbook G4 by way of the Ethernet Adaptor (EN2). Great. I purchased an Airport Express hooked it up to my stereo and configured it using the AirPort setup assistant

  • Left & Right Margin from Top to Bottom

    Friends, I want Left & Right Margin (Line)  from top to bottom even if there is a single item in the Repetitive area. Problem is that when there are less items there is always a gap between Repetitive Area/End of Report & Footer. Regards, Uday Shanka

  • Problem with Music Disappearing After Syncing

    This has happened the last two times I tried to charge my iPod Touch (4th ed): -I plug in the iPod, it automatically tries to sync the 1 or 2 songs I recently acquired.  -The Sync completes, and everything shows up as normal in iTunes (including ~8 M

  • A1 live wallpaper ics

    Hi, I can't make any live wallpaper work on my A1 under ICS.  I have tried many of them. I can set them but they don't load when I start my tablet again. Any solution ? Thank You