Update update_customer_profile - Raju Kumar

Hi Friends,
Please help me to sort out this problem in hz_customer_profile_v2pub.update_customer_profile
i need update NULL value in hz_customer_profiles table by using this API
on these three columns
next_credit_review_date= NULL,
last_credit_review_date= NULL,
review_cycle=NULL
Please help me to sort out this issue
Regards
Raju Kumar

968417 wrote:
Hi Friends,
Please help me to sort out this problem in hz_customer_profile_v2pub.update_customer_profile
i need update NULL value in hz_customer_profiles table by using this API
on these three columns
next_credit_review_date= NULL,
last_credit_review_date= NULL,
review_cycle=NULL
Please help me to sort out this issue
Regards
Raju KumarIf this is a standard Oracle Apps table, then you should ask in the Oracle Apps forum
If this is NOT a standard Oracle Apps table, then you should ask in the SQL/PLSQL forum - and then only AFTER reading the FAQ on how to ask for help.
no one in this forum know about your tables. And if this isn't standard Oracle Apps, no one in ANY forum knows about your tables until you supply that information as outlined in the aforementioned FAQ

Similar Messages

  • TS1702 After updating to iOS 6, apps stopped installations and showing 'waiting'

    After updating to iOS 6, apps stopped installations and showing 'waiting'
    I can't delete and install again because there are almost 20 applications like this.
    iPad 2 on iOS 6
    I tried by restarting iPad. Still it's not working.
    I have almost 20 applications showing in 'updates' in App Store. I selected 'Update all'. But iPad not installing those updates.
    Thanks,
    Kumar

    It's never a good idea to select Update All - IMO. That's when things start going wonky. Only one thing can download at a time anyway.
    Make sure that you do not have a stalled download in iTunes - a song or podcast, TV show  .... if you have a download in there that did not finish, complete that one first. Only one thing can download at a time on the iPad so that could be what is causing the problem.
    If that doesn't work - sign out of your account, restart the iPad and then sign in again.
    Settings>Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>Store>Sign in and then try to update again. Tap one waiting icon only if necessary to start the download stream.

  • Where to put the Licecse key of Weblogic 7.0

    I have installed an Evaluation Version of Weblogic 7.0. I have also downloaded the required xml file. Please let me know as how to use this xml file to run my weblogic server.
    Thanks
    Amit Kumar

    put license under the root (c:\bea) & run update license.
    amit kumar <[email protected]> wrote:
    I have installed an Evaluation Version of Weblogic 7.0. I have also downloaded
    the required xml file. Please let me know as how to use this xml file
    to run my weblogic server.
    Thanks
    Amit Kumar

  • FrameMaker 8.0.3 patch available

    The latest FrameMaker patch, version 8.0.3 or 8.0p276, has just gone
    live and is available via auto-updater. Mahesh Kumar Gupta has posted
    the announcement and a long list of fixes:
    http://blogs.adobe.com/techcomm/2008/05/framemaker_803_available.html

    In addition to the problems with cross-reference markers, it seems that Variables are affected as well. I use WebWorks ePublisher Pro 9.2 build 10315 to convert my FM8 documents to CHM or other formats. After applying this patch, the variables now appear blank in ePublisher Pro and in the output.
    I tried uninstalling the patch and that did not work. I saved my document as FM7.2 and ran it through ePublisher Pro again, and it worked, the Variables were populated.
    I have put in a support request to Adobe and will share their response with the forum.

  • Prodution Order Quantity

    Hi,
    Please clarify me when the commited qty in Prodution order component overview will get updated.
    In My case one of my prodution order comitted qty is missing.can any one tell me the possibile resons why this is not getting updated.
    Cheers,
    Kumar.S

    Dear Kumar,
    Sorry wrong reply,
    As mentioned by vinod, it will get updated in production order after availability check  .
    Rgds,
    Manish

  • 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".

  • Is their any limit on the number of column updates in a update statement!

    Hello All,
    Is their any limit on the number of columns to set in a single update statement.+
    am using oracle 11g .
    example :-
    UPDATE FMLY SET as_comp1 = v_as_comp1 , as_comp2 = v_as_comp2, as_comp3 = v_as_comp3, as_comp4 = v_as_comp4 , as_comp5 = v_as_comp5 ,      perslt18 = v_perslt18 , persot64  = v_persot64  , fam_size = v_fam_size , numchild = total_children , C_AGE1 = v_c_age1,  C_AGE2 = v_c_age2,  C_AGE3 = v_c_age3,  C_AGE4 = v_c_age4 WHERE FAMID = fmly_famid(i) ;
    and also is it good practice to issue single update or multiple updates ?
    example for the above update i can have multiple statements like .. does the performance matters if so which is good
    UPDATE FMLY SET as_comp1 = v_as_comp1 , as_comp2 = v_as_comp2, as_comp3 = v_as_comp3, as_comp4 = v_as_comp4 , as_comp5 = v_as_comp5
    WHERE FAMID = fmly_famid(i) ;
    UPDATE FMLY SET perslt18 = v_perslt18 , persot64 = v_persot64 , fam_size = v_fam_size
    WHERE FAMID = fmly_famid(i) ;
    UPDATE FMLY SET numchild = total_children WHERE FAMID = fmly_famid(i) ;
    UPDATE FMLY SET C_AGE1 = v_c_age1, C_AGE2 = v_c_age2, C_AGE3 = v_c_age3, C_AGE4 = v_c_age4 WHERE FAMID = fmly_famid(i) ;
    thanks/kumar
    Edited by: kumar73 on Sep 25, 2010 8:38 AM

    If you can do it in a single SQL statement then you should do that.
    Here's a mantra that I found to work out pretty good:
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:73891904732164

  • Need help to insert and update records in MDM

    Hi ,
    I am trying to develop an webdynpro application which can create and update records in tables of a repository of MDM . For example .. I want to insert values and later update values in Vendor table.
    I am new to webdynpro and MDM. If any one can help step by step or can send a sample code which I can be ready to use that would be great help.
    If anyone can have a sample code .. kindly mail to "[email protected]"
    It is urgent. Please help.
    Regards,
    Niraj
    Edited by: Niraj Kumar on May 23, 2008 6:50 AM

    Hi Niraj,
    Are u going to work with webdynpro Java/ABAP?
    some materials which are found useful are sent.
    Cheers,
    Mary

  • ABAP Runtime error while activating Update rules.

    Hi Gurus,
    Actually we are in NW 2004's SP9.
    While activating the update rules of cube "0PY_PPC01" it is going to ABAP runtime error. It is giving the key words like "MESSAGE_TYPE_X"
    "%_T005K2" or "INSTANTIATE". And i apply NOTEs also i am unable to fix it.
    Can any one give  correct NOTE number that can fix it or any suggestions.
    Thanks in advance.
    Thanks
    Raju.k

    Hi Sven,
    Now we are also in SP11, But the thing is all the other UR are working fine Except
    this UR. Even there is no perticular NOTE number for this.
    Thanks
    Raju.k

  • BAPI_PO_CHANGE not updating internal order no. in account assignment

    Hi,
    I am using 'BAPI_PO_CHANGE' to update the internal order no.
    I am first fetching the existing account assignment line items using 'BAPI_PO_GETDETAIL1' and then modifying the internal order no. as below.
            lt_poaccount-orderid = '310021000000'.
            MODIFY lt_poaccount INDEX lv_poacc_tabix TRANSPORTING orderid.
            lt_poaccountx-po_item = gt_po-ebelp.
            lt_poaccountx-orderid = 'X'.
            APPEND lt_poaccountx.
    but while calling the BAPI, the original values are returned and the message is 'No Data Changed'.
        CALL FUNCTION 'BAPI_PO_CHANGE'
          EXPORTING
            purchaseorder = gt_distinct_po-ebeln
          TABLES
            return        = lt_return
            poaccount     = lt_poaccount
            poaccountx    = lt_poaccountx.
    (The internal order no. is different than the original)
    Can somebody please assist me on this?
    Thanks in advance.

    Hi Kumar,
    I recommend you to try changing the internal order manually through transaction ME22N and see if that is possible in your system first.
    After that if that isn't possible you should contact your MM Expert for advise.
    Regards,
    Gilberto Li

  • MARDH table update

    Dear Experts,
    We have a Z report for Stock on posting date(similar to MB5B with some addons as per client reqmt) and we have used MARDH table for opening stock for any period in that report. But we face problems now as this table is not getting updated properly. Is there anyway to update the MARDH table for every period for material and storage location combination? Else can we use any other table for Stock on posting date report?
    Regards,
    Ravi Kumar

    As of Release 4.5, stock and valuation fields that refer to the previous
    period or those dating back even farther, are not stored in those tables
    in which the current stock data is stored (MBEW, MARD, MCHB, and so on)
    but in so-called history tables (MBEWH, MARDH, MCHBH, and so on.).
    (Also compare release note for period closing as of Release 4.5)
    These history tables can have one entry per period. The values of such
    an entry refer to the end of the period. For the current period, there
    are no entries in the history tables. An entry is not written in this
    history table for every period. If stock-relevant or valuation-relevant
    data change, the system might generate an entry in the history table.
    Furthermore, the fields LFMON ('Current Period (Booking period)') and
    LFGJA ('Fiscal Year of the Current Period') in the stock tables are no
    longer automatically set to the current period by the period closing
    program. The period is only transferred to the new period during the
    first movement. At the same time, the relevant history entries are also
    generated.
    You can refer to SAP note 193554 for more information.
    What is the addons that required by your client ?

  • Cannot wake up from sleep after updating to Windows 8.1 - version T540p

    Hello,
    I updated to Windows 8.1 on my ThinkPad T540p. Now if the laptop goes to sleep mode the laptop display does not wake up again.  I have 2 extra dislpays connected to my computer through a dock. They work fine even though the display on the laptop does not show anything. If I restart the computer all 3 displays work fine. Can you please help me solve this.
    Greetings

    Hi Sjonasson,
    We are very sorry to hear that the issue still persists, can you verify if the issue still persists when you disconnect the Laptop from docking station and connect any one of the external monitor and check it the sleep option is working.
    And regarding the drivers update please try with manually updating the drivers from the following steps.
    Download the graphics driver ZIP file.
    Unzip the file to a designated location or folder.
    Click Start.
    Right-click Computer > Manage. When prompted for permission from User Account Control, click Yes.
    Select Device Manager from the navigation tab on the left.
    Double-click Display Adapters.
    Right-click the Intel® Graphics Controller and click Update Driver Software.
    Click Browse my computer for driver software.
    Click Browse and select the directory where the driver files are located.
    Click Next. Drivers are now being installed.
    Reboot computer when prompted.
    Hope this helps.
    Best regards,
    Hemanth Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Optimize the following update on per_all_assignments_F

    Hi
    I am trying to optimize this sql which is taking a long time to complete.
    declare
    cursor c1 is
    select person_id, annual_rt from xxdl.xxdl_papf_scrambling_view;
    begin
    for i in c1
    loop
    update PER_ALL_ASSIGNMENTS_F
    set as_attribute4 = i.annual_rt
    where person_id = i.person_id
    end loop;
    end;
    There are indexes on ass_attribute4, i.annual_rt, person_id, i.person_id.
    per_all_assignments_f is a standard oracle apps table.
    xxdl.xxdl_papf_scrambling_View is a custom table that I created by joining some columns in per_all_people_f and some other views and tables in peoplesoft database. Basically the objective is to scramble the data in oracle based on already scrambled data in peoplesoft. So I create xxdl_papf_scrambling_view using info from psft database (over a db link) and then try to use the information in the custom table to update the ebusiness tables on oracle financials. The updates appears to be working except that some of them like the one above are slow.
    I tried using a corelated update (but it does not work because single row subquery returns more than one row and I was not sure how to join these tables to make it return one row based on how I created the above tables)
    and I used bulk collect and forall but the performance is not any better.
    Any ideas or suggestions.
    Thank you
    Kumar
    Edited by: Kumar Madduri on Nov 2, 2009 6:55 AM

    Hi
    I tried that approach already but the subquery returns more than one row.
    ERROR at line 2:
    ORA-01427: single-row subquery returns more than one row
    and this one runs in roughly one hour which I am trying to further reduce
    declare
    cursor c1 is
    select person_id, annual_rt from xxdl.xxdl_papf_scrambling_view;
    type pid_tab is table of xxdl.xxdl_papf_scrambling_view.person_id%type;
    type art_tab is table of xxdl.xxdl_papf_scrambling_view.annual_rt%type;
    pid_tab1 pid_tab;
    art_tab1 art_tab;
    begin
    open c1;
    loop
    fetch c1 bulk collect into pid_tab1, art_tab1;
    forall i in 1..pid_tab1.count
    update PER_ALL_ASSIGNMENTS_F
    set ass_attribute4 = art_tab1(i)
    where person_id = pid_tab1(i);
    exit when c1%notfound;
    end loop;
    close c1;
    end;
    Edited by: Kumar Madduri on Nov 2, 2009 7:09 AM

  • Update error while creating production order (TCODE CO01)

    Hello,
    We have created new plant into development server for testing. We have created production Order few days back at that time we have not faced any problem. But from last two days , when we create new production Order , system gives following error:
    ORA-00947: not enough values
    DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB
    SAPLCOVB" or "LCOVBF10"
    HEADER_POST"
    and
    Update was terminated
    System ID....   DEV
    Client.......   500
    User.....   HPLSU
    Transaction..   CO01
    Update key...   4B6E4F48C08D027FE1008000C0A802F3
    Generated....   08.02.2010, 10:35:48
    Completed....   08.02.2010, 10:35:49
    Error Info...   00 671: ABAP/4 processor: DBIF_RSQL_SQL_ERROR
    Our work is held up.
    Please also note that If we increase the QTY in the existing Order ( already created few days back) , System accept the same and Order is saved.
    We are looking for the solution for the above.
    Early reply will be highly appreciated.
    thanks
    harish

    Hi Rishi,
    You better check with your BASIS team.
    Check this link also
    Supervisor Error ADM0015
    Regards,
    Satyajit Kumar
    Edited by: Satyajit Kumar on Feb 8, 2010 7:47 AM

  • Error While Trying to update RPM Second time in the same session as Create

    I am getting this error when I try to update item as soon as I create a new one.
    Error is
    Source type \CLASS=/RPM/CL_PORTFOLIO_O is not compatible, for the purposes of assignment, with target type \CLASS=/RPM/CL_BUCKET_O
    CX_SY_MOVE_CAST_ERROR /RPM/CL_SMODEL_API============CP /RPM/CL_SMODEL_API============CM00E 62
    When I close the browser and come back I am able to update the item properly. I am not sure if there is any kind of locking happening as soon as we create an item.
    In the standard SAP functionality, he is redirecting to item overview.
    Appreciate any help in this regard.
    Thanks,
    Kumar

    Hi Kumar,
    First check if the components cprxrpm and cprxrpm_ui are both on the same level of SP.
    Also make sure the J2EE restart had beem done after the SP upgrade.
    Regards,
    Prashanth

Maybe you are looking for