DUMP GETWA_NOT_ASSIGNED by ASSIGN FS dynamically

I got a DUMP  GETWA_NOT_ASSIGNED, which is triggered by the ASSIGN statement. I once raised this problem. The code is as:
data: name3(21) value '(SAPLMBWL)IMSEG-ABLAD'.
assign (name3) to <f>.
here, IMSEG seems to be a interface of some FM. At last time, I was suggested to transfer the name3 to upper case. It works. But in some condition, it will also raise a DUMP. So I am thinking about there should be some other problem.
In the DUMP text, I found this in ERROR analysis:
You address a global function interface, although the
respective function module is not active - that is, is
not in the list of active calls. The list of active calls
can be taken from this short dump.
I checked the loaded program in debug mode, the program SAPLMBWL is not in the loaded list. But the program can run 2 times for the ASSIGN statement, At the first time, it works fine without any problem. But at the 2nd time, it raise the DUMP.
I think it has sth to do with the memory or objects in runtime. Is there any way to check (SAPLMBWL)IMSEG-ABLAD before the ASSIGN statement?
How to check the active calls list mentioned in the ERROR analysis and what can be done for it? Any check?
thanks for help.

I had a similar problem and the SYSTEM_CALLSTACK fm seems to work perfectly.  The "TRY ... CATCH ... ENDTRY or CATCH SYSTEM-EXCEPTIONS " option dosen't seem to work because GETWA_NOT_ASSIGNED doesn't seem to be a catchable runtime error.
Here is the code:
    IF komk-vbtyp = 'M'.
      IF ( preisfindungsart = 'A' OR preisfindungsart = 'C' ) AND (
         komk-kappl EQ 'V').
        CALL FUNCTION 'SYSTEM_CALLSTACK'
         IMPORTING
           CALLSTACK          = lt_callstack
           ET_CALLSTACK       = lt_sys_callstack.
        loop at lt_callstack assigning <ls_sys_callstack>
                             where MAINPROGRAM = 'SAPLV60A'
                               and BLOCKTYPE   = 'FUNCTION'.
          "See if this function calls the XVBFS global parameter and field-symbol
          select single * from FUPARAREF into ls_FUPARAREF
                                         where FUNCNAME  = <ls_sys_callstack>-BLOCKNAME
                                           and R3STATE   = 'A'      "Active
                                           and PARAMETER = 'XVBFS'  "Global parameter / field symbol
                                           and PARAMTYPE = 'T'.     "Table
          if sy-subrc = 0.
            lv_can_add_to_log = abap_true.
            exit.
          endif.
        endloop.
        if lv_can_add_to_log = abap_true.
          PERFORM vbfs_hinzufuegen_allg(saplv60a) USING
                komk-belnr komp-kposn 'ZVSD' 'E' '002'
                lo_rfc_result-tran_id sy-datum sy-uzeit space .
          komp-prsok = space.
        ELSE.
          MESSAGE ID 'ZVSD' TYPE 'E' NUMBER '002' WITH
          lo_rfc_result-tran_id  sy-datum sy-uzeit.
        endif.
      endif.
    endif.
Edited by: Jake Taber on Apr 24, 2011 4:34 AM
Edited by: Jake Taber on Apr 24, 2011 4:35 AM

