Regarding %A function

Hi Experts,
x = b %A d and y = c %A d
and x+y = z
My z values comes out to be greater than 100 % which infact shud be <= 100 as it is percentage even thou it is addition of two percentage values.
My client says even thou x and y are less than 100 % addition of x and y shud be also less than 100%. but it is coming to be greater than 100 where there is mistake
and also let me knw how the fucntion %A works with a suitable example if the values of  b and d is given in the above example
its urgent plz help, helpful solution will surely be awarded
thanks
Puneet

Hi
Thanks for replying.
but in the answer below i dint get how  6%10 equals 60 can u please tell me the formula applied.
as the value z is also a perc field (sum of x and y) so it mite b less than 100 lets say in case 70% and 25 % addition of these two is 95%.
Now i will replace the values x,y,z with the field names in reports
% Total Case Pick = %Case Pick (single) + % Case Pick (layers)
only for one order 62107 is get them as  80% +54% = 134% (which as per the client shud b less than 100)
for all other orders i get % Total Case Pick less than or equal to 100.
and the formula being used for  % case pick singles is
NDIV0(ABS(No. of case in sinlges)%A(ABS(Org Quantity ordered))
and the values i get in cube for No of case in singles is 80000 and orginal qty ordered as 36. and the value coming afte the calculation of the formula in the query output is around 84%
and formula for % case pick layers is
NDIV0(ABS(No. of case in layers)%A(ABS(Org Quantity ordered))
valye in cube is 7000 for No of case in layers and 36 for Org Quantity ordered
and i get result using the above formula as 54%
thus the overall result as 134% by adding the two.
Hope now u are very clear bout the problem
please help.
Thanks
Puneet

Similar Messages

  • A query regarding synchronised functions, using shared object

    Hi all.
    I have this little query, regarding the functions that are synchronised, based on accessing the lock to the object, which is being used for synchronizing.
    Ok, I will clear myself with the following example :
    class First
    int a;
    static int b;
    public void func_one()
    synchronized((Integer) a)
    { // function logic
    } // End of func_one
    public void func_two()
    synchronized((Integer) b)
    { / function logic
    } // End of func_two
    public static void func_three()
    synchronized((Integer) a)
    { // function logic
    } // End of func_three, WHICH IS ACTUALLY NOT ALLOWED,
    // just written here for completeness.
    public static void func_four()
    synchronized((Integer) b)
    { / function logic
    } // End of func_four
    First obj1 = new First();
    First obj2 = new First();
    Note that the four functions are different on the following criteria :
    a) Whether the function is static or non-static.
    b) Whether the object on which synchronization is based is a static, or a non-static member of the class.
    Now, first my-thoughts; kindly correct me if I am wrong :
    a) In case 1, we have a non-static function, synchronized on a non-static object. Thus, effectively, there is no-synchronisation, since in case obj1 and obj2 happen to call the func_one at the same time, obj1 will obtain lock for obj1.a; and obj2 will obtain lock to obj2.a; and both can go inside the supposed-to-be-synchronized-function-but-actually-is-not merrily.
    Kindly correct me I am wrong anywhere in the above.
    b) In case 2, we have a non-static function, synchronized on a static object. Here, again if obj1, and obj2 happen to call the function at the same time, obj1 will try to obtain lock for obj1.a; while obj2 will try to obtain lock for obj2.a. However, since obj1.a and obj2.a are the same, thus we will indeed obtain sychronisation.
    Kindly correct me I am wrong anywhere in the above.
    c) In case 3, we have a static function , synchronized on a non-static object. However, Java does not allow functions of this type, so we may safely move forward.
    d) In case 4, we have a static function, synchronized on a static object.
    Here, again if obj1, and obj2 happen to call the function at the same time, obj1 will try to obtain lock for obj1.a; while obj2 will try to obtain lock for obj2.a. However, since obj1.a and obj2.a are the same, thus we will indeed obtain sychronisation. But we are only partly done for this case.
    First, Kindly correct me I am wrong anywhere in the above.
    Now, I have a query : what happens if the call is made in a classically static manner, i.e. using the statement "First.func_four;".
    Another query : so far we have been assuming that the only objects contending for the synchronized function are obj1, and obj2, in a single thread. Now, consider this, suppose we have the same reference obj1, in two threads, and the call "obj1.func_four;" happens to occur at the same time from each of these threads. Thus, we have obj1 rying to obtain lock for obj1.a; and again obj1 trying to obtain lock for obj1.a, which are the same locks. So, if obj1.a of the first thread obtains the lock, then it will enter the function no-doubt, but the call from the second thread will also succeed. Thus, effectively, our synchronisation is broken.
    Or am I being dumb ?
    Looking forward to replies..
    Ashutosh

    a) In case 1, we have a non-static function, synchronized on a non-static object. Thus, effectively, there is no-synchronisationThere is no synchronization between distinct First objects, but that's what you specified. Apart from the coding bug noted below, there would be synchronization between different threads using the same instance of First.
    b) In case 2, we have a non-static function, synchronized on a static object. Here, again if obj1, and obj2 happen to call the function at the same time, obj1 will try to obtain lock for obj1.a; while obj2 will try to obtain lock for obj2.a.obj1/2 don't call methods or try to obtain locks. The two different threads do that. And you mean First.b, not obj1.b and obj2.b, but see also below.
    d) In case 4, we have a static function, synchronized on a static object. Here, again if obj1, and obj2 happen to call the function at the same time, obj1 will try to obtain lock for obj1.a; while obj2 will try to obtain lock for obj2.a.Again, obj1/2 don't call methods or try to obtain locks. The two different threads do that. And again, you mean First.b. obj1.b and obj2.b are the same as First.b. Does that make it clearer?
    Now, I have a query : what happens if the call is made in a classically static manner, i.e. using the statement "First.func_four;".That's what happens in any case whether you write obj1.func_four(), obj2.func)four(), or First.func_four(). All these are identical when func_four(0 is static.
    Now, consider this, suppose we have the same reference obj1, in two threads, and the call "obj1.func_four;" happens to occur at the same time from each of these threads. Thus, we have obj1 rying to obtain lock for obj1.aNo we don't, we have a thread trying to obtain the lock on First.b.
    and again obj1 trying to obtain lock for obj1.aYou mean obj2 and First.b, but obj2 doesn't obtain the lock, the thread does.
    which are the same locks. So, if obj1.a of the first thread obtains the lock, then it will enter the function no-doubt, but the call from the second thread will also succeed.Of course it won't. Your reasoning here makes zero sense..Once First.b is locked it is locked. End of story.
    Thus, effectively, our synchronisation is broken.No it isn't. The second thread will wait on the same First.b object that the first thread has locked.
    However in any case you have a much bigger problem here. You're autoboxing your local 'int' variable to a possibly brand-new Integer object every call, so there may be no synchronization at all.
    You need:
    Object a = new Object();
    static Object b = new Object();

  • Regarding decode function

    Hi all,
    i want to know abt decode function in oracle-sql
    i..e passing the parameters in decode using decode using ":" bind parameter
    select JOB, decode(:j,'CLERK','MANAGER','ANALYST','EXEC',JOB) FROM EMP;
    i declared the j variable in sql environment
    VARIABLE J VARCHAR2(20);
    i exec the query
    and passed as the clerk as input parameter
    but iam getting the o/p as
    JOB DECODE(:J
    MANAGER MANAGER
    MANAGER MANAGER
    MANAGER MANAGER
    SALESMAN SALESMAN
    SALESMAN SALESMAN
    SALESMAN SALESMAN
    CLERK CLERK
    SALESMAN SALESMAN
    ANALYST ANALYST
    CLERK CLERK
    ANALYST ANALYST
    JOB DECODE(:J
    CLERK CLERK
    12 rows selected.
    SQL> PRINT J;
    J
    im not getting o/p
    so please hlelp me only : should be used not &
    this is my first thread.
    execuse me if any mistakes
    tons of thanks in advance to all

    SORRY DAVE,ROD FOR NOT BEING CLEAR,
    IAM WORKING WITH EMP TABLE THE DATA IN IT IS LIKE THIS
    EMPNO ENAME JOB MGR HIREDATE SAL COMM DEPTNO
    7698 BLAKE MANAGER 7839 01-MAY-81 2850 30
    7782 CLARK MANAGER 7839 09-JUN-81 2450 10
    7566 JONES MANAGER 7839 02-APR-81 2975 20
    7654 MARTIN SALESMAN 7698 28-SEP-81 1250 1400 30
    7499 chaitu SALESMAN 7698 20-FEB-81 1600 300 10
    7844 TURNER SALESMAN 7698 08-SEP-81 1500 0 30
    7900 JAMES CLERK 7698 03-DEC-81 950 30
    7521 WARD SALESMAN 7698 22-FEB-81 1250 500 30
    7902 FORD ANALYST 7566 03-DEC-81 3000 20
    7369 SMITH CLERK 7902 17-DEC-80 800 20
    7788 SCOTT ANALYST 7566 09-DEC-82 3000 20
    EMPNO ENAME JOB MGR HIREDATE SAL COMM DEPTNO
    7876 ADAMS CLERK 7788 12-JAN-83 1100 20
    AND I USED DECODE FUNCTION
    select JOB BEFOREPROMOTION, decode(job,'CLERK','MANAGER','ANALYST','EXEC') PROMOTION FROM EMP
    BEFOREPRO PROMOTI
    MANAGER
    MANAGER
    MANAGER
    SALESMAN
    SALESMAN
    SALESMAN
    CLERK MANAGER
    SALESMAN
    ANALYST EXEC
    CLERK MANAGER
    ANALYST EXEC
    I..E ALL THE CLERKS TO MANAGERS AND SAME THING WITH ANALYST
    OK
    NOW I WILL SHOW U ANOTHER QUERY
    select job,decode(job,'CLERK','MANAGER','ANALYST','EXEC',JOB) FROM EMP where job=&job;
    Enter value for job: 'CLERK'
    old 1: select job,decode(job,'CLERK','MANAGER','ANALYST','EXEC',JOB) FROM EMP where job=&job
    new 1: select job,decode(job,'CLERK','MANAGER','ANALYST','EXEC',JOB) FROM EMP where job='CLERK'
    JOB DECODE(JO
    CLERK MANAGER
    CLERK MANAGER
    CLERK MANAGER
    HERE OBSERVE THAT I PASSED JOB ='CLERKS AS PARAMETER AFTER EXECUTING THE QUERY
    IT ASKED LIKE THIS AND SHOWED THE REPLACED VALUES
    Enter value for job: 'CLERK'
    AS SHOWN ABOVE
    FOR THIS TO PASS VALUE
    IN TO THE QUERY BY USING AMPERSAND('&')
    TO TAKE INPUT AS CLERK
    IT CHECKED AND RETURNED THE VALUE
    IN THE SIMILAR WAY CAN I USE ":" COLON
    TO PASS PARAMETERS
    IN TO THE QUERY
    CAN I USE IT
    REGARDS,
    PHANI
    Edited by: user10652894 on Nov 26, 2008 3:24 AM

  • Regarding MM function

    hey guys,
    I am trying to learn MM functional module myself.
    To start with i need some sample data(SAP existing data)
    to see how the transaction flows from one screen to another screen.
    so can somebody give me a starting from basic purchase order transaction screens.
    Ambichan.

    Hi Ambichan,
    I have come across many ABAPers who have said that they want to gain Functional Knowledge all by themseleves. And I hate to sound discouraging, but it simply cannot be done.
    The best way is to take some training by an SAP authorized training center. And after that you will have to keep working on projects that require you to use the concepts you have learnt. This is very important.
    If you are still insistent on learning it all by yourself, then at least try to get an SAP IDES system. IDES is the International Demo and Education Systems wing of SAP which provides SAP systems with consistent and stable data for educational purposes. These systems come with examples for all standard scenarios. The IMG is configured and all you have to do is to run through the transactions directly. Of course, it is not practical to do that all by yourself. The practice should ideally go hand in hand with training.
    Regards,
    Anand Mandalika.

  • Regarding Date Function

    Hi All,
    Hi i want to implement the functionality as below, if i gave the Date as Input then i have to get the Respective Timezones is it possible, if yes then can u plz produce a sample snippet of it.
    With Regards,
    Justin

    java.text.SimpleDateFormat to parse and format a date in any time zone.

  • Regarding Planning function

    Hello,
    I have a scenario to fill the plan values of some quantity key figure back to the  planning cube after manually changing it in the plan query.
    My plan query displays the data aggregated for 0calmonth.
    Now when i changes the value of this quantity field it should be saved in the cube distributed accoring to the different characteristic values.
    For this i thought of using distribution by key planning function.
    But i could not use this as there are about 5 characteristic in my cube and for every characteristic combination this value of distributed quantity need to be filled.
    How can this be done?
    Regards,
    Pratighya

    Hello,
    could you please elaborate the solution.
    Best Regards,
    Pratighya

  • Regarding #SegmentCount# function

    Hi All,
    we are trying to send multiple PO's in a single transaction using the EDI X12 over Generic Exchange protocol, for the SE01 tag to get the segment count we are using a function #SegmentCount#.
    Say suppose in a transaction if i have 2 PO's. For the first PO it identifies the #SegmentCount# function,but for the second PO which has SE02 as #SegmentCount# it does not identify it and gives an error as below.
    The number of accurate/analyzed segments in your file is 33. Number of included segments (SE01) has a value of '<?'.
    Thanks and Regards,
    Kaavya

    In case of outbound, you cannot use multiple Transaction sets in a single file. you have to use the batching for this purpose.
    Please refer to
    http://www.oracle.com/technology/products/integration/b2b/pdf/B2B_TN_012_EDI_OutBound_Batching.pdf
    http://www.oracle.com/technology/products/integration/b2b/pdf/edi_cookbook_oracle_b2b.pdf
    http://www.b2bgurus.com/2007/08/oracle-as-b2b-edi-faq.html

  • Regarding Standard function

    Hi
    I am getting 6 digit number from the source.
    ex 103924
    in the target i want 1039.24
    Please tell me is there any standard function for this and tell me how to use it.
    regards
    venkat.

    Hi,
    You can use the FormatNumber API and formulate the no as per your requirment.
    Or Best way if the no of digits are not fixed then Multiply the Source field by 0.01
    Source Field--> Multiply (0.001 Constant) --> Target field
    Thanks
    swarup

  • Regarding Openscript function

    Hello everyone
    I recently started working on OLT. I have created a function library using functional Testing option in Openscript. Is there any way to call any of these functions separately into load testing script wherever required.
    Thanks in advance.

    Hello,
    As well as I know chr(13) for new line is used in HTML (When we display strings in Html page).
    Regards
    Danish

  • Regarding Packaged function...!

    Hi,
    i have a packaged function which i am trying to use in my
    report query....
    i am passing 2 params for this function.....
    one is report parameter and the other one is a col in the select query....
    so i need to get rows returned based on the conditon satisfying in the query...!
    i have a select stat for each condition which will return one column value to the
    local variable which i am trying to check in the condition....
    My problem is whenever i am running it it's get hanged or it takes a lot of time..
    if iam hard coding the parameter value it's fetching records...
    plz do the needful....
    select
    a.latest_version_no,
    a.custom_ref_no,
    d.customer_name1,
    etc.....
    etc.....
    from
    cstbs_contract a,
    fxtbs_contract_master b,
    cstbs_contractis c,
    sttms_customer d
    where
    a.contract_ref_no=b.contract_ref_no
    and
    a.latest_version_no=b.version_no
    and
    b.contract_ref_no = c.contract_ref_no
    and
    d.customer_no=b.counterparty
    and
    NVL(b.netting_status,'N') ='N'
    AND
    b.VERSION_NO = (SELECT MAX(M1.VERSION_NO) FROM FXtbs_contract_master M1 WHERE M1.CONTRACT_REF_NO = B.CONTRACT_REF_NO)
    AND
    B.CONTRACT_REF_NO IN(SELECT PK_RET_ROWS.FN_RET_ROWS(:P_INST_CHANGE,'FXWFWXP023290102') FROM DUAL)

    Ravi
    For one thing you could avoid the unnecessary select from dual:
    AND B.CONTRACT_REF_NO IN(SELECT PK_RET_ROWS.FN_RET_ROWS(:P_INST_CHANGE,'FXWFWXP023290102') FROM DUAL)can be changed to:
    AND B.CONTRACT_REF_NO = PK_RET_ROWS.FN_RET_ROWS(:P_INST_CHANGE,'FXWFWXP023290102')You could simplify further, to make sure you only evaluate the function once, and definitely drive off M1, then B:
    AND (B.CONTRACT_REF_NO, B.VERSION_NO) = (
    SELECT M1.CONTRACT_REF_NO, M1.VERSION_NO
    FROM FXtbs_contract_master M1
    WHERE M1.CONTRACT_REF_NO = PK_RET_ROWS.FN_RET_ROWS(:P_INST_CHANGE,'FXWFWXP023290102')
    )As for the speed: if you still have a problem, check you have the right indexes (eg on CONTRACT_REF_NO and (LATEST_)VERSION_NO for M1, A, B, C and on D.CUSTOMER_NO)?
    HTH
    Regards Nigel

  • Regarding the Function.......

    Hi gurus,
    What function can I use to create a drop down box in an input schedule in BPC ?  I have a schedule where I want the users to be able to select an account, I have 20 accounts and they need to select one from the drop down shoing all the 20 .
    Regards
    swagath......

    Create a filtered list of members that can be used in a drop down selection. On a couple of projects, I've used a second EVDRE to generate a filtered list of members based upon the users security. The list is then used to populate a drop down box. It requires a little bit of experimenting to get everything to execute in the proper order.
    EVLST is similar in that it creates a filtered list of members. The list then has to be referenced using a drop down box or other tool.
    ============= or solution -   2
    I'm sure you probably want an automated solution, but here is an Excel non-VBA solution that's not entirely maintenance-free, but is fairly straight forward. You could use Data Validation.Allow List for a drop-down list where the user can select one member to retrieve. Depending on your EVDRE, the list could be all , but the concept here is you compile the list manually put it somewhere on the sheet or a hidden (or veryhidden) sheet, and have to update it manually if you add members. Here's how to do this:
    1) Put the list of members you want the users to choose from either on the sheet, or on a hidden sheet. If you put them on another sheet, you need to do Insert.Define Name to name the range as direct references to off-sheet ranges are not allowed in data validation.
    2) Select the cell where you want the users to click on a drop-down menu.
    3) Do Data..Validation.click on "Allow List".
    4)In the formula box enter your name range if off sheet, or the cell range if it is on sheet (example =$A$1:$A$10).
    5) Experiment with the two other tabs. You might want to go to the Error Alert tab and select the "Stop" message, if you don't want the users to type over the choices in the drop-down box. Stop would force the user to select only from the members in your list.
    5) Click OK
    6) Reference this cell that contains the data validation in your EVDRE, EvGTS, or EvSND statement.

  • Regarding chr() function

    I am using function chr(13) in the form to get one Line(to move the remaining contents to next line). Instead of moving to next line, function is displaying some special character.
    I am using 10g forms. Whether chr(13) is supported by form or not??
    Edited by: user648759 on May 29, 2009 2:33 AM
    Edited by: user648759 on May 29, 2009 2:35 AM

    Hello,
    As well as I know chr(13) for new line is used in HTML (When we display strings in Html page).
    Regards
    Danish

  • Question regarding decode function.

    Hi friends,
    I have a question regarding using decode.
    I'm try'g to explain my problem using emp table.
    Can you guys please help me out.
    For example consider emp table, now i want to get all manager id's concatenated for 2 employees.
    I tried using following code
    declare
    v_mgr_code  number(10);
    v_mgr1      number(4);
    v_mgr2      number(4);
    begin
    select  mgr into    v_mgr1
    from    scott.emp
    where   empno = 7369;
    select  mgr into    v_mgr2
    from    scott.emp
    where   empno = 7499;
    select v_mgr1||'-'||v_mgr2 into v_mgr_code from dual;
    end;now instead of writing 2 select statements can i write one select statement using decode function ?
    Edited by: user642856 on Mar 8, 2009 11:18 PM

    i don't know wheter your looking for this or not.if i am wrong correct me.
    SELECT Ename||' '||initcap('manager is ')||
    DECODE(MGR,
            7566, (SELECT Ename
                    FROM Emp
                    WHERE Empno = 7566),
            7698, (SELECT Ename
                    FROM Emp
                    WHERE Empno = 7698),
            7782, (SELECT Ename
                    FROM Emp
                    WHERE Empno = 7782),
            7788, (SELECT Ename
                    FROM Emp
                    WHERE Empno = 7788),
            7839, (SELECT Ename
                    FROM Emp
                    WHERE Empno = 7839),
            7902, (SELECT Ename
                    FROM Emp
                    WHERE Empno = 7902),
            'Do Not Know')  Manager from empor
    SELECT Ename||' '||initcap('manager is ')||
    DECODE(MGR,
            7566, (SELECT empno
                    FROM Emp
                    WHERE Empno = 7566),
            7698, (SELECT empno
                    FROM Emp
                    WHERE Empno = 7698),
            7782, (SELECT empno
                    FROM Emp
                    WHERE Empno = 7782),
            7788, (SELECT empno
                    FROM Emp
                    WHERE Empno = 7788),
            7839, (SELECT empno
                    FROM Emp
                    WHERE Empno = 7839),
            7902, (SELECT empno
                    FROM Emp
                    WHERE Empno = 7902)) manager
    from empEdited by: user4587979 on Mar 8, 2009 9:52 PM

  • Regarding Rules, Functions and Risks

    Hello,
    1. Does SAP provide a standard ruleset for SoD? Does it come with the AC 5.3 .SCA?
    2. What is the relation between Rules, Risks, Functions and Business Process?
    Thanks.

    Hi Gautam,
    Just to make it more explanatory, lets take few examples for each entity:
    1. Business Process (BP):
    It can be a department, group or an independent functional unit in an organization. E.g Finance or HR or Material Management.
    2. Function:
    It can be a set of activites or say set of simlilar activities in a BP. E.g in SAP Security - SU01 and PFCG combination can be termed as a function - "User and role maintenence" .
    3. Risk:
    It can be a combination of 2 or more functions which when given to a single user, can be harmful to the organization.
    4. Rule:
    It is generated from Risks automatically. E.g if A and B are 2 funtions in a risk R, such that:
                       A has transactions X and Y and
                       B has transactions M and N
    so there can be multiple rules generated here for Risk R , with the combinations like X and M rule, X and N rule, Y and M rule, Y and N rule etc.
    5. Ruleset:
    As the name suggest, is a set of Rules, generated from Risks. Two Rulesets may contain same, similar or dissimilar risks, based on the lanscape for which you want to use the ruleset. E.g you might have ruleset R1 having Risks 1 to N in your development system and you might have ruleset R 2 having Risks 1 to M in your Production system.
    Hope this makes it a bit clearer to you know. For more dependencies within these entities and how they behave with eah other, I would suggest if you create each of them and then observe their linkages. The config guide from SAP would be more than enough for this purpose.
    Regards,
    Hersh.
    http://www.linkedin.com/in/hersh13

  • Regarding Object Functional Area (FN)

    Hi Folks,
    The client is currently on EhP4 and will be upgrading to EhP5 soon.
    Also the Netweaver version currently is 7.0 and will be upgrading to portal Enhancement Pack 3 of 7.0
    The client needs full fledged Job Architecture and Competency Management. The blueprint discussions have already concluded and the discussions were done assuming we have the Functional area and Job Family objects as part of the Job architecture structure.
    I just got access to client SAP and discovered the "Functional Area (FN)" object missing from the object list in PP01. 
    In this regards, I have the below queries:
    * Is the object FN available only with EhP6 and above versions?
         If No, will this issue be as simple as missing table entries?
         If Yes, with EhP4 or 5 implemented, can we create a new object with same name FN and maintain the corresponding relationships as will be done in standard post EhP6? And will the profile match-up consider the custom created FN object during comparisons in ECC transaction and on portal (during development plans and succession planning comparisons) ?
    Kindly help.
    Regards
    Shashank Shirali

    The FN object is activated as part of a Business Function and is available from EhP4 onwards.
    The business function (HCM_TMC_CI_1) was introduced with EhP4 (but still needs activating).
    HCM, Core Processes in Talent Management - Business Functions (SAP Enhancement Package 5 for SAP ERP 6.0) - SAP Library
    For EhP5 there is a second Business Function (HCM_TMC_CI_2) you should look to activate:
    HCM, Core Processes in Talent Management 02 - Business Functions (SAP Enhancement Package 5 for SAP ERP 6.0) - SAP Libra…
    Regards,
    Stephen

  • Regarding SHipment function exit

    Hi Experts,
                    I have to update some custom table in the function exit of  VT01n transaction code based on some condition.
    I have done it using update statement as it is custom table there is no problem.
    BUT in the code After that UPDATE statement ,based on some condition i have to through a message which will stop the transactionn.
    In that case if i exit from the transaction using exit button in the menu bar, the updated custom table has to roll back.
    Can i use ROLL BACK Statement. in the function exit in that case.
    If i use that ,does it effect any standard functionality.
    Orelse is there any alternative solution for that.
    Regards
    Ramakrishna L

    Hi Ramakrishna,
    If u r updating the custom table in the same exit where u r throwing the message , don't use the commit work after updating the table. use it at end of the exit.
    Regards,
    Srinivas.

