Open note for S_ALR_87008272 using program RKAZUTR1

Hi Experts,
Please provide open note for S_ALR_87008272 using program RKAZUTR1, to run S_ALR_87008272 in Quality and Production client.
Thanks
Neeraja

Hi,
The t.code S_ALR_87008272 is used to maintain overhead percentages.
Once the percentages maintained in Development system, those percentages will come automatically via request number.
For that purpose you have to run this  program RKAZUTR1  via se38 t.code with request number.
Regards
Ravi Polampalli

Similar Messages

  • Open cur for .. using

    Hi,
    my stmt does not give me any results and i don't how to find the error. It must have to do with the using clause as the statement works, if i call it directly.
      procedure p_get_unique_key
         p_owner varchar2
       , p_table_name varchar2
      IS
        v_count int;
        v_query varchar2(500);
        curid int;
        Type cols IS TABLE OF varchar2(2500);
        v_uk_columns cols;
        TYPE curtype IS REF CURSOR;
        cur      curtype;
      BEGIN
        v_query := '
        select cc.column_name
        from all_constraints c
        join all_cons_columns cc
           on cc.owner = c.owner
          and cc.constraint_name = c.constraint_name
        where c.constraint_type = ''U''
          and c.owner = :1
          and c.table_name = :2  
        dbms_output.put_line(v_query);
        open cur for v_query
        using p_owner, p_table_name;
        FETCH cur BULK COLLECT INTO v_uk_columns;
        DBMS_OUTPUT.PUT_LINE(v_uk_columns.COUNT);
        close cur;
      END;
      Who can help me?
    Tobe

    Why are you using a ref cursor? There is no need for it. Why are you even using a cursor at all in the 1st place when you doing a single (no-loop) fetch?
    When you write code, you need to have justification for why you wrote what you did. To do that, you need to know exactly what each line of code you write does - and knowing that, you can make the call whether that line of code does what is required or not. And to be honest, your code is pretty messy as it uses superfluous concepts (why subtype a ref cursor when you can instead use the sys_refcursor type?) and incorrect and complex approaches (using an explicit ref cursor with manual binding when an implicit cursor is easier).
    For example (and note the proper use of programming language syntax standards regarding pascalcase and camelcase):
    create or replace procedure DoSomethingWithUniqueKey( keyOwner varchar2, tableName varchar2 ) is
      -- not sure why you call it GetUniqueKey as you parameter signature fails to return/get anything for the caller
      type TStrings is table of varchar2(4000);
      colList TStrings;
      ...  other stuff
    begin
      .. other stuff
      select
            cc.column_name bulk collect into ColList
      from all_constraints c
      join all_cons_columns cc
         on cc.owner = c.owner
        and cc.constraint_name = c.constraint_name
      where c.constraint_type = 'U'
        and c.owner = upper(keyOwner)
        and c.table_name = upper(tableName);
        .. other stuff   
    end;Compare the number of lines and readability and maintainability of your code with this.

  • HP Laserjet1012 only prints Not For Commercial Use

    Have HP Laserjet 1012 installed on Dell Latitute E6410 running Windows 7.   Found a You Tube video for setup.  Using port DOT4_001, and HP Laserjet0355 PCL5(Microsoft) driver. 
    Problem:  whentyou print test page, the printout has a black background and Not For Commercial Use printed on a diagonal in white.
    If you open a document to print, it spools to this printer but the message is this Not for Cummercial Use.
    Any ideas???

    Perhaps the application you are using (Word?) is generating the watermark; or perhaps a watermark setting in the printer driver settings?
    What happens if you try to print a simple text document from NotePad?

  • Own Photoshop CS5.1 installed on two iMacs, when using second iMac, rarely used,got error message ~"not authorized to use program" on this second iMac I have two accounts one in my name one in my wife's both share photoshop...was in my wife's account when

    Own Photoshop CS5.1 installed on two iMacs, when using second iMac, rarely used,got error message ~"not authorized to use program" on this second iMac I have two accounts one in my name one in my wife's both share photoshop...was in my wife's account when I got message...never happened on my primary iMac on which I have my own account and one for guest account that doesn't share photoshop....what is wrong..am allowed to install program on two machines?

    Customer Care would have the authority to reset activations. We are basically users such as yourself and can't do this.
    Contact Customer Care
    Gene

  • ERROR Calling OPEN p_cursor FOR SqlStmt USING SqlUsing in 9i

    Hi,
    I have written a following procedure in Oracle 9i:
    CREATE OR REPLACE PROCEDURE SP_GET_APPROVAL_DETAILS
         (TeamID IN VARCHAR2,
         SchemeTypeID IN VARCHAR2,
         StatusCode IN VARCHAR2,
         EmpCatg IN VARCHAR2,
         UserCode IN VARCHAR2,
         p_cursor OUT sys_refcursor)
    AS
    SqlStmt VARCHAR2(2000);
    SqlUsing VARCHAR2(2000);
    SqlWhere VARCHAR2(2000);
    intCounter INTEGER;
    FSSQL          VARCHAR(1000);
    BEGIN
         SqlStmt := 'SELECT A.SCHEME_ID, C.USER_NAME, B.SCHEME_NAME, A.INCENTIVE_CALCULATED, A.INCENTIVE_RELEASED, ';
         SqlStmt := SqlStmt || 'E.INCENTIVE_STATUS_DESC, A.REMARKS ';
         SqlStmt := SqlStmt || 'FROM SCHEME_USER A, SCHEME B, SFA.USER_MASTER C, SCHEME_USER_DESIGNATION D, ';
         SqlStmt := SqlStmt || 'INCENTIVE_STATUS_MASTER E ';
         SqlStmt := SqlStmt || 'WHERE B.SCHEME_ID = D.SCHEME_ID AND A.INCENTIVE_STATUS_ID = E.INCENTIVE_STATUS_ID ';
         SqlStmt := SqlStmt || 'AND C.USER_CODE = A.USER_CODE ';
         intCounter := 1;
         SqlWhere := '';
         SqlUsing := '';
         IF EmpCatg != 'ALL' THEN
              SqlWhere := SqlWhere || 'AND D.DESIG_CODE IN (:' || intCounter || ') ';
              SqlUsing := 'EmpCatg';
              intCounter := intCounter + 1;
         END IF;
         IF TeamID != 'ALL' THEN
              SqlWhere := SqlWhere || 'AND B.ORG_CODE IN (TeamID) ';          
              IF intCounter > 1 THEN
              SqlUsing := SqlUsing || ', TeamID';
              ELSE
              SqlUsing := SqlUsing || 'TeamID';
              END IF;
              intCounter := intCounter + 1;
         END IF;
         IF SchemeTypeID != 'ALL' THEN
              SqlWhere := SqlWhere || 'AND B.SCHEME_TYPE_ID IN (:' || intCounter || ') ';
              IF intCounter > 1 THEN
              SqlUsing := SqlUsing || ', SchemeTypeID';
              ELSE
              SqlUsing := SqlUsing || 'SchemeTypeID';
              END IF;
              intCounter := intCounter + 1;
         END IF;
         IF StatusCode != 'ALL' THEN
              SqlWhere := SqlWhere || 'AND A.INCENTIVE_STATUS_ID IN (:' || intCounter || ') ';
              IF intCounter > 1 THEN
              SqlUsing := SqlUsing || ', StatusCode';
              ELSE
              SqlUsing := SqlUsing || 'StatusCode';
              END IF;
              intCounter := intCounter + 1;
         END IF;
         IF UserCode != 'ALL' THEN
              SqlWhere := SqlWhere || 'AND A.USER_CODE IN (:' || intCounter || ')';
              IF intCounter > 1 THEN
              SqlUsing := SqlUsing || ', UserCode';
              ELSE
              SqlUsing := SqlUsing || 'UserCode';
              END IF;
              intCounter := intCounter + 1;
         END IF;
         SqlStmt := SqlStmt || ' ' || SqlWhere;
         DBMS_OUTPUT.PUT_LINE(SqlWhere);
         DBMS_OUTPUT.PUT_LINE(SqlUsing);
         IF intCounter > 1 THEN
         OPEN p_cursor FOR SqlStmt USING SqlUsing;
         ELSE
         OPEN p_cursor FOR SqlStmt;
         END IF;
    END;
    But when i execute it using
    EXEC SP_GET_APPROVAL_DETAILS('ALL', 'ALL', 'ALL', 'ALL', 'ALL', :OP1);
    it works fine, but i execute it using
    EXEC SP_GET_APPROVAL_DETAILS('DER', 'ALL', 'ALL', 'ALL', 'ALL', :OP1);
    it does not return me any rows from the tables.
    I have tried using EXECUTE IMMEDIATE('OPEN p_cursor FOR SqlStmt USING SqlUsing'); but its not working.
    If any solution to this do let me know.
    Thanks,
    Sunil

    Hello,
    IF TeamID != 'ALL' THEN
    SqlWhere := SqlWhere || 'AND B.ORG_CODE IN (TeamID) ';
    END IF;
    You have put (TeamId) rather than (:TeamId).
    Looking a little close though, I'm pretty sure you're not going to be able to do what you are trying to do with the USING statement as it stands. The reason your statement works for the first call is tha it doesn't appear to populate the SQLUsing variable and so just builds the cursor and doesn't include the USING clause.
    The USING statement in effect creates a "mapping" between each placeholder variable you specify in the sql statement, and an actual variable in the PLSQL block that it is bound to i.e.
    DECLARE
        ls_Sql     VARCHAR2(200);
        ls_Bind1   VARCHAR2(10);
        ln_Bind2   NUMBER(10);
    BEGIN
        ls_Bind1 := 'HELLO';
        ln_Bind2 := 100;
        ls_Sql := 'SELECT count(*) from a_table WHERE col1 = :bind_var1 and col2 = :bind_var2';
        OPEN lcr FOR ls_SQL USING ls_Bind1, ln_Bind2
    ...If you have 2 placeholder variables in the dynamic SQL string, you will need to have 2 variables specified in the USING statement. The documentation at this link shows how oracle deals with duplicate placeholders and dynamic SQL in general.
    http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96624/11_dynam.htm#4376
    Trying to pass a single string with the names of your pl/sql variables to the USING statement is not going to work. You need explicitly state each one...
    USING TeamId, SchemeTypeId, StatusCode....
    HTH

  • [NX6200AX-TD128] Firmware: engineering release not for production use

    Hi,
    i just got my MSI NX6200AX-TD128 (602-V011-010) card
    B0505000867
    and it shows this bootup firmware info:
    BIOS 5.44.A2.02.00 engineering release not for production use
    Why is MSI selling these cards with a firmware like this?
    Why there is no updated firmware for download?
    (searched here: http://www.msi.com.tw/program/support/download/dld/spt_dld_detail.php?UID=679&kind=2 )
    Where can i download a retail fw?
    TIA
    TIA

    Quote from: fabianzd on 07-August-05, 20:58:50
    This is a user to user forum and MSI does not read or participate in these forums.
    You need to contact MSI directly to get answers about this BIOS...
    I see... thank you.
    Quote from: fabianzd on 07-August-05, 20:58:50
    But... why overclock a 6200 video card??? I really doubt that you get a better performance in games or 3D app's with this video card.
    Quote from: Richard on 07-August-05, 22:20:30
    Trying to overclock a 6200 is like trying to Supe up a Yugo. What is the point, there is nothing you could do to it, to make it play today's games.
    Take Care,
    Richard
    here are some articles about overclocking the 6200:
    6200 (NV43):
    http://www.digital-daily.com/video/peredelki/
    A6200 (NV44A):
    http://www.digital-daily.com/video/nv-gf6200agp-roundup/
    too bad that i found these articles after i spent my money.
    next time i'll do some research before buying and not after... :P
    later.

  • How do you remove this: META NAME="ColdFusionMXEdition" CONTENT="ColdFusion   DevNet Edition - Not for Production Use."

    Hi,
    How do you remove this: <META NAME="ColdFusionMXEdition"
    CONTENT="ColdFusion DevNet Edition - Not for Production
    Use."> since it
    automatically generates in my code when i run the application
    and it
    generates an error in the page.

    Deinstall the devnet version, and install the proper version.
    Adam

  • The watermark "Preliminary, Draft, not for production use"

    Hi
    Just curious, I see the watermark "Preliminary, Draft, not for production use" on the following page :
    http://agriculture.tennessee.edu/facultyandstaff/forms/LeaveForm.pdf
    Is this generated when right-enabled is applied and the owner use evaluation version of Adobe Document Server? or because of other cause?
    Anybody knows?
    Thanks

    Yes, it's because of the use of an evaluation version of some software.. probably Reader Extensions.
    Chris
    Adobe Enterprise Developer Support

  • BADI for VA01 which are not for internal use ???

    Hello Folks,
    Im looking for BADIs which are not for internal use for the transaction VA01...
    Could anyone send all the BADIS which can be implemented for VA01...
    Thanks in advance...
    Reddy

    Hi there, you are lucky enough because I have found them almost a few days ago:
    ---------- BADI for VA01 ----------
    A1) BADI
    BEFORE (choosing any ORDER: ....) :
      - BADI_SD_SALES
      - BADI_SD_SALES_BASIC
      - UKM_R3_ACTIVATE
      - BADI_LAYER
      - BADI_MATN1
    AFTER (choosing ORDER NR - xxxx -) :
      - ADDR_PRINTFORM_SHORT
      - BADI_SD_SALES_ITEM
      - BADI_IBASE_AUTHORITY
      - BADI_IBASE_IBCO
      - CU_CONFIG_DELEGATION
      - CUKO_PLANT_CHANGE
      - EHS_DG_002
      - SD_COND_ACCESS_A
      - BADI_SD_TO_FM
    AFTER CHANGING something in all items and shifting to TAB "item detail":
      - BADI_SD_DPBP
      - CFOP_DET_PREP
      - ADJUST_NET_DAYS
      - BADI_SD_SALES_ADDON
    AFTER CHANGING something again in all items and shifting to TABS:
      - CFOP_DET_PREP
    AFTER SAVING:
      - /SAPSLL/CTRL_SD0A_R3
      - QUANTITY_STRUCT_CK
      - DYNPRO_EXTENSION_CK
      - IBRT_GEN_ADD_IN
      - VALUATION_CK
      - WORKORDER_UPDATE
      - ATP_PUBLISH_RESULTS
      - FM_FYC_RECOVERY_POST
      - FMAVC_DECO
      - GM_POSTING_CONTROL
      - BADI_ISPS_GRANT
      - DIP_UPDATE_FKDAT
      - CACL_CHARACTER_INPUT
      - /SAPSLL/CTRL_SD0A_R3
      - /SAPSLL/RFC_DEST
      - /SAPSLL/CTRL_SD0A_R3
      - /SAPSLL/IFEX_SD0A_R3
      - /SAPSLL/KMAT
      - BADI_SD_UPDATE_PLVAL
      - CUX_ADD_IN
      - BOM_EXIT
      - WORKORDER_EXEC_STEPS
    In case you may need them...
    ---------- USER EXIT for VA01 ----------
    A2) USER EXIT for VA01 :
    SDAPO001  Activating Sourcing Subitem Quantity Propagation
    SDTRM001  Reschedule schedule lines without a new ATP check
    V45A0001  Determine alternative materials for product selection
    V45A0002  Predefine sold-to party in sales document
    V45A0003  Collector for customer function modulpool MV45A
    V45A0004  Copy packing proposal
    V45E0001  Update the purchase order from the sales order
    V45E0002  Data transfer in procurement elements (PRreq., assembly
    V45L0001  SD component supplier processing (customer enhancements
    V45P0001  SD customer function for cross-company code sales
    V45S0001  Update sales document from configuration
    V45S0003  MRP-relevance for incomplete configuration
    V45S0004  Effectivity type in sales order
    V45W0001  SD Service Management: Forward Contract Data to Item
    V46H0001  SD Customer functions for resource-related billing
    V60F0001  SD Billing plan (customer enhancement) diff. to billing
    A3) CLASSICAL USER-EXIT per VA01:
    --- include MV45AFZZ ---
    FORM userexit_delete_document.
    FORM userexit_field_modification.
    FORM userexit_move_field_to_vbak.
    FORM userexit_move_field_to_vbap.
    FORM userexit_move_field_to_vbep.
    FORM userexit_move_field_to_vbkd.
    FORM userexit_number_range USING us_r
    FORM userexit_pricing_prepare_tkomk.
    FORM userexit_pricing_prepare_tkomp.
    FORM userexit_read_document.
    FORM userexit_save_document.
    FORM userexit_save_document_prepare.
    Hope its enough
    Denis Mullaraj

  • BIOS Update for nVidia GTX 550 Ti? I have a BIOS "not for production use"

    Hi,
    I bought a new computer about a month ago, and it all works well, but every now and then, the whole system freezes completely for 2-4 minutes, and then afterwards resumes where it was. This is extremely annoying, and it really could be anything, I don't have evidence that it's the video card, but I'm trying to get everything updated to the latest version.
    When my computer boots up, I see this message:
    GF116 P1050 SKU 0 VGA BIOS
    MSIMV261MS.105Version 70.26.20.00.00
    Engineering Release - Not for Production Use
    Build Date: 02/23/11
    Revision Date: 02/16/11
    Copyright © 1996-2011 NVIDIA Corp.
    So, evidently this BIOS is wrong, and i'm trying to update it, but I can't find where to download an update.
    Could you please point me in the right direction?
    Thank you
    Daniel Magliola

    Quote from: dmagliola on 07-May-11, 21:59:57
    When my computer boots up, I see this message:
    GF116 P1050 SKU 0 VGA BIOS
    MSIMV261MS.105Version 70.26.20.00.00
    Engineering Release - Not for Production Use
    Build Date: 02/23/11
    Revision Date: 02/16/11
    Copyright © 1996-2011 NVIDIA Corp.
    I noticed the same thing... BUT I made 2 mistakes:
    Failed to make a copy of this BIOS using GPU-Z
    Updated to 1.06 via MSI Update 5 (26110.rom)
    Then I read the posts on this subforum and realized my mistakes.
    I'm just in the initial stages of installing software on this machine, so I haven't noticed any problems.
    I saved the updated BIOS via GPU-Z and compared the hashes against the 1.06 BIOS offered by MSI on their page for this card (NV261MS.106) ==> they matched  MD5: 52ECDDEFAEA86E745C09FF8A43541078
    Afterburner 2.1.0 gives the following info:
    Quote
    Display device       : GeForce GTX 550 Ti on GF116 GPU
    Display driver       : ForceWare 266.71
    BIOS                 : 70.26.20.00.00
    GUID                 : VEN_10DE&DEV_1244&SUBSYS_26101462&REV_A1&BUS_1&DEV_0&FN_0
    My question is how badly did I mess up and what should I do now?
    Thanks in advance.

  • OSS Note for dump in program LOLEAU02

    Hallo Everybody,
    I need help in finding an OSS notes for the runtime error MESSAGE_TYPE_X in the program LOLEAU02.The last modified date of this program is 6.11.2003.
    There are many OSS notes and I couldn't able to sort the OSS note for this particular runtime error.I have given some details about the dump.
    <b>
    User and Transaction
        Language key........ "F"
        Transaction......... "IW32 "
        Program............. "SAPLOLEA"
        Screen.............. "SAPLSCAC 0100"
        Screen line......... 0
    Information on where terminated
        The termination occurred in the ABAP program "SAPLOLEA" in "AC_SYSTEM_FLUSH".
        The main program was "SAPLCOIH ".
        The termination occurred in line 29 of the source code of the (Include)
         program "LOLEAU02"
        of the source code of program "LOLEAU02" (when calling the editor 290).
    Source Code extract
    24     WHEN 1.
    25 *     system_error
    26       MESSAGE ID 'CNDP' TYPE 'X' NUMBER 007 RAISING CNTL_SYSTEM_ERROR.
    27     WHEN 2.
    28 *     method_call_error
    >>       MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.
    30     WHEN 3.</b>
    Thanks in advance.Any inputs on this will be helpful.
    Regards,
    Raj

    Hi,
    Thanks Chandrasekar.
    The thread has the same dump except the main program which is <b>YQ9_UPLO</b>.In my case the main program is<b> SAPLSMTR_NAVIGATION</b>.
    Still the dumps occurs and I am unable to find the root cause. Any inputs will be som helpful.Thanks in advance.
    Regards,
    Raj

  • Update Rejection note in Invoice using Program

    Hi,
    We have one requirement to Reject & Approve the invoice using the POWL report. I have completed all the approval process, but while in rejection we have done one enhancement in invoice that invoice can't be rejected without entering the value in the Reason for rejection. I have called the method in this following sequence. There is no exception but Reason for rejection doesn't updated.
    /SAPSRM/IF_PDO_DO_LONGTEXT~ADD_LONGTEXT
    /SAPSRM/IF_PDO_DO_LONGTEXT~UPDATE_LONGTEXT_BUFFER
    /SAPSRM/IF_PDO_BASE~SUBMIT_UPDATE
    Give me some suggestion how i can achieve this.
    Regards,
    Nishant

    Hi,
    I want to update the Rejection Note from Program in APPROVAL mode.
    Below is the i wrote for update the REJECTION NOTE .
    data     lV_USER_TYPE TYPE BBP_IV_USER_TYPE VALUE 'PROFI' .
                 lv_mode = 'APPROVAL'.
                 lv_decision = 'REJECTED'.
                 lv_objecttype  = /sapsrm/if_pdo_obj_types_c=>gc_pdo_invoice.
           TRY.
             CALL METHOD /sapsrm/cl_pdo_bo_inv_adv=>get_inv_adv_instance
               EXPORTING
                 iv_header_guid = I_GUID
                 iv_wiid        = I_IV_WIID
                 iv_mode        = lv_mode
                 iv_subtype     = IV_SUBTYPE"ls_header_INV-subtype'
                 iv_user_ID     = I_APPROVER
                 iv_user_type   = lV_USER_TYPE
               RECEIVING
                 ro_instance    = lr_inv_adv.
           CATCH /sapsrm/cx_pdo_no_authorizatio .
           CATCH /sapsrm/cx_pdo_parameter_error .
           CATCH /sapsrm/cx_pdo_status_error .
           CATCH /sapsrm/cx_pdo_incons_user .
           CATCH /sapsrm/cx_pdo_abort .
           CATCH /sapsrm/cx_pdo_lock_failed .
           CATCH /sapsrm/cx_pdo_error .
           CATCH /sapsrm/cx_pdo_be_comm_error .
         ENDTRY.
    data lr_message TYPE REF TO /SAPSRM/IF_PDO_MSG_CONSUMER.
    data lo_pdo_notes        TYPE REF TO /sapsrm/if_pdo_do_longtext.
    data lr_message_update TYPE REF TO /SAPSRM/CL_PDO_MSG.
    DATA:   lx_abort            TYPE REF TO /sapsrm/cx_pdo_abort.
    CREATE OBJECT lr_message_update.
    lr_message ?= lr_message_update.
    lo_pdo_notes ?= LR_INV_ADV.
    IF lr_inv_adv IS BOUND.
    TRY.
    *  TRY.
       CALL METHOD lo_pdo_notes->add_longtext
         EXPORTING
         iv_p_guid          = I_GUID
         iv_tdid            = 'NOTE'
         iv_tdspras         = SY-LANGU
         iv_tdformat        = 'X'
         iv_text_preview    = 'Reason For Reject'.
    *     CHANGING
    *      co_message_handler =
        CATCH /sapsrm/cx_pdo_abort .
       ENDTRY.
    TRY.
    CALL METHOD lo_pdo_notes->update_longtext
       EXPORTING
         iv_p_guid          = I_GUID
         iv_tdid            = 'NOTE'
         iv_tdspras         = SY-LANGU
         iv_tdformat        = 'X'
         iv_text_preview    = 'Reason For Reject'
    *  CHANGING
    *    co_message_handler = lr_message
           CATCH /sapsrm/cx_pdo_abort INTO lx_abort  .
    *          mo_cll_message_handler->set_abort( io_pdo_abort_exception = lx_abort ).
           ENDTRY.
    TRY.
    DATA TEXT_ID TYPE TDID VALUE 'RREJ'.
    CALL METHOD lo_pdo_notes->update_longtext
       EXPORTING
         iv_p_guid          = I_GUID
         iv_tdid            = TEXT_ID
         iv_tdspras         = SY-LANGU
         iv_tdformat        = 'X'
         iv_text_preview    = 'Price Difference'
    *  CHANGING
    *    co_message_handler = lr_message
           CATCH /sapsrm/cx_pdo_abort INTO lx_abort  .
    *          mo_cll_message_handler->set_a1bort( io_pdo_abort_exception = lx_abort ).
           ENDTRY.
    CALL METHOD lr_inv_adv->/SAPSRM/IF_PDO_BASE~submit_update( ).
    *  CHANGING
    *    co_message_handler = lr_message
      CATCH /sapsrm/cx_pdo_wrong_mode .
      CATCH /sapsrm/cx_pdo_abort .
    ENDTRY.
             CALL FUNCTION '/SAPSRM/FU_WF_RFC_DECISION'
               EXPORTING
                 iv_header_guid = I_GUID
                 iv_mode        = lv_MODE
                 iv_botype      = lv_OBJECTTYPE
                 iv_wiid        = I_IV_WIID
                 iv_decision    = lv_DECISION
                 iv_approver    = I_APPROVER
               IMPORTING
                 return_code    = return_code
               TABLES
                 message_lines  = lt_message
               EXCEPTIONS
                 error_in_pdo   = 1
                 OTHERS         = 2.
             IF sy-subrc <> 0.
    * Implement suitable error handling here
             ENDIF.
    After execute this function module i got message REJECTION NOTE IS MANDATORY.
    Regards,
    Nishant

  • Regarding Import opening balance for GL  using DTW

    Can you give me a  template  example?
    and I should use which objects to Import  opening balance?
    Thank you

    Thank you for your prompt reply.
    I have imported the opening balance  to system successfully.
    using the DTW:
    In addtion I import the opening balance and other BP and stock balance ,I want to konw which column( for instance DueDate
    ReferenceDate or  anything else) to deciede to the journal entry in which posting period.
    Perhaps I could change the server datetime...
    Please advise ! thank you !

  • 'engineering release: not for production use

    this message, related to some VGA bios or something, appears when i first boot my k7n2g-ilsr (no i dont have any add-on cards in it). i must say, it does not inspire much confidence in me to see this message on my brand new 150 dollar motherboard. anyone have any ideas about this? just an accidental oversight during manufacturing?

    Fill out an online technical support form at:
    http://www.msicomputer.com/msiforms/c_problem_desc_form3.asp.
    Explain that you have a reference BIOS, and that you need to upgrade to the latest revision.  I did this for my 6200 that had the same problem; within one business day, MSI emailed me a new BIOS.  For those of you that have the MSI NX6200AX 128, you can download the BIOS they sent me from my website:
    http://dclayton.com/shared/nvflash.zip
    This file is a .ZIP archive that contains a few files, most notably, a program called nvflash.exe with the latest image file.  For non-Windows users, I presume you will have to create a boot floppy.  Since I have a Linux-based system, I'm going to have to do this I guess.  (Do not try this on any model of video other card - I don't know if the BIOS flash program will even let you.)
    Since this file is 200k+, please don't slurp my bandwidth by downloading it repeatedly or posting the URL to slashdot, etc.  If I remove this file in the future, please msg me and I'll try to get it to you.  But, you should have no problems if you contact MSI in the manner I indicated above.
    Good luck!

  • Help in finding an OSS notes for a SAP Program

    Hi,
    A runtime error TIME_OUT has occured in the program LSCD2F01.
    I need to find an OSS notes which deals with the correction of this dump.I have checked with the latest date of modification of this program and it is 18.02.2006
    So the OSS notes which has been generated earlier to this date has been implemented in the program.
    I have attached the Dump details below: Any inputs on this will be helpful.
    <b>Information on where terminated</b> 
      The termination occurred in the ABAP program "SAPLSCD1" in "READ_CD_FROM_DB".
        The main program was "SAPMSSY1 ".
        The termination occurred in line 1031 of the source code of the (Include)
         program "LSCD2F01"
        of the source code of program "LSCD2F01" (when calling the editor 10310).
    <b>Source Code Extract</b>
    1020 FORM read_cd_from_db CHANGING pt_cdhdr     TYPE cdhdr_tab
    1021                               pt_cdpos     TYPE cdpos_tab
    1022                               pt_cdpos_uid TYPE cdpos_uid_tab.
    1023
    1024   DATA: lt_cdhdr_for_uid TYPE cdhdr_tab
    1025        ,lv_guid_true     TYPE i.
    1026   FIELD-SYMBOLS: <fs_cdhdr> TYPE cdhdr.
    1027
    1028   CLEAR: lt_cdhdr_for_uid[], lv_guid_true.
    1029
    1030 * select header from cdhdr
    <b>>>>>   SELECT * FROM cdhdr INTO TABLE pt_cdhdr</b>
    1032            WHERE objectclas IN lt_sl_objectclas
    1033            AND   objectid   IN lt_sl_objectid
    1034            AND   changenr   IN lt_sl_changenr
    1035            AND   username   IN lt_sl_username
    1036            AND (
    1037                 (
    1038                   udate =  date_of_change
    1039                   AND
    1040                   utime >= time_of_change
    1041                  )
    1042                  OR
    1043                   udate >  date_of_change
    1044                 )
    Regards,
    Raj

    Check notes:
    459838 Performance improvement with very large datasets
    and
    671283 Performance problem with change documents material master
    Rob

Maybe you are looking for