Similar Messages

  • Dump GETWA_NOT_ASSIGNED while assigning value to a field symbol

    LOOP AT <table> INTO <struct>.
        CLEAR l_uom.
        lf_fieldname = '<struct>-UOM'.
        ASSIGN (lf_fieldname) TO <uom>.
        l_uom  = <uom> .
    ENDLOOP.

    I need to put the contents of lf_fieldname into <uom>.......when lf_fieldname is <struct>-UOM.....
    so
    assign lf_fieldname to <uom> is of no use...........and hence v use
    assign (lf_fieldname) to <uom>
    my problem is since i dont knw till the run time if UOM field is present in the table or not, and whn it's not, no mem_area is referenced in the bkgrnd and hence i get an error...........i need to knw if v have a provision to chk if (lf_fieldname) has ne value or not....
    Please help....:)
    Regards,
    Aparna.

  • OO ALV dump - GETWA_NOT_ASSIGNED

    Hello Friends,
    I have implemented OO ALV to display data. Two of the fields are WERKS and MATNR. These fields are input enabled. I have not coded any F4 routine, the standard search helps work. I have SAP GUI 720 installed on my laptop and the program runs just fine. But when I try to run it on another machine with GUI 710 the search help function does not work and I get the dump GETWA_NOT_ASSIGNED. I may be wrong but it seems like there is a problem with the GUI version. Where should I check?
    Thanks in advance,
    Ali

    Hi,
    This is a field catalog issue. check whether you populated field catalog correctly. check the field names and internal table field names and also  check the col_pos is correct or not. 
    ls_fieldcat-col_pos = '1'.
    u might be assigned the col_pos same for some fields,
    hope this helps u.,
    Thanks & Regards,
    Kiran

  • Dump GETWA_NOT_ASSIGNED in ALV OO

    Hi experts, i have a problem ... i created an ALV OO but when i wanna dowload the ALV's lines the program trigger a DUMP: GETWA_NOT_ASSIGNED in program SAPLKKBL ... i know that it's a clasic DUMP about ALV's ... please i need your help.
    Thanks.
    David Carballido

    Hi Uwe ... i created a structure and called to FM LVC_FIELDCATALOG_MERGE to create my fieldcat and the program trigger the same DUMP.
    Errores tiempo ejecucióGETWA_NOT_ASSIGNED
           ocurrido el     23.09.2008 a  17:10:54
    >> Dump breve ABAP no almacenado completamente (muy grande)
    Field symbol has not yet been assigned.
    ¿Qué ha sucedido?
    The current ABAP/4 program "SAPLKKBL " had to be terminated because
    one of the statements could not be executed.
    This is probably due to an error in the ABAP/4 program.
    ¿Qué puede hacer?
    Note the actions and input that caused the error.
    Inform your SAP system administrator.
    You can print out this message by choosing "Print". Transaction ST22
    allows you to display and manage termination messages, including keeping
    them beyond their normal deletion date.
    Análisis error
    You attempted to access an unassigned field symbol
    (data segment 1069).
    This error occurs:
    - if you address a typed field symbol before it has been set with
      ASSIGN or
    - if you address a field symbol that has been reset with UNASSIGN
      or pointed to a local field that no longer exists, or
    - if you address a field symbol that pointed to a line of an internal
      table that has now been deleted, or
    - if you address a global function interface partameter, even
      though the relevant function module is not active,
      i.e. it is not in the list of active calls. You can get the list
      of active calls from the this short dump.
    Notas para corregir errores
    If the error occurred in a non-modified SAP program, you may be
    able to find a solution in the SAP note system.
    If you have access to the note system yourself, use the following
    search criteria:
    "GETWA_NOT_ASSIGNED"
    "SAPLKKBL " or "LKKBLF99 "
    "GEN_FIELD_OUT2"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    Usuario, transacción....
    Client.............. 200
    User................ "BCDCARBALLID"
    Language key........ "S"
    Transaction......... "SEU_INT "
    Program............. "SAPLKKBL "
    Screen.............. "SAPLKKBL 0500"
    Screen line......... 3
    Info posición de cancelación
    The termination occurred in the ABAP/4 program "SAPLKKBL " in
    "GEN_FIELD_OUT2".
    The main program was "ZFI_RPT_PDB_005 ".
    The termination occurred in line 3824
    of the source code of program "LKKBLF99 " (when calling the editor 38240).
    Detalle código fuente
    037940   * Color settings                                             "K_COLCOLOR
    037950     if gs_out_flags-sum is initial.
    037960       if gs_fc-hotspot = 'X' and gs_out_flags-hotline is initial
    037970          and gt_stack-is_layout-no_hotspot is initial.
    037980         format hotspot on.
    037990       elseif gs_fc-hotspot = 'V'
    038000          and gs_out_flags-hotline is initial and not <field> is initial
    038010          and gt_stack-is_layout-no_hotspot is initial.
    038020         format hotspot on.
    038030       endif.
    038040       if gs_fc-input = 'X' and
    038050          gt_stack-is_layout-no_input is initial and
    038060          gs_fc-checkbox is initial.
    038070         format input on.
    038080         format intensified off.
    038090       endif.
    038100       if not gs_fc-emphasize is initial and gs_out-info is initial.
    038110         perform field_color_normal using gs_fc
    038120   *                                      gt_stack-is_layout
    038130                                          gs_out-info.
    038140       endif.
    038150
    038160   *   complex logic with internal table for color description
    038170       if gs_out_flags-mcoltab = 'X' and gs_out_flags-slave ne 'X' and
    038180          gs_out_flags-sum ne 'X'.
    038190
    038200         perform field_color_complex using <coltab>
    038210                                           gs_fc
    038220                                           gs_out_flags-inverse.
    038230       elseif gs_out_flags-scoltab = 'X' and gs_out_flags-slave = 'X' and
    ----->          gs_out_flags-sum ne 'X'.
    038250
    038260   *     perform field_color_complex using <coltab>   " DEL FGS_COLOR
    038270         perform field_color_complex using <coltab_slave> " INS FGS_COLOR
    038280                                           gs_fc
    038290                                           gs_out_flags-inverse.
    038300       endif.
    038310     endif.
    038320
    038330   *--- Prüfung Ausgabelänge
    038340     clear gs_out-hlplen.
    038350   * Edit-Mask
    038360     if gs_fc-tech_form = 7.
    038370       write <field> to gs_out-hlpchar
    038380              using edit mask gs_fc-edit_mask.
    038390       gs_out-hlplen = strlen( gs_out-hlpchar ).
    038400   * Bei NUMC führende '0' und ' ' nicht berücksichtigen
    038410     elseif gs_fc-tech_form = 6.
    038420       write <field> to gs_out-hlpchar no-zero left-justified.
    038430       if gs_fc-just = 'R'.

  • How to assign a dynamic value to the value property of a button ?

    Hi Folks,
    I have a need, can i know how to assign a dynamic value to the value property of a button. Scenario is like follows...
    This is a struts based web application
    1. I have a file which consists of login user details (user name and his previlages) for a web application.
    2. I got those user details, into a List.
    3. When a user logged into the web app, in the home page there are few buttons. The type and number of buttons shown depends on the type of user/ user. (Buttons have different combination and the number of buttons available are not constant, they will vary from user to user).
    4. for each button, there will be a different action. I can pass the value of a button to an action class, but here button must have a dynamic value.
    Here is my test code:
    <%
    if (List != null)
    for (int i = 0; i <List.length; i++)
    %>
    <html:submit property="rduname" value= "<%=List%>" onclick="return submitRdu('<%=List[i] %>');"/>
    <%
    %>
    But my problem is how to assign a dynamic value to the value property of the button ( i know 'value= "<%=List[i]%>" ' will not work, just wanted show you guys).
    Thanks in advance,
    UV
    Edited by: UV_Dev on Oct 9, 2008 2:15 PM

    Let me try i know am not good at JSP but do we need double quotes here
    value= <%=List%>i think JSTL should help you about the dynamic thing                                                                                                                                                                                                                                                                                                                       

  • How to generate a PDF 417 Barcode by assigning a dynamic value at runtime?

    PDF 417 Barcode Description given in the Livecycle Designer 8.2
    : PDF 417 Non-Scriptable Barcode. Value must be assigned to this barcode at design time, and this barcode will not update after form object value changes.
    And my question is how to generate a PDF 417 Barcode by assigning a dynamic value at runtime?

    All the information you described points to the problem that reports seems can't generate to a file which already exist. You can verify that by simply doing
    r30run32 C:\AC_REPORT.REP DESTYPE = FILE DESFORMAT = PDF BATCH = YES' desname=c:\temp\ac_report.pdf
    several times. If first time the report is successfully generated in c:\temp\ac_report.pdf, but not the second, third time, then it looks like there is a bug on reports r30run32 executable.
    You may try to find any latest patch for Reports 3.0 to see if patch can solve you problem. But keep in mind Reports 3.0 is de-supported, you are better to move to 6i or 9i reports.
    Thanks,
    -Shaun

  • Can I catch the error instead of the DUMP GETWA_NOT_ASSIGNED ???

    Hi:
    I have the following code:
      FIELD-SYMBOLS:  . is executed i got a dump GETWA_NOT_ASSIGNED.
    Can I catch the error instead of the dump ?
    Thank you
    Silvia

    see the following example to avoid DUMP
    PARAMETERS: p_file LIKE rlgrap-filename .
    DATA: v_file TYPE string.
    DATA: BEGIN OF itab OCCURS 0,
          name(23) TYPE  c,
          END OF itab.
    DATA: errormessage TYPE char50.
    v_file = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename            = v_file
        filetype            = 'ASC'
        has_field_separator = ' '
      TABLES
        data_tab            = itab.
    RECEIVE RESULTS FROM FUNCTION 'GUI_UPLOAD'
    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 .
    break developer.
    CASE sy-subrc.
      WHEN 0.
        errormessage     = 'Data Loaded'.
      WHEN 1.
        errormessage     = 'FILE_OPEN_ERROR'.
      WHEN 2.
        errormessage     = 'FILE_READ_ERROR'.
      WHEN 3.
        errormessage     = 'NO_BATCH'.
      WHEN 4.
        errormessage     = 'GUI_REFUSE_FILETRANSFER'.
      WHEN 5.
        errormessage     = 'INVALID_TYPE'.
      WHEN 6.
        errormessage     = 'NO_AUTHORITY'.
      WHEN 7.
        errormessage     = 'UNKNOWN_ERROR'.
      WHEN 8.
        errormessage     = 'BAD_DATA_FORMAT'.
      WHEN 9.
        errormessage     = 'HEADER_NOT_ALLOWED'.
      WHEN 10.
        errormessage     = 'SEPARATOR_NOT_ALLOWED'.
      WHEN 11.
        errormessage     = 'HEADER_TOO_LONG'.
      WHEN 12.
        errormessage     = 'UNKNOWN_DP_ERROR'.
      WHEN 13.
        errormessage     = 'ACCESS_DENIED'.
      WHEN 14.
        errormessage     = 'DP_OUT_OF_MEMORY'.
      WHEN 15.
        errormessage     = 'DISK_FULL'.
      WHEN 16.
        errormessage     = 'DP_TIMEOUT'.
      WHEN 17.
        errormessage     = 'OTHERS'.
    ENDCASE.
    MESSAGE e000(00) WITH errormessage .

  • ECCS Flexible upload dump GETWA_NOT_ASSIGNED

    Hi gurus!
    I'm trying to upload some financial statements for the ECCS module using transaction CXCD (Data monitor). When i double clic the company to upload the data, using the corresponding method, it returns a dump with a GETWA_NOT_ASSIGNED message in program FICUPL90.
    In QAS enviroment it works, but in the sandbox enviroment (which is a copy of the QAS).
    Does any body know what can i do?

    HI
    Your issue is relates to below dump
    "GETWA_NOT_ASSIGNED" " "  "FICUPL90" bzw. "FICUPL_LCL_UPLOAD"  "RUN"
    then refer the below note.
    909439
    Regards
    Madhu M

  • APD: dump GETWA_NOT_ASSIGNED

    When I try to display the data of a query as a source in the Analysis Process Designer (APD) in RSANWB, the dump GETWA_NOT_ASSIGNED occurs in the method CL_RSCRMBW_BAPI=>GET_KYF_DETAILS_BAPI as an error. Could anybody help me? Please give me your thoughts about it.

    Hi Tatsiana,
    You should check if the note 1408037 would solve the problem.
    Best Regards,
    Vincent

  • Getting Dump   GETWA_NOT_ASSIGNED, In ALV

    Hi Experts,
    Once ALV report is generated then when I am downloaing to xls, I am getting dump
    GETWA_NOT_ASSIGNED.
    Please advice.
    Regards,
    IFF

    Possibly the field catalog and output table is not synch.
    Try to create the field catalog automatically (LVC_FIELDCATALOG_MERGE). and not by mannual ( hardcoded)
    If you mentioned any coloring in alv , for testing purpose (just comment the coloring part) and try

  • Dump :GETWA_NOT_ASSIGNED, while using  fm REUSE_ALV_GRID_DISPLAY

    Hi Experts,
    In the report I am using LDB pnp and outputting results with ALV,
    I am using the FM REUSE_ALV_GRID_DISPLAY,
    And I am getting the dump GETWA_NOT_ASSIGNED.
    The dump I am getting when the FM is executed.
    Thanks in Advance.
    Regards,
    IFF

    Hi,
    i faced the same problem some days ago.
    jst cleck your fieldcat.
    check fields names passed to fieldcat and should be in '  ' and in capital.
    This shd solve your problem
    Thanks & regards

  • Dump "GETWA_NOT_ASSIGNED" while implementing Remodeling

    Hello Everyone,
    i am trying to add an infoobject 0calweek with constant value using remodeling. while implementing this scenario i encountered with a short dump "GETWA_NOT_ASSIGNED" could anybody suggest any fix to this issue.
    Thanks and Regards,
    Ajay.D

    thanks

  • Dump GETWA_NOT_ASSIGNED with REUSE_ALV_GRID_DISPLAY

    Hi All,
    Today I observed that REUSE_ALV_GRID_DISPLAY gives dump GETWA_NOT_ASSIGNED if we pass a blank table for output. These days I am working with ECC6. Earlier when I use to work with ECC5 such thing never happened and ALV get displayed without any row.
    Does anyone know is that correct that in ECC6 blank table in REUSE_ALV_GRID_DISPLAY gives dump. If so, any reason why in ECC6 and not in ECC5?
    Regards,
    Bhaskar

    Hi Bhaskar Tripathi ,
    I have an example that works in ECC 6 if you want you can compare it with your code.
    types: slis_formname(30) type c.
    data: i_repid type sy-repid,
          I_CALLBACK_PF_STATUS_SET type slis_formname,
          I_CALLBACK_USER_COMMAND type slis_formname,
          I_CALLBACK_TOP_OF_PAGE type slis_formname,
          lt_fieldcat  TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          lt_sort      TYPE  slis_sortinfo_alv OCCURS 1,
          gt_events    TYPE  slis_t_event WITH HEADER LINE,
          lt_out "your table with information",
          ls_layout   TYPE  slis_layout_alv.
      ls_layout-no_input          = 'X'.
      ls_layout-colwidth_optimize = 'X'.
      ls_layout-totals_text       = 'Totals'(201).
      ls_layout-info_fieldname =      'LINE_COLOR'.
    ls_fieldcat-fieldname   = 'MANDT'.
    ls_fieldcat-seltext_m   = 'Mandante'.
    ls_fieldcat-col_pos     = 0.
    ls_fieldcatj-outputlen   = 10.
    ls_fieldcat-emphasize   = 'X'.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR  ls_fieldcat.
    ls_fieldcat-fieldname    = 'PSPID'.
    ls_fieldcat-seltext_m    = 'Def. de Proyecto'.
    ls_fieldcat-col_pos     = 1.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR  ls_fieldcat.
    ls_fieldcat-fieldname    = 'POST1'.
    ls_fieldcat-seltext_m    = 'Descrip. breve'.
    ls_fieldcat-col_pos      = 2.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR  ls_fieldcat.
    ls_fieldcat-fieldname  = 'OBJNR'.
    ls_fieldcat-seltext_m    = 'Número de objeto'.
    ls_fieldcat-col_pos      = 3.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR  ls_fieldcat.
    **Event
    DATA: ls_event  TYPE  slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type = 0
        IMPORTING
          et_events   = gt_events[].
    *                  EXCEPTIONS
    *                    LIST_TYPE_WRONG       = 1
    *                    OTHERS                = 2
      READ TABLE gt_events WITH KEY name =  slis_ev_end_of_list
      INTO ls_event.
      IF sy-subrc = 0.
        MOVE 'END_OF_PAGE' TO ls_event-form.
        APPEND ls_event TO gt_events.
      ENDIF.
      READ TABLE gt_events WITH KEY name =  slis_ev_end_of_list
      INTO ls_event.
      IF sy-subrc = 0.
        MOVE 'END_OF_LIST' TO ls_event-form.
        APPEND ls_event TO gt_events.
      ENDIF.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program                = i_repid
         i_callback_pf_status_set          = i_callback_pf_status_set
         i_callback_user_command           = i_callback_user_command
         i_grid_title                      = i_title
         is_layout                         = lt_layout
         it_fieldcat                       = lt_fieldcat
         it_sort                           = lt_sort
    *    IS_VARIANT                        =
         it_events                         = lt_events
       TABLES
         t_outtab                          = lt_out
       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.
    Best regards.

  • Assigning values dynamically to drop down

    Hi,
    I have drop down for which i have to assign values dynamically, I am getting values as a form of Array list.

    Hi Venki,
    Say your ArrayList is al . Create a value attribute under the root node. Say test. Bind this test to the DropdownByKey UI element. You can populate test attribute like this.
    IWDAttributeInfo attributeInfo =
    wdContext.getNodeInfo().getAttribute(IPrivate<viewname>View.IContextElement.TEST);
    ISimpleTypeModifiable valuesType =
    attributeInfo.getModifiableSimpleType();
    IModifiableSimpleValueSet VS=
    valuesType.getSVServices().getModifiableSimpleValueSet();
           for (int i = 0; i < al.size(); i++) {
              VS.put(al.get(i),""+al.get(i));
    Regards
    Siva

  • Short dump  GETWA_NOT_ASSIGNED field symbol not been assigned

    Hi Gurus,
    I am calling a RFC  BAPI_PBSRVAPS_CHANGEKEYFIGVAL2 from R/3 sytem to SCM 5.0.
    Acutally this FM BAPI_PBSRVAPS_CHANGEKEYFIGVAL2 not available in R/3 system.
    So i am using scm destination and calling above FM directly from R/3 but i am getting the short dump
    in SCM system as GETWA_NOT_ASSIGNED field symbol not been assigned.
    Can you pls check and advise.
    Best Regards,
    Radhakrishna.

    Hi Radhakrishna,
            It looks like you have a discrepancy in the planning area with respect to keyfigure. Some thing like the key figure description is not synchronized between live cache and db.
    I suggest you log onto your SCM system, run the program /SAPAPO/TS_LCM_CONS_CHECK on your planning area with correct error option.
    Please let me know if this works.

Maybe you are looking for

  • Why does my Apple TV keep disappearing from Itunes?

    Now this is frustrating. Recently, after months with no problem, my Apple TV is not appearing in my list of devices in itunes. I have switched it off, restarted the Mac etc. Then I reset the Apple TV, hey presto, it was back, until I reloaded the lat

  • I have just purchased Adobe PDF Now and concerned it will not work on my Mac

    Does ADOBE PDF Now work on a Mac

  • Submitting forms for editing

    I am new to boards but giving this a try. I am a physical therapist. I want to make a hand written form into an electronic form. then I want to send that form to an agency where they will review the medical content possibly editing it then returning

  • Date Field in Adobe Acrobat X

    I have a form that users fill in. One of the fields on this form is a date. Through the properties I have set the date format of dd/mm/yyyy. What I was hoping to be able to do next is, get it to auto populate. So when the field onFocus it executes so

  • When I import music, iTunes 8 creates duplicates in library

    When I drag and drop music from a folder into iTunes 8, itunes will create a duplicate for every song. I tried unchecking "Copy Files To iTunes Music Folder..." in Preferences>Advanced. It still does it. Help please.