Very urgent:Updating maintenance view

Hi
I would like to know that if i update a maintenance view and attach the same to the
request,will it be included in the correction instructions ?
Or do i need to do anything special for the same?
Please let me know
Regards
Leon

Any relavance to Oracle?

Similar Messages

  • Very urgent : Update maintenance view

    Hi
    I would like to know if i update a maintenance view ,will that change be included
    in the correction instruction or do i need to do anything special for the same.
    Regards
    Leon

    Hi,
           it should update the data in views( and corresponding tables ) .
    and we need these changes should be stored in change request also .
    you can use FM
    VIEW_MAINTENANCE_NO_DIALOG
    with action parameter = 'SAVE'
    just do a where used list of this FM to check how this can be used
    <b>Reward points</b>
    Regards

  • Update maintenance view data by FM .

    Hi friends,
             I want to update Maintenance view data  not by using sm30,sm34,transactions . i want to update by FM . i will pass the data and view name  so that it should update the data in views( and corresponding tables ) .
    and  we need these changes should be stored in change request also .
    Regards,
    Shiva.

    you can use FM
    VIEW_MAINTENANCE_NO_DIALOG
    with action parameter = 'SAVE'
    just do a where used list of this FM to check how this can be used
    Regards
    Raja

  • FM to Update Maintenance View

    Hi There,
            I want to update the Maintenance View so that the dependent tables must be updated as in SM30 transaction, rather by using Update statement.
    However can I update the maintenance view using the Update statement, as I am unable to select the data from it.
    Is there any FM which serves this purpose.
    Regards,
    Anil .

    Check the ENQUEUE_MODE... if it is 'S' or 'E' type.
    Lokesh

  • Very Urgent:How to view an object from different angles around 360degrees

    Hello
    My problem is that i want to view an object which is drawn on the canvas3d in the simpleuniverse from all angles...i mean around 360degrees.
    Suppose i have a front view... and i wan to look at the view..at 30 degree ..
    plz help me
    this is urgent
    regards
    seema

    Thanks Titus76. Your technique works. But one more problem. I want to rotate my all the three axis through some specified angle. In other words I want to rotate my viewport. In previous case if I implement ur suggestion only my object rotates, but not axis'. Now I want to rotate my all 3 axis. So that when I rotate, all my three axis rotate. This way my objects should obviously rotate. How will I do that?
    Regards

  • Structure problem very urgent .It is view

    Hi .
    How can I  select RFIDTRBOE structure or view I am not sure . It gives an error (it is not defined in abap dictionary as a table )
    Thanks
    Message was edited by:
            yanut

    Hi Yanut,
    RFIDTRBOE is a dictionary structure. Structures are not defined in the database but in ABAP dictionary.
    The only usage I could find was in the report programs
    RFIDTRBOE1 Bill of Exchange Transactions (Greece, Thailand, Turkey)
    RFIDTRBOE2 Reversal of Bill of Exchange Transactions (Thailand, Turkey)
    The structure fields
    KTOPL     Chart of Accounts
    BUKRS     Company Code
    KOART     Account Type
    UMSKS     Special G/L Transaction Type
    BANKN     G/L Account Number
    BANKM     G/L Account Number
    BANKO     G/L Account Number
    PORT1     Bill of Exchange Portfolio
    PORT2     Bill of Exchange Portfolio
    PORT3     Bill of Exchange Portfolio
    PORT4     Bill of Exchange Portfolio
    PORT5     Bill of Exchange Portfolio
    PORT6     Bill of Exchange Portfolio
    UMSKZ     Special G/L Indicator
    LIFNA     Account Number of Vendor or Creditor
    VALUT     Value Date
    WAERS     Currency Key
    KURSF     Exchange rate
    are used in financial accountings. Study the above programs to find out how the data are retrieved from BKPF, BSEG and other tables.
    Regards,
    Clemens

  • Very urgent mm classification view

    hi all,
    am an abap guy ,am uploading a data in tran mm01 where my functional consultant is not selecting classical view can lsmw work without it coz am getting an error even my functional consultant is not sure that can it work without classical view can u plz reply now as am not able to proceed furher am just waiting plz thanks

    you can also use BAPI_MATERIAL_SAVEDATA and programm the import. it's much better instead of lsmw for articles. just as you said. if you forget a tab or view you can start all over again. you can also start all over again in the future when you modified the screens or views for mm01 in customizing
    here an example of my import for this bapi
    FORM inlezen_data.
      LOOP AT it_art_import INTO wa_art_import.
    *INITIALISATIE van de Views
        h_headdata-material = wa_art_import-material.
        h_headdata-ind_sector = 'O'.
        h_headdata-matl_type = c_matl_type.
        IF pa_basic = 'X'.
          h_headdata-basic_view = 'X'.
        ENDIF.
        IF pa_sales = 'X'.
          h_headdata-sales_view = 'X'.
        ENDIF.
    *  PURCHASE_VIEW
    *  MRP_VIEW
    *  FORECAST_VIEW
    *  WORK_SCHED_VIEW
    *  PRT_VIEW
        IF pa_stora = 'X'.
          h_headdata-storage_view = 'X'.
        ENDIF.
    *  WAREHOUSE_VIEW
    *  QUALITY_VIEW
        IF pa_accnt = 'X'.
          h_headdata-account_view = 'X'.
          h_headdata-cost_view = 'X'.
        ENDIF.
    *  INP_FLD_CHECK
    *  MATERIAL_EXTERNAL
    *  MATERIAL_GUID
    *BASISGEGEVENS
        IF wa_art_import-matl_group IS NOT INITIAL.
          h_bapi_mara-matl_group = wa_art_import-matl_group.
          h_bapi_marax-matl_group = 'X'.
        ENDIF.
        IF wa_art_import-old_mat_no IS NOT INITIAL.
          h_bapi_mara-old_mat_no = wa_art_import-old_mat_no.
          h_bapi_marax-old_mat_no = 'X'.
        ENDIF.
    *    IF wa_art_import-base_uom_iso IS NOT INITIAL.
    *      h_bapi_mara-base_uom_iso = wa_art_import-base_uom_iso.
    *      h_bapi_marax-base_uom_iso = 'X'.
    *    ENDIF.
        IF wa_art_import-base_uom IS NOT INITIAL.
          h_bapi_mara-base_uom = wa_art_import-base_uom.
          h_bapi_marax-base_uom = 'X'.
        ENDIF.
        IF wa_art_import-dsn_office IS NOT INITIAL.
          h_bapi_mara-dsn_office = wa_art_import-dsn_office.
          h_bapi_marax-dsn_office = 'X'.
        ENDIF.
        IF wa_art_import-size_dim IS NOT INITIAL.
          h_bapi_mara-size_dim = wa_art_import-size_dim.
          h_bapi_marax-size_dim = 'X'.
        ENDIF.
    *VERKOOPGEGEGEVENS
        h_bapi_mvke-sales_org = p_sales.
        h_bapi_mvke-distr_chan = p_distr.
        h_bapi_mvke-delyg_plnt = p_plant.
        IF wa_art_import-acct_assgt IS NOT INITIAL.
          h_bapi_mvke-acct_assgt = wa_art_import-acct_assgt.
          h_bapi_mvkx-acct_assgt = 'X'.
        ENDIF.
        IF wa_art_import-mat_pr_grp IS NOT INITIAL.
          h_bapi_mvke-mat_pr_grp = wa_art_import-mat_pr_grp.
          h_bapi_mvkx-mat_pr_grp = 'X'.
        ENDIF.
        h_bapi_mvkx-sales_org = p_sales.
        h_bapi_mvkx-distr_chan = p_distr.
        h_bapi_mvkx-delyg_plnt = 'X'.
    *PLANT GEGEVENS
        h_bapi_marc-plant = p_plant.
        h_bapi_marc-availcheck = 'KP'.
        h_bapi_marc-neg_stocks = 'X'.
        h_bapi_marc-profit_ctr = p_profit.
        h_bapi_marcx-plant = p_plant.
        h_bapi_marcx-availcheck = 'X'.
        h_bapi_marcx-neg_stocks = 'X'.
        h_bapi_marcx-profit_ctr = 'X'.
    *MAGAZIJNGEGEVENS
        h_bapi_mard-plant = p_plant.
        h_bapi_mard-stge_loc = p_stge.
        h_bapi_mardx-plant = p_plant.
        h_bapi_mardx-stge_loc = p_stge.
    *WAARDERINGSGEGEVENS
        h_bapi_mbew-val_area = p_val.
        h_bapi_mbew-val_class = '5322'.
        h_bapi_mbew-price_ctrl = 'V'.
        h_bapi_mbew-price_unit = '10000'.
        h_bapi_mbew-plndprice1 = '0.01'.
        h_bapi_mbew-plndprdate1 = '20060101'.
        h_bapi_mbewx-val_area = p_val.
        h_bapi_mbewx-val_class = 'X'.
        h_bapi_mbewx-price_ctrl = 'X'.
        h_bapi_mbewx-price_unit = 'X'.
        h_bapi_mbewx-plndprice1 = 'X'.
        h_bapi_mbewx-plndprdate1 = 'X'.
    *TEKST TABEL
        DATA: ta_bapi_makt LIKE bapi_makt OCCURS 0.
        DATA: wa_bapi_makt LIKE LINE OF ta_bapi_makt.
        IF wa_art_import-matl_desc IS NOT INITIAL.
          CLEAR ta_bapi_makt[].
          wa_bapi_makt-langu = 'NL'.
          wa_bapi_makt-matl_desc = wa_art_import-matl_desc.
          APPEND wa_bapi_makt TO ta_bapi_makt.
        ENDIF.
    *BELASTINGCLASSIFICATIE TABEL
        DATA: ta_bapi_mlan LIKE bapi_mlan OCCURS 0.
        DATA: wa_bapi_mlan LIKE LINE OF ta_bapi_mlan.
        IF wa_art_import-taxclass_1 IS NOT INITIAL.
          CLEAR ta_bapi_mlan[].
          wa_bapi_mlan-depcountry = 'NL'.
          wa_bapi_mlan-tax_type_1 = 'MWST'.
          wa_bapi_mlan-taxclass_1 = wa_art_import-taxclass_1.
          APPEND wa_bapi_mlan TO ta_bapi_mlan.
          wa_bapi_mlan-depcountry = 'NL'.
          wa_bapi_mlan-tax_type_1 = 'MWSI'.
          wa_bapi_mlan-taxclass_1 = wa_art_import-taxclass_1.
          APPEND wa_bapi_mlan TO ta_bapi_mlan.
        ENDIF.
        CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
          EXPORTING
            headdata                   = h_headdata
            clientdata                 = h_bapi_mara
            clientdatax                = h_bapi_marax
            plantdata                  = h_bapi_marc
            plantdatax                 = h_bapi_marcx
    *   FORECASTPARAMETERS         =
    *   FORECASTPARAMETERSX        =
    *   PLANNINGDATA               =
    *   PLANNINGDATAX              =
            storagelocationdata        = h_bapi_mard
            storagelocationdatax       = h_bapi_mardx
            valuationdata              = h_bapi_mbew
            valuationdatax             = h_bapi_mbewx
    *   WAREHOUSENUMBERDATA        =
    *   WAREHOUSENUMBERDATAX       =
           salesdata                  = h_bapi_mvke
           salesdatax                 = h_bapi_mvkx
    *   STORAGETYPEDATA            =
    *   STORAGETYPEDATAX           =
    *   FLAG_ONLINE                = ' '
    *   FLAG_CAD_CALL              = ' '
    *   NO_DEQUEUE                 = ' '
         IMPORTING
           return                     = h_return
         TABLES
           materialdescription        = ta_bapi_makt
    *   UNITSOFMEASURE             =
    *   UNITSOFMEASUREX            =
    *   INTERNATIONALARTNOS        =
    *   MATERIALLONGTEXT           =
            taxclassifications         = ta_bapi_mlan
    *   RETURNMESSAGES             =
    *   PRTDATA                    =
    *   PRTDATAX                   =
    *   EXTENSIONIN                =
    *   EXTENSIONINX               =
        WRITE h_return-message.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    *     EXPORTING
    *       WAIT          =
    *     IMPORTING
    *       RETURN        =
        CLEAR wa_art_import.
        CLEAR h_bapi_mara.
        CLEAR h_bapi_marc.
        CLEAR h_bapi_mard.
        CLEAR h_bapi_mvke.
        FREE ta_bapi_mlan.
        FREE ta_bapi_makt.
      ENDLOOP.
    kind regards

  • Updates through a maintenance view

    Hi,
    I'm having difficulty with maintenance views. I thought it ws possible to construct a maintenance view consisting of two or more tables and be able to update non-key fields in any table, provided the tables were linked via FK and had suitable cardinality of C:1.
    However, this seems to be what I've found: you can only update non-key fields in the primary table. Although fields in the secondary tables appear as though you can update them (via SM30), any data changes you make are erased (as you look at it!) when you hit Save - the original value returns.
    Is my assessment correct? SAP Help is vague and ambiguous on the matter.
    Also, maybe someone could explain the cardinality requirements. SAP Help states the FKs must have N:1 cardinality, but as far as I can see it should be C:1.
    Thanks,
    T.

    Hello Tenchy
    You are talking about view clusters (SE54) where you have hierarchical linked tables that can be maintained together.
    Obviously, you cannot edit key fields of the primary table. Instead you need to use execute two operations:
    - DELETE entry
    - CREATE new entry
    It goes without saying that the same operations are propagated to the dependent entries in secondary tables.
    The cardinality between primary table and secondary table should be 1:N meaning
    - for each entry in the primary table you can have none or multiple entries in the secondary table
    - you cannot have secondary records for which the corresponding primary record does not exist
    Regards
      Uwe

  • Update a maintenance view.

    Hi ,
    I want to update a maintenance view.
    Data is coming from a text file which i am uplaoding.
    Which function module should I use to update the maintenence view.
    Thanks,
    Ram.

    hi,
    use this FM VIEW_MAINTENANCE_CALL
    hope it will work.
    use this code .
    &----& Report  Z_TEST_PROGRAM&--*& Demo program for blog http://abap-explorer.blogspot.com/&--
    REPORT  z_test_program.DATA:i_sellist TYPE STANDARD TABLE OF vimsellist INITIAL SIZE 0,i_header  TYPE STANDARD TABLE OF vimdesc INITIAL SIZE 0,i_namtab  TYPE STANDARD TABLE OF vimnamtab INITIAL SIZE 0.PARAMETERS: p_view TYPE viewname MATCHCODE OBJECT viewmaint OBLIGATORY.AT SELECTION-SCREEN.CALL FUNCTION 'VIEW_GET_DDIC_INFO' EXPORTING   viewname                    = p_view     VARIANT_FOR_SELECTION       = ' ' TABLES   sellist                     = i_sellist   x_header                    = i_header   x_namtab                    = i_namtabEXCEPTIONS  no_tvdir_entry              = 1  table_not_found             = 2  OTHERS                      = 3         .IF sy-subrc <> 0. data: l_message type NATXT. CONCATENATE 'Table/View' p_view INTO l_message SEPARATED BY space. MESSAGE e001(00) WITH l_message ' not in the Dictonary'.ENDIF.START-OF-SELECTION.CALL FUNCTION 'VIEW_MAINTENANCE_CALL' EXPORTING action                               = 'S' view_name                            = p_viewEXCEPTIONS  client_reference                     = 1  foreign_lock                         = 2  invalid_action                       = 3  no_clientindependent_auth            = 4  no_database_function                 = 5  no_editor_function                   = 6  no_show_auth                         = 7  no_tvdir_entry                       = 8  no_upd_auth                          = 9  only_show_allowed                    = 10  system_failure                       = 11  unknown_field_in_dba_sellist         = 12  view_not_found                       = 13  maintenance_prohibited               = 14  OTHERS                               = 15         .IF sy-subrc <> 0. MESSAGE i001(00) WITH 'Error while calling the view'. LEAVE LIST-PROCESSING.ENDIF.
    Edited by: katigiri linganna on Apr 20, 2009 4:31 PM

  • Update Routine ... Help me Please--VERY URGENT

    Hi All ,
    I Moving data from Cube to ODS . Let me explain abt the records in the cube .
    There are 6 key figures in the cube as well as dimensions, UNIQKEY TRANSACTION is One Dimension and ARTICLE is another dimension which is having an Navigational attribute called CORE ELEMENT.
    I am showing the data with those two dimension and the key figures which are to be used in the routine.
    Charc----
    Key Figures
    UNIQKEY-ARTICLE-Coreelement--
    billqty     
    in base unit
    A00N----1006330--1--
    10.5
    A00M -
    1006320----2--
    2.5
    A00P-----1006330--1--
    10.5  
    A00P-----1006320--2--
    2.5
    A00Q-----1006320--2--
    2.5
    A00Q-----1006340--3--
    10.5
    Now Lets see what the core element numbers mean,
    core element 1 means -- fuel .
    Core elemnet other 1 -- food .   
    I need to move these data into ODS Which will have an extra field called No of items in the transaction --ITEMS.For this i need to write  a routine .
    The Logic is ...
    1.if Materail is of type 1(Means if the core element - 1)
    I need to Populate the No of items in tnx = 1 .--ITEMS.
    2.If Material is of type(Means if the core element)2or 3 I need to populate the billing quantity to the no of transcations.--ITEMS
    3. If the Uniqkey tanscation contains two line items as  suppose that you have 20 litres of fuel and 2 cans of coke, then No of Items in the transaction should be 3 and Billing Quantity in BUoM 22
    billing quantity in BUoM = 20 litres for the first line item and 2 for the second line item...
    then as the first line item is fuel, field No OF Items in the Transcation should be 1 (replacing the 20) + 2 = 3
    so the final result in the ODS should be billing quantity in BUoM = 22 and The Items in the Transcation= 3
    So the ODS Data should look like this.
    UNIQKEY--billqty--
    ITEMS
    in base unit 
    A00N--10.5--
    1
    A00M--2.5--
    2.5
    A00P--13--
    3.5
    A00Q--13--
    12.5  
    NOTE : IN the ODS only the UNIQKEY IS THE KEY FIELD and the rest are DATA FIELDS.
    I Posted this one before also. But didnt get proper responses.
    I am Pasting the piece of code which I have written . This code will work for the first two records in the cube , But it is failing for the UNIQKEY Transcation having Line items.
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: /BI0/PMATERIAL.
    DATA: TITEMS LIKE /BIC/AZPOCODS00-/BIC/ZTITEMS,
           CORE_ELEMENT like /BI0/PMATERIAL-RPA_WGH1.
    $$ end of global - insert your declaration only before this line   -
    FORM compute_data_field
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
      USING    COMM_STRUCTURE LIKE /BIC/CS8ZPOCTUS04
               RECORD_NO LIKE SY-TABIX
               RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING RESULT LIKE /BIC/AZPOCODS00-/BIC/ZTITEMS
               RETURNCODE LIKE SY-SUBRC "Do not use!
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal table "MONITOR", to make monitor entries
    check not COMM_STRUCTURE-material is initial.
      select SINGLE RPA_WGH1
            INTO CORE_ELEMENT
            from /BI0/PMATERIAL
            where
            material = COMM_STRUCTURE-material
            and  OBJVERS <>'D'.
       IF CORE_ELEMENT EQ '1'.
       TITEMS = '1'.
         CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
           EXPORTING
             input         = titems
          IMPORTING
            OUTPUT        = titems
       ELSE.
       TITEMS = COMM_STRUCTURE-BILL_QTY.
       ENDIF.
    result value of the routine
      RESULT = TITEMS..
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    PLease give me ideas on how to acheive this . As I am not Aware of ABAP very well.. PLease try to give me the code. I hope one of you may got the same requirement before.
    Its very urgent and I need to deliver it today itself.
    Thanks in advance , you can mail me to [email protected]. If anybody intersted to discuss this Issue they can reach at +91 9845922955.

    Hi ,
    While I am moving the data from cube to ods . I need to create the update rules with cube -- 8cube . WHen i am doing this the billqty is a key figure in cube so that is not a problem but the ITEMS is not there in the cube ,SO for that I need to write a routine to populate that one.
    Its strange but the user what to analyse with the UNIQKEY transaction. And these objects will be added as navigational attributes to the Characteristic. as it acts as another dimension.
    He wants to laod these from ODS to Master data -Characteristic.
    to say for each transcation hpw many items are getting sold.
    Message was edited by: Nagarjuna Reddy
    ONce again thanks for the qucik replies
    Message was edited by: Nagarjuna Reddy

  • UPDATE ROUTINE --- CUBE --- ODS Very Very URGENT

    Hi Collegues/Friends ,
    First I need to thank for the intiators of this site , as I came to know that for many
    problems we will get different best solutions ... Hoping the same I am posting a question
    which is very very very urgent as the client is running after me for this .
    My Requirement is as Follows. ..
    I Moving the data from Cube to ODS . While i need to write a routine for an extra field in
    ODS based on Billing Quantity in Base Unit of Measure . The Key Field in the ODS Is UNIQKEY
    Transaction and It is a Characterstic in the Cube and we have MAterial as another
    Characteristic  and core element as navigational attribute .
    In the Cube for every UNIQKEY transaction- there are more than One line items. 
    My data fields in the ODS are Billing Quantity in Base Unit of MEasure and and EXTRA FIELD
    : No of Items in Transaction . But the thing is that I have only Billing Quantity in Base
    Unit of Measure in cube as a key figure
    BAsing on the UNIQKEY transcation and Billing Quantity In Base Unit Of Measure I need to
    populate the No of Items in Transaction... For this i need to write a routine .
    Let suppose say that for the Materials the core elements are as follows
    Material  Core element
    10         1 -- fuel -- In liters
    20         2 -- Cigar - in PAck
    30         3 -- Coke - in Cans
    Now Lets see how the records are there in InfoCUbe
    Uniqkey  /  Material  / Core element /Billin Quantiy
    A          /   10      /     1        /    22
    B          /   30      /     3        /    2
    C          /   10      /    1         /  15
    C          /   30      /     3        /     2
    D          /   20      /     2        /    10
    D          /   30      /     3        /    2
    And IN the ODS -- I need to Populate the No OF items in Transaction.
    the Logic behind this as follows .
    1.if Materail is of type  1(Mean if the core element - 1)
    I need to Populate the No of items in tnx = 1
    2.If Material id of type 2 or 3 I need to populate the billing quantity to the no of
    transcations.
    3. If the Uniqkey tanscation contains two line items as  suppose that you have 20 litres of
    fuel and 2 cans of coke, then No of Items in the transaction should be 3 and Billing
    Quantity in BUoM 22
    billing quantity in BUoM = 20 litres for the first line item and 2 for the second line
    item...
    then as the first line item is fuel, field No OF Items in the Transcation should be 1
    (replacing the 20) + 2 = 3
    so the final result in the ODS should be billing quantity in BUoM = 22 and The Items in the
    Transcation = 3
    For this I have Written a Rouinte like this for that field
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: /BI0/PMATERIAL.
    DATA: TITEMS LIKE /BIC/AZPOCODS00-/BIC/ZTITEMS,
           CORE_ELEMENT like /BI0/PMATERIAL-RPA_WGH1.
    $$ end of global - insert your declaration only before this line   -
    FORM compute_data_field
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
      USING    COMM_STRUCTURE LIKE /BIC/CS8ZPOCTUS04
               RECORD_NO LIKE SY-TABIX
               RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING RESULT LIKE /BIC/AZPOCODS00-/BIC/ZTITEMS
               RETURNCODE LIKE SY-SUBRC "Do not use!
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal table "MONITOR", to make monitor entries
    check not COMM_STRUCTURE-material is initial.
      select SINGLE RPA_WGH1
            INTO CORE_ELEMENT
            from /BI0/PMATERIAL
            where
            material = COMM_STRUCTURE-material
            and  OBJVERS <>'D'.
       IF CORE_ELEMENT EQ '1'.
       TITEMS = '1'.
         CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
           EXPORTING
             input         = titems
          IMPORTING
            OUTPUT        = titems
       ELSE.
       TITEMS = COMM_STRUCTURE-BILL_QTY.
       ENDIF.
    result value of the routine
      RESULT = TITEMS..
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    Does it satisfy all the conditions ?? mentioned above if . As far As i know as the only key
    field in the transcation it will satisfy the first two conditions .
    I want to know or If possioble anybody pls take some pain for me to send the code or any
    Ideas for satisfying all the conditions.
    Hope I will get immediate replies....
    Mail me to [email protected]

    Reddy,
    Please do not post in all sections ... makes it hard to follow up on posts..
    Arun

  • Add fields to maintenance view and update then using events

    Hi experts:
      I've created a table with 4 fields, one of them is userid. Also, there is a maintenance view to add new entries.
      I want to display user name when typing userid using events (1 or 21). I know how to do it if username is one of the fields of the table, but there is a requirement to not store username in the table, just userid.
    My question is: is possible to add a field into the maintenance view and update it using events but not store the value in DB?.
    Thanks in advance for your help.
    Regards,
    Carlos.

    In the save event just clear the entries of the field(user name) in the internal table.

  • Maintenance View - update field on SAVE

    Hi folks,
    I need to create a maintenance view on top of a table. If a user modifies and saves one field I would like to set a time stamp in a further field of the same table. How do I have to do that?
    Thanks for your help.

    In the se11 -> table maintenance generator ->  Environment -> Modification -> Events
    Here you can create routine to add a time stamp to automatically add when some user will modify / update any table row.
    Kuntal

  • Very urgent help - for update field1 nowait across databaselink

    Hi,
    We have a form that uses select for update field1 nowait for a table that is accessed across a database link. When we try to do this the form errors out giving frm-92101 error. If I comment out the for update statement then it works fine. I know it the for update that is causing the problem but I'm not sure how to fix it. Can someone help me please. Very urgent, we are in the middle of upgrade and we found this issue while testing the forms.
    Any ideas or suggestions ?
    I'm using 10g App.Server and 10g database.
    Please help.
    Thanks in advance.

    under which trigger you ran that update ?

  • Very Urgent.......How to update the database values through OAF pages ??

    Hi All,
    I am developeing some self service application thru Oracle Application Framework(OAF). There I am fetching 5 attributes from the database and displaying those attributes in my main page Table Region. Now my requirement is i want to edit that exising values & again i want to store it in the databse while clicking the update button. so first i have created one VO for fetching the values from the database & i make one Table Region in my main page along with 5 MessageTextInput field.. & i mapped that VO's attributes to my textbox.Now i can able to fetch & display the values inside the text box while rendering the page.
    But I dont know how to update the values in the database. Caz in my VO I have only select query. So anyone plz send me the code for update. And also plz let me know where to insert that code..whether (CO or AM or EO)..it is very urgent.
    Thanks
    srini

    David,
    Note that the default JavaBean datacontrol does not allow create/remove and transaction operations. These apis are not implemented for the JavaBean datacontrol.
    You may re-initialize the rowsetiterator, by calling ((oracle.adf.model.generic.DCRowSetIteratorImpl)iteratorBinding.getRowSetIterator()).clearCurrentData().
    This will force the RSI to refresh it's data via the named-accessor again.

