ALV Standard changes check

Hi,
I'm using editable ALV + F4 for fields. And there is a problem - When field was changed standard data check checks entered value (by f4 or manually) and returns an error - the entry was not found in check table (foreign key table for entered tab_ref and field_ref in the fieldcatalog). When I looked for value in this table - it was there!
In handler of event data_changed this error was already on the entrance in the er_data_changed protocol.
So what am I doing wrong? Or how can I avoid standard data check for columns that have some DDIC reference fields?
Thanks in advance

Hi Vitali,
  You can standard check, for that when you are populating fieldcatalog dont give ref table and ref field. Just pass the parameters as mentioned below.
  ls_fieldcat-fieldname     = 'YHPFUNC'.
  ls_fieldcat-TABNAME       = '1'.
  ls_fieldcat-datatype      = 'CHAR'.
  ls_fieldcat-REPTEXT       = 'Functionally complete'.
  ls_fieldcat-outputlen     = '1'.
  ls_fieldcat-SCRTEXT_l     = 'Functionally complete'.
  ls_fieldcat-edit          = 'X'.
Hope this will help you.
Thanks & Regards,
Siri.

Similar Messages

  • ABAP Mapping - Message shown in Standard Change List Process Log

    Hi
    I am working with ABAP Mapping program. I had created ABAP class using ABAP workbench. Before this, in exchangeProfile..data was provided for com.sap.aii.repository.mapping.additionaltypes ==>> as " R3_ABAP|Abap-class;R3_XSLT|XSL (ABAP Engine) " and 'Saved'.
    In Interface Mapping, after providing the Class Name under 'Mapping Program' and activated. After activation (Standard Change List), it is showing the following messages under 'Processing Log'.
    --> Standard Change List - Process Log message
    Activation of the change list canceled Check result for Interface Mapping IM_ABAP_MAPPING | http://ABAP_Mapping_SREE:  Type R3_ABAP of
    program ZSREETEST is invalid because it is not registered in the exchange profile . Check the values for the exchange profile parameter
    IntegrationBuilder.Repository.com.sap.aii.repository.mapping.additionaltypes
    --> End of Log message
    Can some one please guide me in resolving the ABAP mapping issue.
    Thanks in advance.
    ..Sree

    Sree,
    The log says that there is ABAP mapping included in your exchange profile. Do the things what michal have told and also check your mapping program whether working fine or not in SXI_MAPPING transaction.
    You can see this weblog for reference:
    /people/sameer.shadab/blog/2005/09/29/testing-abap-mapping
    ---Satish

  • CO: put a standard price check on sales order (URGENT PLEASE)

    Daer Gurus,
    I want to put a standard price check on sales order.
    Will you please help me?
    Thanks in advance,
    Best Regards.
    Juan
    Edited by: juan on Mar 7, 2008 1:01 PM

    Hi,
    1. I don't think it is possible to change system design. Better remove this function to avoid waiting time, if not necessary.
    2. Not sure about second question.
    Thanks & Regards,
    Nagarajan

  • Enforce UCM to use Profile instead of Standard when Checking In Similar

    Hi all,
    I have an ongoing discusssion on club-oracle forum http://www.club-oracle.com/forums/enforce-ucm-to-use-profile-instead-of-standard-when-checking-in-similar-t2501
    and I need your input, as this is critical in my UCM implementation.
    Regards,
    v
    Edited by: George Papadopoulos on Mar 22, 2010 6:48 PM

    Phillip,
    I agree with you. However, if we take a trip in the "wayback machine" to the big forum changeover (can it really be that long ago?), I was BILL HUNT. Notice that everything is in all caps, because I'd had this one, from the earliest days of Adobe on the Internet. That was what the OS's of the day did.
    The forum changeover happened, and out of almost nowhere, the_wine_snob surfaced. Immediately, I went to change this back to BILL HUNT, or the updated, Bill Hunt. Could not do it. Both names were taken. In 2.5 days? I could not believe this. I had filled in the little info screen, prior to the changeover, with all data - same e-dress, same screen name, etc.. With the fora down for those few days, and me logging in as soon as they came up, how could others get my name? Must be a lot of BILL HUNT's in OZ, or NZ!!! Believe me, I tried. I had never posted to any Adobe forum, even back to the NTTP-only days, as other than BILL HUNT. Gone. Still, I try to sign every post with "Hunt."
    I hear you, but many seemed to get caught in the same "trickbag," as I was.
    At least with this screen name, if I hit a few keys incorrectly, or mis-remember something in a product forum, the readers can "fill in the blanks." Too much wine...
    Hunt

  • BAPI_PO_Change - Avoid standard availability check

    Hi everybody,
    Is it possibile to change a transfer order (change quantity, add positions) via bapi without any execution of standard availability check? If is it possible can you explain how? The problem is that i want to confirm quantity (eket-mg02) on each positions later.
    Thank you for response
    Bye
    Andrea

    HI Andrea,
    The bapis(In this case BAPI_PO_Change ) are generally designed to work the same way as a corresponding transaction( In this case me22/me22n) would work.
    There would be some Customizing that needs to be done to avoid the ATP checks in SPRO. You better consult your functional guy to do the same.
    REgards,
    ravi

  • ALV question: Changes in cells not updated in itab

    Hi experts,
    Please help this newbie here. I have problem with updating my internal table with multiple cells changes in my ALV. I've used the FM 'GET_GLOBALS_FROM_SLVC_FULLSCR' and the method 'CHECK_CHANGED_DATA'. When I debugged, I could see the changes being captured in ref1.
    How can I make sure that the changes were already updated into the itab new_antrag after I presses the button command 'EX_SEND'? The original program is leave program RPTARQUIATEST.
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
                                                      RS_SELFIELD LIKE SLIS_SELFIELD
    Data: ref1 type ref to cl_gui_alv_grid.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
        IMPORTING
          E_GRID = ref1.
    call method ref1->check_changed_data.
    read table new_antrag index rs_selfield-index into wa_new_antrag.
    case r_ucomm.
      when 'EX_SEND'.
          perform before_prepare using rs_selfield
                                                new_antrag
                                       changing
                                                wa_new_antrag.
          perform request_check using req
                                                pernr
                                                modus
                                                check_command
                                                g_check_mode
                                        changing
                                                checked_req
                                                messages.
          perform request_exec using wa_new_antrag-request_id
                                                pernr
                                                modus
                                                c_cmd_exec_cmd
                                        changing
                                                exec_req
                                                messages.
          perform after_exec using exec_req.
      endcase.
    ENDFORM.
    Please help. Points will be awarded for constructive solutions which help in the problem solving. Thank you.
    Cheers,
    Damien

    Hi,
    where you are filling itab new_*  there write condition like  on ehich field you are expecting changes check with condition .
    after put sy-subrc variable if operation success fields are chnged with necessary changes.
    It can help you .
    try it once where you have written code for new_* table.
    reward points if usefull

  • Does anyone know why I get varying file sizes when I save a jpg (with same settings-None, 12, base "standard", preview checked) from PhotoshopCS5?

    I opened a .psd file (300 ppi, CMYK, .jpgs (1626px x 2130px), I saved it as a jpg (None, 12, base "standard", preview checked).
    I then closed the original .psd file.
    I repeated those steps on the same file and saved a series of 6 .jpgs.
    Of those 6 files, I received 2 large files (6.2MB) and 4 smaller (3.2MB) files.
    My coworkers who were having trouble opening some of my jpg images in Windows Photo Gallery on Vista OS were able to open the smaller files but not the larger ones.
    Do you have any idea why the same settings would give me different file sizes from CS5?
    Is there a way I can make it consistently keep the smaller more compatible version?

    How well a image data compresses depends on image content.   Image with High detail do not compress well image will little detail will compress well and the file size will be small. Compare a image of a blank white wall to a wall with a black and white checker board wall paper.  One is all white it white no other detail  to detail the other has squares that vary in size because of perspective angle and distance a lot of detail must be recorded.
    I do not know why they can not open some of your images. File size should not be an issue.   All your image decoded are the same size  Width number of Pixels Height numbers of pixels background layer only for these are jpeg files.

  • Problem printing ALV standard report

    Hi Experts
    I have a problem, when running my report in the transaction mb5b (alv standard) output makes it a product sheet that generates great waste of sheets. I can make it print all at once?
    Thanks in Advance.
    Gina

    for duplicate entries
    select banfn
    WERKS
    matnr
    menge
    fistl
    geber
    from eban
    into table iteba
    where fistl = p_fistl
    AND geber IN s_geber.
    IF NOT iteba[] IS INITIAL.
    select BWKEY
    bukrs
    from t001k
    into table itt00
    for all entries in iteba
    where BWKEY = iteba-WERKS.
    ENDIF.
    "<<<<<<<<<<<<
    sort iteba.
    delete adjacent duplicates comparing all fields.
    "<<<<<<<<<<<<
    IF NOT iteba[] IS INITIAL.
    SELECT banfn
    matnr
    FROM eban
    INTO TABLE itmat
    FOR ALL ENTRIES IN iteba
    WHERE matnr = iteba-matnr
    AND banfn = iteba-banfn.
    ENDIF.
    ENDFORM. " datafetch

  • Trigger standard credit check on order after it is Booked

    Hello,
    The sales order is interfaced from Siebel and other third party systems and imported in "Booked" status. Is it possible to trigger standard credit check for such an order/customer and place the order on credit hold if the credit limit has been exceeded? To be noted - the order is NOT being booked in EBS; it is being brought in as Booked, and we still need to do a credit check. Can this be achieved with standard functionality? Is there any standard way to start credit check other than order booking event
    Thanks in advance!

    Current credit check at Booking event is not working ?
    My first guess is that 'Booking' should be working same irrespective of UI or API call(so Credit check must be happening if there are credit check rules).

  • How can we transport the standard changed OTR texts w.r.t translation?

    How can we transport the standard changed OTR texts with out effecting the translation concept.?
    means i need to see the text in different languages which ever logged in.

    using the function module SOTR_API_WB_TRANSLATE you can maintain translation in different languages for the OTR texts maintained in your WDA.
    No need to transport,you can directly execute this FM by passing the below parameters:
    SOURCE_LANGU                    EN
    TARGET_LANGU                    FR
    PGMID                           LIMU
    OBJECT                          WDYV
    OBJ_NAME                        %
    FLAG_STRING
    EDIT_MODE                       T

  • Add Button with ALV  Standard Toolbar.

    Hi,
    Can any one tell me how to add user-defined button with ALV
    Standard toolbar? When I add Pf-status for alv output , standard alv toolbar is not displayed.
    Plz do needful.

    On the toolbar event of your alv grid, all the button as shown in the code below.
    FORM handle_toolbar USING i_object TYPE REF TO cl_alv_event_toolbar_set .
    DATA: ls_toolbar TYPE stb_button.
    CLEAR ls_toolbar.
    MOVE 'EXCH' TO ls_toolbar-function. "#EC NOTEXT
    MOVE 2 TO ls_toolbar-butn_type.
    MOVE icon_calculation TO ls_toolbar-icon.
    MOVE 'Payment in Other Currencies'(202) TO ls_toolbar-quickinfo.
    MOVE ' ' TO ls_toolbar-text.
    MOVE ' ' TO ls_toolbar-disabled. "#EC NOTEXT
    APPEND ls_toolbar TO i_object->mt_toolbar.
    ENDFORM
    CLASS lcl_event_handler DEFINITION .
    PUBLIC SECTION .
    METHODS:
    *To add new functional buttons to the ALV toolbar
    handle_toolbar FOR EVENT toolbar OF cl_gui_alv_grid
    IMPORTING e_object e_interactive ,
    ENDCLASS.
    CLASS lcl_event_handler IMPLEMENTATION .
    *Handle Toolbar
    METHOD handle_toolbar.
    PERFORM handle_toolbar USING e_object e_interactive .
    ENDMETHOD .
    ENDCLASS.
    DATA gr_event_handler TYPE REF TO lcl_event_handler .
    *--Creating an instance for the event handler
    CREATE OBJECT gr_event_handler .
    *--Registering handler methods to handle ALV Grid events
    SET HANDLER gr_event_handler->handle_toolbar FOR gr_alvgrid .
    Hope this helps.
    Thanks,
    Balaji

  • Windows 2012 server security checklist for corporate company standard/recommended check-list

    Hello All,
    Good Day.
    I am looking for Windows 2012 server security checklist (standard hardening
    settings), would you kindly assist me by providing Wintel 2012 standard/recommended check-list ASAP?
    Thanks in advance.

    Hi,
    The Microsoft Security Compliance Manager 3.0 tool is designed to provide you with an end-to-end solution to help you plan, deploy, and monitor security baselines for computers running Windows Server 2012 in your environment.
    For more detailed information, please refer to the articles below:
    Windows Server 2012 Security Baseline
    http://technet.microsoft.com/en-us/library/jj898542.aspx
    Security Hardening Tips and Recommendations
    http://social.technet.microsoft.com/wiki/contents/articles/18931.security-hardening-tips-and-recommendations.aspx
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How oracle standard Credit Check considers amounts

    Hi All,
    We have an order, as per our calculations it should get booked successfully. But a credit check failure hold is placed on that order. We consider the booked orders (booked and shipped quantities), outstanding RA balances (from ra_payment_schedules_all table) to derive the available credit limit for a particular customer.
    Any body please explain how Standard Credit Check works, what are the various sources that a credit check searches for amounts to derive whether the order amount exceeds the limit or not.
    Thanks in advance.
    Regards,
    Chaitanya.

    Hello,
    I think you set credit check rule. Did you set Use pre-calculated exposure?
    When SO is going hold you have message. In this message you have reason why credit check rules applied hold.
    Regards,
    Luko

  • SAP Standard change - How to find ?

    Hello experts,
    i was wondering... is there any way of finding all SAP ABAP Standard Change in a System without having the S-User of the customer.
    I want to undo those changes but i need to find them first.
    Thanks
    Regards
    Khalil

    Hey Nick,
    thing is i don t know when changes were done and by who.
    So i don t wanna have to search transport request by transport request since 3 or 4 years for all objects in all TR that are std changes. Or maybe you were thinking about another type of search.
    Sorry i might have misunderstood your first post. When you say all "repairs"... do you mean there is a way you can differenciate  std change from z changes ??
    Tx for help
    Khalil
    Edited by: Khalil SERRHINI on Jul 1, 2010 11:53 AM
    Edited by: Khalil SERRHINI on Jul 1, 2010 11:54 AM

  • User exit or BADI for standard change Log ?

    Is there user exit or BADI for standard change log update ?
    I want to update a customer fields into standard change log table.
    Could someone tell me about it?

    Could anbody tell me ?

Maybe you are looking for

  • Can no longer use Transfer to SD card with the new firmware update 23.0.1.A.3.12

    I just got the latest update for my Z2. My device now has a firmware 23.0.1.A.3.12. I encountered a problem. I can no longer transfer photos to SD card thru the Transfer to SD Card under Storage. Solved! Go to Solution.

  • Huge File Size

    I have used After Effects for 3 years to make videos and for school. I don't try to make them VFX heavy, I just use muzzle flares, blood hits, and explosion elements. My videos are 1-2 minutes in length and they are just about 8 gb. I have looked for

  • How do I change navigation bar text color?

    I want to change the color of the type in the navigation bar, as well as the line/bar below the type. How can I do this?

  • New OS on my macbook pro

    Hi, I had my macbook pro on service and they reinstalled my OS so i do not have Logic anymore. I made an back up with time machine before but I can not get Logic Pro from there to work. What can I do? Can I download Logic pro again using my previus p

  • Please help my photos in iPhoto are gone

    Hellooo my photos in iphoto are gone, where are the photos, where can i check???