Editable field in ALV does not accept negative sign values

Hi guys,
We have an editable field in ALV but it does not accept negative sign,,, it is causing an error... We need to input a negative value in that editable field...
How to handle this?
Thanks!

Hi Mark,
  This topic has been just discussed at this thread:
Problem with OO ALV
Regards,
Chandra Sekhar

Similar Messages

  • Input field in Web Dynpro ALV does not have correct focus

    Hello Friends,
    Our client's SAP system is recently upgraded with ECC 6.0 SP 18.
    After that the focus in the editable field of Web Dynpro ALV does not working properly by down arrow navigation.
    The common scenario:
    The ALV has more than one rows and one column is editable...
    when user is selecting field of first row and making some entries...
    after that pressing down arrow it is going to next row and coloring the field like focusing...
    but the 'cursor' is not blinking so user can not make entry without clicking by mouse...
    this was working Ok before upgrade...
    Could you please anyone have a look and propose a suitable solution?
    Thanks
    Krish

    Hello,
    The problem was with Javascript....which play an important role in layout of web dynpro ALV...
    which resides in MIME repository -> SAP ->PUBLIC - >BC ->NW5 ->JS ->SAPURI_Ie6....
    We wrote to SAP for giving us the fix...
    after we got a new file from SAP the problem is solved...
    also we have to clear server cache through SMICM and client cache...
    Thanks.
    K.

  • Editable field in alv

    hiii
    when doing editable field in alv
    you set
    i_fieldcat-edit = C_X
    i_fieldcat-input = C_X
    P_selfield-refresh = C_X
    this is not working when i click on save the internal table is not keeping the change i have edit on the screen and the p_selfield value also has still the old value.
    but when i double click the p_selfield is keeping the editable value.  Please advise ??

    hi,
    Check out this sample program.The part for 'EDIT' is in Bold..
    report  zalv_color_display_edit.
    type-pools: slis.
    tables : zcust_master2.
    types : begin of wi_zcust_master2,
            zcustid like zcust_master2-zcustid,
            zcustname like zcust_master2-zcustname,
            zaddr like zcust_master2-zaddr,
            zcity like zcust_master2-zcity,
            zstate like zcust_master2-zstate,
            zcountry like zcust_master2-zcountry,
            zphone like zcust_master2-zphone,
            zemail like zcust_master2-zemail,
            zfax like zcust_master2-zfax,
            zstat like zcust_master2-zstat,
            field_style  type lvc_t_styl,
    end of wi_zcust_master2.
    data: it_wi_zcust_master2 type standard table of wi_zcust_master2
                                                     initial size 0,
          wa_zcust_master2 type wi_zcust_master2.
    data: fieldcatalog type slis_t_fieldcat_alv with header line.
    data: it_fieldcat type lvc_t_fcat,    
          wa_fieldcat type lvc_s_fcat,
          gd_tab_group type slis_t_sp_group_alv,
          gd_layout    type lvc_s_layo,     "slis_layout_alv,
          gd_repid     like sy-repid.
    start-of-selection.
      perform data_retrieval.
      perform set_specific_field_attributes.
      perform build_fieldcatalog.
      perform build_layout.
      perform display_alv_report.
    form build_fieldcatalog.
      wa_fieldcat-fieldname   = 'ZCUSTID'.
      wa_fieldcat-scrtext_m   = 'CUSTOMER ID'.
      wa_fieldcat-col_pos     = 0.
      wa_fieldcat-outputlen   = 10.
      append wa_fieldcat to it_fieldcat.
      clear  wa_fieldcat.
      wa_fieldcat-fieldname   = 'ZCUSTNAME'.
      wa_fieldcat-scrtext_m   = 'CUSTOMER NAME'.
      wa_fieldcat-col_pos     = 1.
      append wa_fieldcat to it_fieldcat.
      clear  wa_fieldcat.
      wa_fieldcat-fieldname   = 'ZADDR'.
      wa_fieldcat-scrtext_m   = 'ADDRESS'.
      wa_fieldcat-col_pos     = 2.
      append wa_fieldcat to it_fieldcat.
      clear  wa_fieldcat.
      wa_fieldcat-fieldname   = 'ZCITY'.
      wa_fieldcat-scrtext_m   = 'CITY'.
      wa_fieldcat-col_pos     = 3.
      append wa_fieldcat to it_fieldcat.
      clear  wa_fieldcat.
      wa_fieldcat-fieldname   = 'ZSTATE'.
      wa_fieldcat-scrtext_m   = 'STATE'.
      wa_fieldcat-col_pos     = 4.
      append wa_fieldcat to it_fieldcat.
      clear  wa_fieldcat.
      wa_fieldcat-fieldname   = 'ZCOUNTRY'.
      wa_fieldcat-scrtext_m   = 'COUNTRY'.
      wa_fieldcat-col_pos     = 5.
      append wa_fieldcat to it_fieldcat.
      clear  wa_fieldcat.
      wa_fieldcat-fieldname   = 'ZPHONE'.
      wa_fieldcat-scrtext_m   = 'PHONE NUMBER'.
      wa_fieldcat-col_pos     = 6.
    wa_fieldcat-edit        = 'X'. "sets whole column to be editable
      append wa_fieldcat to it_fieldcat.
      clear  wa_fieldcat.
      wa_fieldcat-fieldname   = 'ZEMAIL'.
      wa_fieldcat-scrtext_m   = 'EMAIL'.
      wa_fieldcat-edit        = 'X'. "sets whole column to be editable  wa_fieldcat-col_pos     = 7.
      wa_fieldcat-outputlen   = 15.
      wa_fieldcat-datatype     = 'CURR'.
      append wa_fieldcat to it_fieldcat.
      clear  wa_fieldcat.
      wa_fieldcat-fieldname   = 'ZFAX'.
      wa_fieldcat-scrtext_m   = 'FAX'.
      wa_fieldcat-col_pos     = 8.
      wa_fieldcat-edit        = 'X'. "sets whole column to be editable
      append wa_fieldcat to it_fieldcat.
      clear  wa_fieldcat.
      wa_fieldcat-fieldname   = 'ZSTAT'.
      wa_fieldcat-scrtext_m   = 'STATUS'.
      wa_fieldcat-col_pos     = 9.
      append wa_fieldcat to it_fieldcat.
      clear  wa_fieldcat.
    endform.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    form build_layout.
    Set layout field for field attributes(i.e. input/output)
      gd_layout-stylefname = 'FIELD_STYLE'.
      gd_layout-zebra             = 'X'.
    endform.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    form display_alv_report.
      gd_repid = sy-repid.
    call function 'REUSE_ALV_GRID_DISPLAY'
      call function 'REUSE_ALV_GRID_DISPLAY_LVC'
        exporting
          i_callback_program = gd_repid
          is_layout_lvc      = gd_layout
          it_fieldcat_lvc    = it_fieldcat
          i_save             = 'X'
        tables
          t_outtab           = it_wi_zcust_master2
        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_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          text
    -->  p1        text
    <--  p2        text
    form data_retrieval .
      data: ld_color(1) type c.
      select zcustid zcustname zaddr zcity zstate zcountry zphone zemail
    zfax zstat up to 10 rows from zcust_master2 into corresponding fields of
    table it_wi_zcust_master2.
    endform.                    "data_retrieval
    *&      Form  set_specific_field_attributes
          populate FIELD_STYLE table with specific field attributes
    form set_specific_field_attributes .
      data ls_stylerow type lvc_s_styl .
      data lt_styletab type lvc_t_styl .
    Populate style variable (FIELD_STYLE) with style properties
    The following code sets it to be disabled(display only) if 'ZFAX'
    is NOT INITIAL.
      loop at it_wi_zcust_master2 into  wa_zcust_master2.
        if  wa_zcust_master2-zfax is not initial.
          ls_stylerow-fieldname = 'ZFAX' .
          ls_stylerow-style = cl_gui_alv_grid=>mc_style_disabled.
                                          "set field to disabled
          append ls_stylerow  to  wa_zcust_master2-field_style.
          modify it_wi_zcust_master2  from  wa_zcust_master2.
        endif.
      endloop.
    endform.                    "set_specific_field_attributes
    Hope this helps you,
    Arunsri

  • HOW TO READ THE EDITABLE FIELD IN ALV

    CAN ANYONE HELP ME IN READING THE EDITABLE FIELD IN ALV.
    I AM DOING THE FOLLOWING.
    BUT STILL THE EDITABLE FIELD IN NOT READ.
    WHEN 'EXE' OR 'EXEC'.
      LOOP AT I_RB1 INTO L_WA_STRU.
      L_WA_STRU-LIFSK = L_WA_STRU-LIFSK1.
      MODIFY I_RB1 FROM L_WA_STRU.
      CLEAR L_WA_STRU.
      ENDLOOP.
    I_RB1 IS MY TABLE WHICH I PASSED IN TABLES OF REUSE_ALV_GRID_DISPLAY.LIFSK1 IS MY EDITABLE FIELD.
    AND LIFSK IS THE FIELD WHERE THE DATA SHOULD GET TRANSFERRED WHEN I HIT EXECUTE BUTTON.

    DATA: lt_display LIKE TABLE OF gt_display.
      REFRESH lt_display.
      CLEAR lt_display.
      lt_display[] = gt_display[].
      CLEAR ref_grid.
      IF ref_grid IS INITIAL.
        CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
          IMPORTING
            e_grid = ref_grid.
      ENDIF.
      IF NOT ref_grid IS INITIAL.
        CALL METHOD ref_grid->check_changed_data.
      ENDIF.
      IF lt_display[] NE gt_display[].
        gv_tosave = 'X'.
      ENDIF.
    Check this program. It will help you. 
    awrd points if helpful
    Bhupal

  • Output of a "report_attribute_error_message" in a sorted ALV does not work!

    Hi all/SAP,
    in my thread editable ALV - how to throw an error message for a specific line & field I figured out, that the output of a "report_attribute_error_message" in the ON_DATA_CHECK event of an editable ALV does not work, if sorting is active for a column.
    Thanks to The specified item was not found. for reproducing this problem.
    A similar problem exists, using an aggregation of a column. This will lead to a runtime exception.
    I've found no fix in the OSS to this problem.
    So is there a way to use sorting together with the output of a "report_attribute_error_message"
    or if this is a bug, can/will this be fixed in the (near) future?
    Thanks,
    Andreas

    Hi,
    Yes, it doesnot work with those (RB,CB) UI elements...Have you checked for any note..I have also tried but no luck..
    Regards,
    Lekha.

  • Editable field in alv list display

    i WANT TO GIVE COLOR FOR EDITABLE FIELD IN ALV LIST DISPLAY.i TRIED WITH EMPHASIZE IN FIELD CATALOGUE ASSIGNING.bUT,IT IS NOT WORKING.HOW TO DO.tHANX IN ADVANCE.........

    HI,
    Please refer the link below:
    http://www.****************/Tutorials/ALV/Edit/demo.htm
    http://www.****************/Tutorials/ALV/ColorSALV/Demo.htm
    Thanks,
    Sriram Ponna.

  • Editable field in alv data format

    i have a editable field on ALV which is of date format and i need when user enter a date the value will be updated in the database table .
    note that i am using alv list and the field catalog is of date format dat 8
    the update is not done pleaseee helppp urgent

    Hi,
    You need to use the USER_COMMAND in the ALV function module
    {CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = gd_repid
    i_callback_user_command = 'USER_COMMAND'
    i_callback_pf_status_set = 'GUI_STAT'
    *i_grid_title = outtext
    is_layout = gd_layout
    it_fieldcat = fieldcatalog[]
    *it_special_groups = gd_tabgroup
    *it_events = it_events
    i_save = 'X'
    *is_variant = z_template
    TABLES
    t_outtab = i_final
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    then you need to write the below FORM
    *• FORM USER_COMMAND *
    *• --> U_COMM *
    *• --> RS_SELFIELD *
    FORM user_command USING u_comm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.}
    Here in the Form, Write the UPDATE statment to update the database table
    Regards
    Sudheer

  • The contained field name "ADTAGR" does not exist in any of the database tab

    hı all
    how can l  solved thıs problem
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_DYNAMIC_OSQL_SEMANTICS', was
    not caught in
    procedure "PUT_QMFECAT" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    An Open SQL clause was specified dynamically. The contained field name
    "ADTAGR" does not exist in any of the database tables from the FROM clause.
    Information on where terminated
        Termination occurred in the ABAP program "SAPDBZQNQ" - in "PUT_QMFECAT".
        The main program was "ZQMR_BILDIRIM ".
        In the source code you have the termination point in line 732
        of the (Include) program "SAPDBZQNQ".
    Error occurred during batch input processing
        The termination is caused because exception "CX_SY_DYNAMIC_OSQL_SEMANTICS"
         occurred in
        procedure "PUT_QMFECAT" "(FORM)", but it was neither handled locally nor
         declared
        in the RAISING clause of its signature.
        The procedure is in program "SAPDBZQNQ "; its source code begins in line
        715 of the (Include program "SAPDBZQNQ ".
    FORM put_qmfecat.
      DATA: l_tab_fields  TYPE  rsfs_tab_fields.
      DATA: l_ds_clauses  TYPE  rsds_where.
    Dynamische Feldselektion
      MOVE 'QMFECAT_C' TO l_tab_fields-tablename.
      READ TABLE select_fields WITH KEY l_tab_fields-tablename
                                    INTO l_tab_fields.
      IF sy-subrc <> c_rc00.
        CLEAR l_tab_fields.
      ENDIF.
    Dynamische Selektionskriterien
      MOVE 'QMFECAT' TO l_ds_clauses-tablename.
      READ TABLE dyn_sel-clauses WITH KEY l_ds_clauses-tablename
                                 INTO l_ds_clauses.
    DB-Zugriff
      >>>>> SELECT (l_tab_fields-fields) FROM qmfe
      INTO CORRESPONDING FIELDS OF TABLE qmfecat_tab
       WHERE qmnum  =  rqmqmel-qmnum
       AND kzloesch =  space
       AND (l_ds_clauses-where_tab)
       ORDER BY PRIMARY KEY.
    regard sinan
    Edited by: eyup_sinan on Jan 6, 2012 3:21 PM
    Edited by: eyup_sinan on Jan 6, 2012 3:30 PM

    You seem to have made a copy of the standard program. You'll have to make sure that you are handling this field correctly in your code.
    Rob

  • Field 'Contract Period' does not exist in definition for business component

    Hi everyone
    I create a Field "Contract Period" in BC "Quote" with an extended table and put it in the applet view "Quote Full Form Applet" the field works fine in the view, we can update and insert information in it and shows perfect in the database also.
    Our problem is when create a Integration Object for reports in BIP Reports the system said something like this when we try to generate the sample data:
    ObjMgrLog     Error     1     0000002d4cd016bc:0     2010-11-02 13:18:39     (adptutils.cpp (5715)) SBL-EAI-04376: Method 'FieldValue' of business component 'Quote' (integration component 'Quote Template') returned the following error:
    "Field 'Contract Period' does not exist in definition for business component 'Quote'.
    We compiled the BC and the IC, and did the Deployment of the IC in Tools but it didn't work, the thing here is if I remove this field the report works fine. Is there any other component or Object that we have to compile to get Siebel recognition?
    Any ideas?
    Thanks in advance
    Edited by: user7286211 on Nov 2, 2010 8:05 PM

    To do the same change with the transaccion FB02 y FB03, create an enhancemente point in the program: SAPMF05L dynpro: 1301, module: DYNPRO_MODIFIKATION, at the of perform open_fi_dynpro_mod and write:
    LOOP AT SCREEN.
      IF sy-tcode = 'FB02'.
        IF screen-name = 'BSEG-HKTID'.
          screen-input = 1.
          screen-invisible = 0.
          screen-active = 1.
          screen-output = 1.
          screen-group4 = ' '.
          MODIFY SCREEN.
          EXIT.
        ENDIF.
      elseif sy-tcode = 'FB03'.
          IF screen-name = 'BSEG-HKTID'.
          screen-input = 0.
          screen-invisible = 0.
          screen-active = 1.
          screen-output = 1.
          screen-group4 = ' '.
          MODIFY SCREEN.
          EXIT.
        ENDIF.
      endif.
      ENDLOOP.
    and, all ready.

  • Users receive "does not accept meetings longer than 1440 minutes" with MaximumDurationInMinutes set to 0

    Hi everyone,
    We are running on Exchange 2007.  I have a user who is attempting to book a meeting on a calendar and is receiving the error, "Your meeting request was declined. This resource does not accept meetings longer than 1440 minutes."  I know
    this is related to the "MaximumDurationInMinutes" property returned from Get-MailboxCalendarSettings in the Exchange Management Shell.  This value is currently set to 0, which I understand to mean unlimited.  The user did not experience
    this issue with other meetings and there are several meetings scheduled that exceed this limit.  I have included the results of "Get-MailboxCalendarSettings" and the email response (with some identifiable information removed) below.  Does
    anyone have any idea why this error might still be occurring and where it would pull the 1440 minute time limit from if it is not set? 
    AutomateProcessing : AutoAccept
    AllowConflicts : True
    BookingWindowInDays : 180
    MaximumDurationInMinutes : 0
    AllowRecurringMeetings : True
    EnforceSchedulingHorizon : True
    ScheduleOnlyDuringWorkHours : False
    ConflictPercentageAllowed : 0
    MaximumConflictInstances : 0
    ForwardRequestsToDelegates : True
    DeleteAttachments : True
    DeleteComments : True
    RemovePrivateProperty : True
    DeleteSubject : False
    DisableReminders : True
    AddOrganizerToSubject : False
    DeleteNonCalendarItems : True
    TentativePendingApproval : True
    EnableResponseDetails : True
    OrganizerInfo : True
    ResourceDelegates : {}
    RequestOutOfPolicy :
    AllRequestOutOfPolicy : False
    BookInPolicy : {domain.com/Core/Groups/Group}
    AllBookInPolicy : False
    RequestInPolicy :
    AllRequestInPolicy : False
    AddAdditionalResponse : False
    AdditionalResponse : <DIV><FONT size=2
    face=Tahoma></FONT></DIV>
    RemoveOldMeetingMessages : True
    AddNewRequestsTentatively : True
    ProcessExternalMeetingMessages : False
    DefaultReminderTime : 15
    RemoveForwardedMeetingNotifications : False
    Identity : domain.com/Enterprise/Service
    Accounts/Service Account
    IsValid : True
    ObjectState : Unchanged
    And the returned message:
    Message ID : <[email protected]>
    Sent Date : Thu, 2 Oct 2014 09:16:02 -0500
    From : [email protected]
    Sender MailID : [email protected]
    Reply To : [email protected]
    To : [email protected]
    Subject : Declined: Meeting
    ------------------------- Contents -------------------------
    BEGIN:VCALENDAR
    METHOD:REPLY
    PRODID:Microsoft Exchange Server 2007
    VERSION:2.0
    BEGIN:VTIMEZONE
    TZID:Central Standard Time
    BEGIN:STANDARD
    DTSTART:16010101T020000
    TZOFFSETFROM:-0500
    TZOFFSETTO:-0600
    RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11
    END:STANDARD
    BEGIN:DAYLIGHT
    DTSTART:16010101T020000
    TZOFFSETFROM:-0600
    TZOFFSETTO:-0500
    RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3
    END:DAYLIGHT
    END:VTIMEZONE
    BEGIN:VEVENT
    ORGANIZER;CN=Sara Luckie:MAILTO:[email protected]
    ATTENDEE;PARTSTAT=DECLINED;CN=Calendar:MAILTO:[email protected]
    COMMENT;LANGUAGE=en-US:Your meeting request was declined.\n\nThis resource
    does not accept meetings longer than 1440 minutes.\n\n _____\n\nSent by Microsoft Exchange Server 2007\n
    SUMMARY;LANGUAGE=en-US:Declined: Meeting
    DTSTART;TZID=Central Standard Time:20141215T080000
    DTEND;TZID=Central Standard Time:20141219T173000
    UID:040000008200E00074C5B7101A82E00800000000E066FB5521DECF01000000000000000
    010000000D93B3AD93730E647B8C7A1B864C90BD3
    CLASS:PUBLIC
    PRIORITY:5
    DTSTAMP:20141002T141602Z
    TRANSP:OPAQUE
    STATUS:CONFIRMED
    SEQUENCE:1
    LOCATION;LANGUAGE=en-US:Online Meeting\, N
    Y
    X-MICROSOFT-CDO-APPT-SEQUENCE:1
    X-MICROSOFT-CDO-OWNERAPPTID:-784160802
    X-MICROSOFT-CDO-BUSYSTATUS:TENTATIVE
    X-MICROSOFT-CDO-INTENDEDSTATUS:BUSY
    X-MICROSOFT-CDO-ALLDAYEVENT:FALSE
    X-MICROSOFT-CDO-IMPORTANCE:1
    X-MICROSOFT-CDO-INSTTYPE:0
    END:VEVENT
    END:VCALENDAR

    Hi Derek,
    I find related information as below:
    The default options allow all users to book resources if they are within the set policies (i.e. up to 180 days in the future, up to 1440 minutes in duration, etc.), and will reject all other meetings. In the context of resource mailboxes,
    InPolicy and OutOfPolicy simply mean whether or not the meeting invitation matches any restrictions enabled on the resource mailbox. For example
    MaximumDurationInMinutes value for the resource mailbox is 30 minutes, any meeting invitation longer than 30 minutes would be considered OutOfPolicy. Using the
    RequestOutOfPolicy parameter, you can manually add users that are allowed to request meetings that are not within the policy, and if you really want to lock things down, you can set the
    AllBookInPolicy value to False, and then manually add users to the
    BookInPolicy field, or more restrictive, to the
    RequestInPolicy field.
    More details to see:
    http://blogs.technet.com/b/exchange/archive/2007/05/14/3402515.aspx
    I suggest set the MaximumDurationInMinutes parameter to a big number. Find a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/exchange/en-US/63ea54a2-6f18-4ff3-9f4d-239342d97081/need-to-remove-the-1440-minute-24-hour-limit-booking-on-all-the-conference-rooms-to-be-unlimited?forum=exchangesvradminlegacy
    Thanks
    Mavis Huang
    TechNet Community Support

  • MBP superdrive does not accept commercial audio cds

    Hi people,
    My superdrive mostly does not accept commercial audio cds when i keep on trying it accepts them sometimes but you cannot say under which circumstances.
    I already tried to resolve this with a "reset -all" in the single user mode but this just lead to acceptance of the first inserted audio cd afterwards it was problematic again to load audio cds.
    Does anybody know something that helps to make the drive reliably accept all cds of this kind?
    THANKS
    Message was edited by: Konstantin

    Yep, to me this is an issue with your optical drive.
    Contact Apple (in the USA call 800-275-2273 for other locations check [this list|http://www.apple.com/support/contact/phone_contacts.html]) or carry it in to an Apple retail store for repairs. Be sure to [make an appointment|http://www.apple.com/retail] first or you may wait a long time to talk to a Mac Genius. Tell them what has been done and get it repaired.
    Best of luck.

  • Elements 9 does not accept or process RAW photo images taken with a Nikon D7000.

    Adobe elements 9 does not accept or process RAW photo images taken with a Nikon D7000. I called support for a download patch and they said I had to purchase a support package or essentially purchase Elements 10. I can't believe that Adobe would not have a download patch for this problem as my elements 9 is not very old. When I try to do the updates Adobe says the serial number of the elements 9 is not accepted for download or support even though I purchased it and registered it with Adobe.
    Is there any solution to this?
    Thanks.

    Thank you but still having a problem. I go to the edit menu>>help>>update>>check for updates and an update to 9.03 comes up as the only update, no camera raw update. It starts to download and then stops and says to close organizer and/or editor then starts back up and stops again saying "error installing this update. Close and contact customer support". When I called customer support earlier that's when they said they don't support 9 only v. 10 and did I want to buy support or a new program v10 to get camera raw processing for the Nikon D7000 RAW. Apparently I'm doing something wrong in the update procedure but don't know what. The camera raw version is 6.5 in my elements and understand that camera raw v. 6.7 is the update to process the images. Any ideas? If I uninstall and reinstall does the serial number still work on the reinstall?
    Thanks for help.

  • AppStore does not accept my credit card

    I have a iPhone 5c iOS 8 and AppStore does not accept my credit card when i want to download a free app or game. I to try with 6 different credit card and nothing.

    FIRST: A FREE item does not require a credit card. Only a user account name & correct password.
    Assuming you are using the correct password & getting past the entry field for the account name:
    IF its an item requiring a credit card (see 1st sentence above):
    Do you have the credit card entered in iTunes first? And from the same account name?
    For CHARGE ITEMS: I’ve experienced trouble [using Appstore] if iTunes doesn’t have the card, or the same account name.
    Try entering/validating the credit card in iTunes - then go to Appstore (which I would preferably do on a desktop, not from a wireless device) to download your app (though some appear not to be visible from the desktop account if they’re exclusively iPhone/iPod format).
    Should you not want to keep the credit card always active, you can always change to “NONE” after your purchase in one, or both places.
    (There are 2 places where DONE button gets selected).

  • Workflow error - Screen Field BSEG - BWKEY does not exist

    Hi Experts,
    Could you please help me, when I am parking a FI reversal document through FBR2 a workflow gets generated, but when the approver is trying to approve the document, we get an error saying
    "S Field BSEG-BWKEY. does not exist in the screen SAP 349 BSEG-BWKEY".
    This Error occurs occassionly.
    Regards,
    Sathya
    Edited by: Sathyanarayana Raghavendra on Nov 14, 2008 5:43 AM

    Hi Sathya,
    you said its happening only some times...
    Is it happening only for some specific company codes ??\
    If so, open the FI document which is not having any problem and the document which is going to error and compare what are the fields which got extra populated ... 
    The issue i faced was for a specific company code where the MRA and responsibility area in the items was getting populated with the company code which was not happening to other company codes.
    once the fields are made blank, then we used to restart the workflow and it used to get approved without the wf going into error.
    Regards,
    PR.

  • I have a problem with the device does not accept 5 slot after work and survey content is not possible activation of the device and iTunes

    I have a problem with the device does not accept 5 slot after work and survey content is not possible activation of the device and iTunes imei: 01******206
    <Personal Information Edited by Host>

    لدي جهاز ترقفت الشبكه ويعطي جاري البحث وتم تحديثه ولم يتم حل المشكلهة  والان الجهاز لايقبل التنشيط والايتونز لايتعرف عليه امل تنشيطه 013619004986206

Maybe you are looking for

  • Hard drive is corrupt, no recovery mode.

    I can't get pat the startup screen and I've immediately jumped to the conclusion that my hard drive is corrupt. It won't let me boot up in safe mode, and I tried to go into recovery mode to find that it would not let me. When I pressed option at star

  • Accidentally deleted several FCP Projects

    I'm using FCP X 10.1.1. I've been making simple (uncomplicated) videos and have used a lot of space on my HD. I'm new to the program and I inadvertenly deleted 4 large projects in my FCP library bc I was looking for more disc space. I realized my err

  • Solaris 10 Ldap Client user authentication against edirectory

    Hello, We have moved some of our oracle databases from linux to solaris 10 u7, I need to setup secure ldap authentication for the users against a linux based eDirectory server. Can some one point me in the right direction of good documentation or a g

  • Upload excel file and display content in sapui5 table

    hi:all    how to upload  excel files and display its contents in the view of sapui5  table ,then  'create ' these data into the abap database using odataservice.      Do you have any solutions ? I appreciate for your help.

  • Interactive PDF - advice, please

    Live and breathe in InDesign, Illustrator and Photoshop, am new-ish to interactive PDFs. New project - a form - requires functionality that InDesign cannot provide. Adobe suggested I use LiveCycle, which of course is not available for Mac. Have outso