Table CRMC_FDT_ATTR updated without the FDT_ATTR_GUID

Hi,
We've a custom attribute called as 'PRC_GROUP5" ( material group 5) as a territory attribute.\
We're going through an upgrade from 4.0 to 7.0.
I added this to the attribute list, however in the table
CRMD_FDT_ATTR  for the corresponding entry of PRC_GROUP5, FDT_ATTR_GUID is not
available. Because of this when i run the class
CL_CRM_FDT_CUST_UTIL method CHECK_CUSTOMIZING_DATA
, it gives me an error message
CHECK_CUSTOMIZING_DATA.ET_ERRO
       S_CUST_OBJECT
           ATTR_TYPE                      Condition object
           BO_ID                          PR
           ATTR_ID                        PRC_GROUP5
           FDT_GUID
           FDT_NAME
           TYPE
           SUBTYPE
           ERROR                          BRFplus ID not maintained for this attribute
Any body knowing about this error and how to resolve it ?

Hi,
We've a custom attribute called as 'PRC_GROUP5" ( material group 5) as a territory attribute.\
We're going through an upgrade from 4.0 to 7.0.
I added this to the attribute list, however in the table
CRMD_FDT_ATTR  for the corresponding entry of PRC_GROUP5, FDT_ATTR_GUID is not
available. Because of this when i run the class
CL_CRM_FDT_CUST_UTIL method CHECK_CUSTOMIZING_DATA
, it gives me an error message
CHECK_CUSTOMIZING_DATA.ET_ERRO
       S_CUST_OBJECT
           ATTR_TYPE                      Condition object
           BO_ID                          PR
           ATTR_ID                        PRC_GROUP5
           FDT_GUID
           FDT_NAME
           TYPE
           SUBTYPE
           ERROR                          BRFplus ID not maintained for this attribute
Any body knowing about this error and how to resolve it ?