Maybe you are looking for

  • Problem authorizing my computer?

    have my iphone plugged in, trying to sync a new playlist. itunes is telling me that this computer is no longer authorized for application stored on this iphone. and that I need to authorize this computer. When I try, it tells me that there was an err

  • 403 Forbidden error calling PL/SQL Procedure from URL

    I am getting a 403 Forbidden browser error when calling a PL/SQL procedure from the URL, as in this: http://<server.port>/apex/SCHEMA.procedure_name/f?p_param1=394&p_param2=2, etc We are upgrading from HTMLDB 2.0 to APEX 4.0.2. I do not believe the u

  • Ipod Classic not responding in i-tunes

    My ipod classic is coming up with an error message in my i-tunes account stating there is a problem with this drive and that my ipod is not responding. Also, before I plug my ipod into the computer the itunes is working fine then when I plug it in, i

  • What's time Chinese users can use 8330 to send Chinese SMS?

    Is there any plans to support Chinese text messages on 8330? what's time Chinese users can use 8330 to send Chinese SMS? Look forward to attach importance to Chinese users, thank you! Best Regards!

  • Text in shopping cart

    hi, Could any on tell me how to clean up the vendor text that is coming from a punchout external catalog into the Shopping cart.. it is replacing some special charecters with # and every next line with ~. Regards Sunny