Maybe you are looking for

  • How to find active sessions count on a server in weblogic server console

    Hi All, I would like to know how to find active sessions count on a server in weblogic console. I am using weblogic 11g. Regards, Sunil.

  • Request Timed Out when server is plugged in!

    jonathanmendez wrote: 1 - Error - DNS-Server-Service 404 The DNS server could not bind a transmission Control Protocol (TCP) scoket to address 10.10.10.3. The event data is the error code. An IP address of 0.0.0.0 can indicate a valid "any address" c

  • Upgrade to ECC 6.0 & SAP Netweaver 7.0

    Hi, We are right now using ECC 5.0 & Netweaver 2004 (EP 6.0). Since its very old we plan to upgrade in two phases with some time gap between them. The first phase will be upgrading the ERP to ECC6.0 and second phase is upgrading EP 6.0  to EP 7.0. Th

  • SD Order Type for Rebate Management

    Hello, I have created Rebate Agreement. Status is coming as blank (Open). I want to create a Sales Order to test the rebate. How do I determine which Order Type to use for creating the Sales Document. Thank you, Ashish

  • When do I need to add an entry in the "back to my mac" area?

    Documentation and help is just too terse in this area. When do I actually have to make an entry into the "Back to My Mac" list, and what does it actually do? What is the purpose of multiple entries? I have a remote family member that can already get