Similar Messages

  • How can I use Office Update without the Office CD?

    How can I use Office Update without the Office CD? On the microsoft website I've clicked the options which mean I shouldn't need the CD (which wasn't supplied with the laptop), but poartway through updating the service pack I get a request for the Office 2000 Professional CD.
    Any suggestions?

    Hi
    Did you mean a Office or One Note?
    As far as I know the One Note is a part of the Recovering Image and the CD is not delivered with the unit. Furthermore the Toshiba units are not delivered with the Office 2000 software.
    Nevertheless, did you check the update function in the Help i.e. in Word?
    There you will find a options called Check for Updates
    http://office.microsoft.com/en-us/officeupdate/default.aspx
    Bye

  • How to audit the table when updated. The table has 100 Columns.

    Hi,
    I have a requirement to keep the log information of a table whenever there is an update happening on any of the columns available in a table, which has roughly 100 columns. I know we can use :NEW and :OLD specifier using trigger, but the no of columns are 100 + , here shall we fulfill the requirement. Kindly suggest if you have any better way to handle it.
    Regards
    Suresh

    You can use XMLTYPE for this. See an example below:
    First creating some test data:
    SQL> create table test_06302011
      2  (
      3    a1 number(10)
      4  , a2 number(10)
      5  , a3 number(10)
      6  , a4 number(10)
      7  , a5 number(10)
      8  , a6 number(10)
      9  )
    10  /
    Table created.
    SQL> insert into test_06302011
      2  values(1,1,1,1,1,1)
      3  /
    1 row created.
    SQL> insert into test_06302011
      2  values(2,2,2,2,2,2)
      3  /
    1 row created.
    SQL> insert into test_06302011
      2  values(3,3,3,3,3,3)
      3  /
    1 row created.
    SQL> insert into test_06302011
      2  values(4,4,4,4,4,4)
      3  /
    1 row created.
    SQL> insert into test_06302011
      2  values(5,5,5,5,5,5)
      3  /
    1 row created.
    SQL> insert into test_06302011
      2  values(6,6,6,6,6,6)
      3  /
    1 row created.
    SQL> commit
      2  /
    Commit complete.
    SQL> create table log_06302011
      2  (
      3    log_id     number(10) primary key
      4  , log_date   date
      5  , log_action varchar2(1)
      6  , log_old    xmltype
      7  , log_new    xmltype
      8  )
      9  /
    Table created.Then creating the logging trigger:
    SQL> CREATE OR REPLACE TRIGGER trigger_log_06302011
      2     AFTER UPDATE OR INSERT OR DELETE ON test_06302011
      3     FOR EACH ROW
      4  DECLARE
      5      vlog_event VARCHAR2(1);
      6      v_log_new  XMLTYPE;
      7      v_log_old  XMLTYPE;
      8  BEGIN
      9
    10    IF INSERTING THEN
    11        vlog_event := 'I';
    12        select XMLELEMENT("test_06302011",
    13                        XMLFOREST(
    14                            :new.a1 as "a1"
    15                          , :new.a2 as "a2"
    16                          , :new.a3 as "a3"
    17                          , :new.a4 as "a4"
    18                          , :new.a5 as "a5"
    19                          , :new.a6 as "a6")
    20                   )
    21           into v_log_new
    22           from dual;
    23
    24         v_log_old := NULL;
    25
    26    END IF;
    27
    28    IF UPDATING THEN
    29        vlog_event := 'U';
    30        select XMLELEMENT("test_06302011",
    31                        XMLFOREST(
    32                            :new.a1 as "a1"
    33                          , :new.a2 as "a2"
    34                          , :new.a3 as "a3"
    35                          , :new.a4 as "a4"
    36                          , :new.a5 as "a5"
    37                          , :new.a6 as "a6")
    38                   )
    39           into v_log_new
    40           from dual;
    41
    42         select XMLELEMENT("test_06302011",
    43                        XMLFOREST(
    44                                                           :old.a1 as "a1"
    45                                                         , :old.a2 as "a2"
    46                                                         , :old.a3 as "a3"
    47                                                         , :old.a4 as "a4"
    48                                                         , :old.a5 as "a5"
    49                                                         , :old.a6 as "a6")
    50                   )
    51          into v_log_old
    52          from dual;
    53
    54    END IF;
    55
    56    IF DELETING THEN
    57        vlog_event := 'D';
    58        v_log_new := NULL;
    59
    60         select XMLELEMENT("test_06302011",
    61                        XMLFOREST(
    62                                                           :old.a1 as "a1"
    63                                                         , :old.a2 as "a2"
    64                                                         , :old.a3 as "a3"
    65                                                         , :old.a4 as "a4"
    66                                                         , :old.a5 as "a5"
    67                                                         , :old.a6 as "a6")
    68                   )
    69          into v_log_old
    70          from dual;
    71
    72    END IF;
    73
    74     INSERT INTO log_06302011 (log_id, log_date, log_action, log_old, log_new
    75     VALUES ((SELECT NVL(MAX(log_06302011.log_id), 0) + 1 FROM log_06302011)
    76          , SYSDATE
    77          , vlog_event
    78          , v_log_old
    79          , v_log_new
    80           );
    81
    82  END trigger_log_06302011;
    83  /
    Trigger created.Now test:
    SQL> update test_06302011
      2     set a2 = 99
      3   where a1 = 1
      4  /
    1 row updated.
    SQL> commit
      2  /
    Commit complete.
    SQL> column log_old format a30
    SQL> column log_new format a30
    SQL> set linesize 300
    SQL> select log_old, log_new from log_06302011;
    LOG_OLD                        LOG_NEW
    <test_06302011><a1>1</a1><a2>1 <test_06302011><a1>1</a1><a2>9
    </a2><a3>1</a3><a4>1</a4><a5>1 9</a2><a3>1</a3><a4>1</a4><a5>
    </a5><a6>1</a6></tes           1</a5><a6>1</a6></te
    SQL>

  • Check which column in database table is updated without hard code

    Hi ,
    I have a requirement to detect if there is a particular column in the database table is updated , and this column name is found in mapping table ( business logic ) , it will do an insertion to another special table.
    My idea is to introduce a trigger before update or delete on this table
    However , i would like to make it as dynamic as possible
    i dont want to use things as below in trigger if possible
    1. if ( old.name <> new.name ) then {
    if( 'name' is inside the mapping table ) {
    // do some insertion
    I want things like
    2. if ( there is a column updated on this table ){
    1. select column name and updated value that is updated
    2. if the column name that is updated is inside the mapping table {
    // do some insertion
    I am not really sure if the pseudo code listed in no 2 is achieveable in oracle using simple pl/sql or sql ?
    if possible , how to do it ?
    Thanks

    Hi,
    Check the link given below
    http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96590/adg13trg.htm
    and search for
    IF UPDATING THEN*009*

  • Updating one table is updating ALL the materialized views

    We have a number of tables and also a number of materialized views that are interconnected. For some unexplained reason, when we update one table that should refresh one materialized view, all the materialized views are refreshed. It's causing massive bottlenecks on our system and we can't find the cause. Does anyone have any thoughts?

    "when we update one table that should refresh one materialized view, all the materialized views are refreshed" --If that table is used in the creation of all materialized views,then it will try to refresh all of them..(ON COMMIT REFRESH)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Database table not updating with the changes

    Hi friends,
                    Iam having a tablecontrol where iam gettting the data from the ztable for a particular key field.  When i change certain fields in the table control and when i click save, it should update the changes in the ztable.
       module save output.
       modify zslip_po1 from table x_po1_slip.
    here slpno is the key field.  if I change a field for a particular slpno it should update the changes for that slpno value only.
    but it is not updating the changes. although iam setting the slpno field dynamically.
    Please give me ideas.
    thanks and regards
    Murali Krishna T

    Hi,
    1. Have 2 Internal Tables, the first one must contain the original data(before change ) and the second one  contains the update data(after changed ie. table control data).
    2. loop the first table and read the data from the second table using index.
    3. inside the loop, compare the work area of both the internal table.
       if both are same, then no change was made to that particular record, so no need for updation
       if both are not same, then some changes were made on that record, so need to update.
    4. use modify command to update that particular record from the work area.
    i think in performance wise also this logic will be helpful, since we are updating only the changed record.
    since this is addon table, so i hope the no of records will also less, so no need to worry about loop.
    check with this, it may work out......
    thank you,
    SenthilPandi C
    Edited by: SenthilPandi ChandraSekaran on Feb 4, 2010 5:36 PM

  • How do I disable automatic updating? I am about to switch to another browser because of the frequency with which I am delayed by an automatic update without the option to put it off to another time.

    I have been using Firefox and its ancestors since the beginning. I am at the end of my rope with it. When I click a link or open the browser it is because that is what I seek to have happen. Unless there is a way to turn off automatic updating, I am going to pack it in and find another platform. I cannot see what would be lost if Firefox would do its updating on the way out, when my attention has moved on, and it is not taking up my time. Is there a solution to this with Firefox?

    Hi,
    It is true that the Classic Theme Restorer add-on will NOT bring back all of your customized settings/appearance on Firefox 28, but it will help a little It's recommended that you stay on the latest version to receive the latest security fixes and bug patches but you're free to downgrade if you want.
    You can set these prefs in <code>about:config</code> to disable automatic updating:<br>
    app.update.auto - false<br>
    app.update.enabled - false<br>
    app.update.silent - false<br>

  • Any way to save faild bios update without the graphics working

    HI,
    I put together a new m-itx computer last week, had som trubbel with an old SSD that didn't start when I started the system but after rebooting 2 or 3 times it rose from the dead and the computer work without any problems. I found this irritating and got the tip to update my bios so I did, I use the M-flash function in the bios but then when the system rebooted it froze so everything crashed and now the system starts up but I cant get it to give any video signals and I even tried this bios recovery fix that MSI support sent me  but that didnt work either since I cant get anything up on my screen. so i was wondering if anyone knows a way to flash the bios without visuals?
    ohh and I forgot for some reason it seams like my keybord doesent work either.
    I hope I didn't post this in the wrong place?
    System:
    Windows 7 64bit
    Corsair XMS3 Vengeance CMZ8GX3M2A1600C9B
    Corsair  CX500 500W
    Intel Core i3-4360
    MSI Z97I AC
    Corsair f115 SSD

    Unfortunately the board is now bricked. As it doesn't offer a backup bios it can only be reflashed with an SPI flash programming device. Therefor you need to contact a pc-shop or MSI for saving it. If still under warranty you can also rma it as an official MSI flash option failed.

  • Can you download iOS updates without the iPhone connected to your computer?

    I'm trying to do the iOS 8 update for my phone - "Download Only" - and the pop-up window says "32 hours remaining!" Is there a way for me to continue the download without having the iPhone itself connected to iTunes?

    Probably. Didn't try that myself, but once the download is going your iPhone should not need to remain connected.

  • How do I install the flashplayer update without the google toolbar?

    I don't mind updating/installing flashplayer, but when the option came up and I started the install, I noticed that Google toolbar and something else was installing with it and I immediately stopped the installation. I tried 'backing up' and looking for the option to not select google, but when  I thought about it, I don't remember being given any option as to what was being installed in the first place. Bottomline: I don't want Google toolbar.

    You can simply, uncheck the check box for Google Toolbar. Check the below screenshot for details.

  • How do i get itunes 11 to update without the installation stopping

    My installation keeps stopping and saying that the file is not compatible with the storage unit

    Hello micdude,
    You may find the following article helpful for getting iTunes to install succesfully.
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Cheers,
    Allen

  • MOVED: Any way to save faild bios update without the graphics working

    This topic has been moved to MSI Intel boards.
    https://forum-en.msi.com/index.php?topic=252541.0

    Unfortunately the board is now bricked. As it doesn't offer a backup bios it can only be reflashed with an SPI flash programming device. Therefor you need to contact a pc-shop or MSI for saving it. If still under warranty you can also rma it as an official MSI flash option failed.

  • What are the tables will update while loading Master data ?

    Hello Experts,
    What are the tables will update while loading Master data ? And requesting you to provide more information about Master data loading and its related settings in the beginning of creation infoobjects. 

    It depends upon the type of Master data u r loading....
    In all the master data loadings, for every new value of master data an SID will be created in the SID table /BI*/S<INFOOBJECT NAME> irrespective of the type of master data.
    But the exceptional tables that get updated depending on the type of master data are.....
    If it is a time Independent master data then the /BI*/P<INFOOBJECT NAME> table gets updated with the loaded data.
    If it is a time dependent master data then the /BI*/Q<INFOOBJECT NAME> table gets updated with the loaded data.
    If the master data is of time Independent Navigational attributes then for every data load the SID table will get updated first and then the /BI*/X<INFOOBJECT NAME> table gets updated with the SID's created in the SID table (NOT WITH THE MASTER DATA).
    If the master data is of time dependent navigational attributes then for every data load the SID table will get updated first and then the /BI*/Y<INFOOBJECT NAME> table gets updated with the SID's created in the SID table (NOT WITH THE MASTER DATA).
    NOTE: As said above, For all the data in P, Q, T, X, Y tables the SID's will be created in the S table /BI*/S<INFOOBJECT NAME>
    NOTE: Irrespective of the time dependency or Independency the VIEW /BI*/M<INFOOBJECT NAME> defined on the top of /BI*/P<INFOOBJECT NAME> & /BI*/Q<INFOOBJECT NAME> tables gives the view of entire master data.
    NOTE: it is just a View and it is not a Table. So it will not have any physical storage of data.
    All the above tables are for ATTRIBUTES
    But when it comes to TEXTS, irrespective of the Time dependency or Independency, the /BI*/T<INFOOBJECT NAME> table gets updated (and of course the S table also).
    Naming Convention: /BIC/*<InfoObject Name> or /BI0/*<InfoObject Name>
    C = Customer Defined Characteristic
    0 = Standard or SAP defined Characteristic
    * = P, Q, T, X,Y, S (depending on the above said conditions)
    Thanks & regards
    Sasidhar

  • LIKP table updation using the IDOC_INPUT_DESADV1

    Hi,
    Please help me when and where the LIKP table is updating using the FM IDOC_INPUT_DESADV1. I debugged the program several times even though i couldnt able to find the updation part.
    Further to the above wherer exactly the idoc number is generrating in this FM.
    This is very urgent.Kindly give the replies at the earliest.

    Ubay
    Refer to this code in IDOC function module DOC_INPUT_DESADV1. Delivery order must be getting created thorugh this function module.
      CALL FUNCTION 'GN_DELIVERY_CREATE'
           EXPORTING
                VBSK_I        = S_VBSK
                NO_COMMIT     = TRUE
                IF_SYNCHRON   = ' '             "INS_HP_338221
                IF_NO_DEQUE   = 'X'             "n_632020
           IMPORTING
                VBSK_E        = S_VBSK
           TABLES
                XKOMDLGN      = T_DLGN
                XVBFS         = T_VBFS
                XVBLS         = T_VBLS
                XVERKO        = T_VSEK
                XVERPO        = T_VSEP
                IT_GN_HUSERNR = T_HUSN
                IT_GN_SERNR   = T_SERN
           EXCEPTIONS
                ERROR_MESSAGE = 1
                OTHERS        = 2.
    Thanks
    Amol G. Lohade

  • Module pool - table control - update ztable

    hello , i doing a module pool that will have few screens , now i have one screen with a table control that fetch the data from a ztable when screen is call the table control is showing the data and is in grey and no editable i add a pf-status for change that mode i can delete the row from the table control but i don't figure out how update to the ztable when i press save , i wan't too another button for add a new row ( and remain the already in grey ) for add new entrie in the table and update the ztable
    pd: sorry for my bad english
    this is my code:
    TOP:
    PROGRAM  z_pp_lote_etiquetas MESSAGE-ID zz.
    TABLES:zc2p_lote_etique,
           zc2p_lider_modul.
    DATA: ok_code LIKE sy-ucomm.
    DATA save_ok LIKE sy-ucomm.
    * internal table
    DATA: it_zc2p_lote_etique LIKE STANDARD TABLE OF zc2p_lote_etique.
    DATA: it_zc2p_lider_modul TYPE STANDARD TABLE OF zc2p_lider_modul WITH HEADER LINE.
    DATA: it_zc2p_lider_modul_del TYPE STANDARD TABLE OF zc2p_lider_modul WITH HEADER LINE.
    **************Workarea
    DATA: wa_c2p_lote_etique TYPE zc2p_lote_etique.
    DATA: wa_c2p_lider_modul TYPE zc2p_lider_modul.
    DATA: wa_c2p_lider_modul_del TYPE zc2p_lider_modul.
    DATA: sel.
    DATA: MARK.
    DATA: init.
    DATA:  col TYPE scxtab_column.
    DATA: lines TYPE i.
    * Variable Declaration
    DATA : flg, "Flag to set the change mode
    ln TYPE i. "No. of records
    * Table Control Declartion.
    CONTROLS: zc2p_lider_crtl TYPE TABLEVIEW USING SCREEN '101'.
    **PROCESS BEFORE OUTPUT INCLUDE **
    *&  Include           Z_PP_LOTE_ETIQUETAS_O01
    *& Module set_status OUTPUT
    * Setting the GUI status
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'Z_PP_LOT_ETIQ_MENU'.
      SET TITLEBAR 'Z_PP_LOT_ETIQ'.
    ENDMODULE. " set_status OUTPUT screen 100
    *  MODULE status_0101 OUTPUT
    * Setting the GUI status
    MODULE status_0101 OUTPUT.
      SET PF-STATUS 'Z_PP_LOT_ETIQ_ME_101'.
      SET TITLEBAR 'Z_PP_LOT_ETIQ'.
    * Data retreving
      if init is INITIAL.
      select * from zc2p_lider_modul into CORRESPONDING FIELDS OF TABLE it_zc2p_lider_modul.
        DESCRIBE TABLE it_zc2p_lider_modul LINES ln.
        zc2p_lider_crtl-lines = ln + 10.
        init = 'X'.
    endif.
    ENDMODULE.                    "status_0101 OUTPUT
    module change_sdyn_conn output.
    * you can change the content of current table control line via
    * sdyn_conn
      READ TABLE it_zc2p_lider_modul INTO zc2p_lider_modul INDEX zc2p_lider_crtl-current_line.
    endmodule.                             " FILL_TABLE_CONTROL  OUTPUT
    MODULE set_screen_fields OUTPUT.
    LOOP AT SCREEN.
    IF flg IS INITIAL.
    screen-input = 0.
    ELSE.
    screen-input = 1.
    ENDIF.
    *ENDIF.
    * Modifying the screen after making changes
    MODIFY SCREEN.
    ENDLOOP.
    ENDMODULE. " set_screen_fields OUTPUT
    PROCESS AFTER INPUT INCLUDE.
    *  MODULE USER_COMMAND_0100 INPUT
    MODULE user_command_0100 INPUT.
      CASE ok_code.
        WHEN 'LIDM'.
          CALL SCREEN 101.
        WHEN 'CANC'.
          LEAVE PROGRAM.
        WHEN 'BACK'.
          LEAVE PROGRAM.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                    "USER_COMMAND_0100 INPUT
    *  MODULE USER_COMMAND_0101 INPUT
    MODULE user_command_0101 INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'SORT'.
          DATA: fldname(100),help(100).
          READ TABLE zc2p_lider_crtl-cols INTO col WITH KEY selected = 'X'.
          SPLIT col-screen-name AT '-' INTO help fldname.
          SORT it_zc2p_lider_modul BY (fldname).
        WHEN 'CHANGE'.
    * Setting the flag to make the table control in editable mode[excluding
    * primary key].
          flg = 'Y'.
        WHEN 'BACK'.
          CALL SCREEN 100.
          LEAVE SCREEN.
        WHEN 'CANCEL'.
          LEAVE PROGRAM.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
        WHEN 'SAVE'.
          MODIFY  zc2p_lider_modul FROM it_zc2p_lider_modul.
          COMMIT WORK.
      ENDCASE.
    ENDMODULE.                    "USER_COMMAND_0101 INPUT
    *  MODULE read_table_control INPUT
    MODULE read_table_control INPUT.
    * Check input values
      IF mark = 'X' AND save_ok = 'DELETE'.
        DELETE TABLE it_zc2p_lider_modul FROM zc2p_lider_modul.
        DESCRIBE TABLE it_zc2p_lider_modul LINES zc2p_lider_crtl-lines.
      ENDIF.
    ENDMODULE.                             " READ_TABLE_CONTROL  INPUT
    Screen Flow Logic 100
    PROCESS BEFORE OUTPUT.
    MODULE status_0100.
    PROCESS AFTER INPUT.
    MODULE user_command_0100.
    Screen Flow Logic 101.
    PROCESS BEFORE OUTPUT.
      MODULE status_0101.
      LOOP AT it_zc2p_lider_modul INTO zc2p_lider_modul WITH CONTROL
    zc2p_lider_crtl.
    * Dynamic screen modifications
        MODULE set_screen_fields.
        MODULE change_sdyn_conn.
      ENDLOOP.
    PROCESS AFTER INPUT.
      MODULE user_command_0101.
      LOOP AT it_zc2p_lider_modul.
        MODULE read_table_control.
      ENDLOOP.
    i hope somebody can help for what i missing here  thanks

    >
    Sanjeev Kumar wrote:
    > Hello Edgar,
    >
    > Problem seems to be there in the flow logic of 101
    >
    >
    > PROCESS BEFORE OUTPUT.
    >   MODULE status_0101.
    >   LOOP AT it_zc2p_lider_modul INTO zc2p_lider_modul WITH CONTROL
    > zc2p_lider_crtl. " no need to have 'INTO zc2p_lider_modul' above
    > * Dynamic screen modifications
    >     MODULE set_screen_fields.
    >     MODULE change_sdyn_conn.
    >   ENDLOOP.
    > *
    > PROCESS AFTER INPUT.
    >   MODULE user_command_0101. "this should be shifted after the following LOOP...ENDLOOP.

    >   LOOP AT it_zc2p_lider_modul. "need to have 'WITH CONTROL zc2p_lider_crtl' here
    >     MODULE read_table_control.
    >   ENDLOOP.
    >
    >
    >
    > With MODULE user_command_0101 call before the LOOP calls the MODIFY statement (under case save_ok 'SAVE') first and Z-table is updated with the old values as the changes are transferred from screen into the internal table it_zc2p_lider_modul in the LOOP...ENDLOOP later.
    >
    > Try these changes and I hope it will work.
    >
    > Thanks
    > Sanjeev
    i do the firts advice but the second one i get syntax error :
    my code :
    PROCESS AFTER INPUT.
      LOOP  at it_zc2p_lider_modul WITH CONTROL zc2p_lider_crtl.
        MODULE read_table_control.
      ENDLOOP.
       MODULE user_command_0101.
    error :
    In the event PROCESS AFTER INPUT, no additions are allowed with "LOOP     
    AT".

Maybe you are looking for

  • How to  Populate Values from ECC  to SAP SRM

    Hi Freinds, we have  two custom fields in Purchase Requisation  ( ECC ), my requirement is to  same fields i want to create in SC Item Tab, i have included in tem Tab, but now i want to populate the values from ECC  to SRM, can any give me idea how t

  • .mov will play on iPhone but not on computer

    Hello, I have had this problem intermittently but it has me a little confused. Here is what's going on. i have recorded several .mov files on my iPhone 5 and I can play each and every one of them from the phone without issues. Now, when i plug the ph

  • Want to learn about Apex..!!

    Hello Everybody, I want to know much about apex. Can somebody please guide me. Here's why i want to learn apex. I want to design one application which opens in web browser, i want to implement it on my local PC, i am using Vmware (Red Hat Linux enter

  • How to solve the error 0xBFF6902B in Ni-Max??

    Hello, I am trying to communicate with Axis camera with Ni-vision , but I am getting the error as I mentioned. Here in attachment I have attached the screenshot of error. Would you please guide me how to solve this error. Thank you very much. Attachm

  • Close popup data input window once CREATE button pressed?

    Hello, I have a data input form opened as a popup, it contains 2 buttons (CANCEL & CREATE). The cancel button just uses the javascript:window.close(); command and works fine. The CREATE button creates the record correctly but when it tries to close (