Please look into this.. where i have to write at end of

HI all ,
i am getting this output in my report.
the first column is the division (D.C) and the next couln is the no of consumer(no of business partner in a perticular dc (this is the count of dc))
314200     0
314201     1     
334300     0
i got the value of the first two digit of dc in a variable.
now when it change from 31 to 33 i want to get the value of no of count .
but the atatement AT END OF IS NOT WORKING ...
Can anyone just look at the code and let me where i have to change..
REPORT  ZDISTRICT_CUST_AUCSALES.
       LINE-COUNT 40(4).
******************************************************TABLE DECLARATION
TABLES: /BIC/AUCSALES00,
        /BIC/TCOKEY.
*******************************************************DATA DECLARATION
DATA:  BEGIN OF ITAB OCCURS 0,
       /BIC/COKEY LIKE /BIC/TCOKEY-/BIC/COKEY,
       TXTSH      LIKE /BIC/TCOKEY-TXTSH,
       END OF ITAB.
DATA:  BEGIN OF ITAB2 OCCURS 0,
       BILL_DATE   LIKE /BIC/AUCSALES00-BILL_DATE,
       /BIC/COKEY  LIKE /BIC/AUCSALES00-/BIC/COKEY,
       BPARTNER    LIKE /BIC/AUCSALES00-BPARTNER,
       END OF ITAB2.
DATA:  COUNT TYPE I,
       COKEY TYPE I,
       COKEYNO(2) TYPE C,
       BILDT TYPE I.
DATA: C TYPE I VALUE 2.
*DATA: /BIC/COKEY TYPE /BIC/AUCSALES00-/BIC/COKEY.
SELECT OPTION FOR DATE SELECTION IN THE SELECTION SCREEN.
SELECTION-SCREEN BEGIN OF BLOCK DATE WITH FRAME TITLE TEXT-001.
     SELECT-OPTIONS: S_BILDT FOR /BIC/AUCSALES00-BILL_DATE OBLIGATORY default sy-datum.
SELECTION-SCREEN END OF BLOCK DATE.
*********************************************************INITIALIZATION
*INITIALIZATION.
FORMAT INTENSIFIED ON COLOR = C.
write:/  'PROCESSING DATE:',    20 SY-DATUM,
     125 'TIME           :',   130 SY-UZEIT.
WRITE:/  'USER NAME      :',    20 SY-UNAME, 138 ' '.
WRITE SY-ULINE.
WRITE: / 'D.C'                   , 12 SY-VLINE,
         'NAME OF D.C'        , 36 SY-VLINE,
         'BILL DATE'             , 53 SY-VLINE,
         'NUMBER OF CONSUMER' , 74 SY-VLINE,
         'REMARKS'            ,105 SY-VLINE.
write sy-uline.
*ULINE AT (100).
FORMAT INTENSIFIED OFF.
*END-OF-PAGE.
WRITE:/40 'PAGE NO:', SY-PAGNO.
*****************************************************AT SELECTION-SCREEN
SELECT BILL_DATE
       UP TO 1 ROWS
       INTO (/BIC/AUCSALES00-BILL_DATE)
       FROM /BIC/AUCSALES00
       WHERE BILL_DATE IN S_BILDT.
ENDSELECT.
IF SY-SUBRC <> 0.
      WRITE:/ ' NO DATA FOUND ON THIS DATE'.
      EXIT.
ENDIF.
START OF SELECTION
SELECT /BIC/COKEY TXTSH from /BIC/TCOKEY into table itab.
IF NOT ITAB[] IS INITIAL.
SELECT  BILL_DATE
         /BIC/COKEY
         BPARTNER
         FROM /BIC/AUCSALES00
         INTO CORRESPONDING FIELDS OF TABLE ITAB2
         FOR ALL ENTRIES IN ITAB
         WHERE /BIC/COKEY = ITAB-/BIC/COKEY
         AND BILL_DATE IN S_BILDT.
SORT ITAB BY /BIC/COKEY.
ENDIF.
***********************CHECK WHETHER THE DATA RETRIVE SUCESSFULLY OR NOT
IF SY-SUBRC NE 0.
  WRITE:/ 'THIS DATE DOESNOT CONTAIN ANY DATA'.
ENDIF.
************************************************************DATA DISPLAY
LOOP AT ITAB.
MOVE: ITAB-/BIC/COKEY+4(2) to COKEYNO.
READ TABLE ITAB2 WITH KEY /BIC/COKEY = itab-/BIC/COKEY.
IF SY-SUBRC = 0.
       SORT ITAB2 BY /BIC/COKEY.
       DELETE ADJACENT DUPLICATES FROM ITAB2 COMPARING /BIC/COKEY.
ENDIF.
IF ITAB2-/BIC/COKEY = ITAB-/BIC/COKEY.
       SELECT COUNT( DISTINCT BPARTNER )
              INTO COUNT
              FROM /BIC/AUCSALES00
              WHERE /BIC/COKEY = ITAB2-/BIC/COKEY and
              BILL_DATE IN S_BILDT.
      COKEY = ITAB2-/BIC/COKEY.
      WRITE:/ ITAB2-/BIC/COKEY,             SY-VLINE,
           15 ITAB-TXTSH,                   SY-VLINE,
           42 ITAB2-BILL_DATE,              SY-VLINE,
           55 COUNT,                    74  SY-VLINE,
              ' ',                     105  SY-VLINE.
      WRITE:/ SY-ULINE.
  ELSE.
     COKEY = ITAB-/BIC/COKEY.
     WRITE:/ ITAB-/BIC/COKEY,                SY-VLINE,
          15 ITAB-TXTSH,                     SY-VLINE,
          51 '0' ,                           SY-VLINE,
          55 'Not Processed',              74 SY-VLINE,
             'Data Not extracted to BW', 105 SY-VLINE.
      WRITE:/ SY-ULINE.
ENDIF.
CLEAR: ITAB, ITAB2.
ENDLOOP.
thanks in advance..

Hi
In this case instead of using AT END OF just create temp. which will hold in it last value of dc,every loop run, check it with new value, if it not equal - get the desired value
only condition - itab must be sorted
temp = 'x'. -->you need to put the first value
loop at itab.
if temp <> COKEYNO.
--->your actions to get your value
endif.
temp = COKEYNO.
endloop.
OR
you can add one more field to itab (better first) with COKEYNO
fill itab in this field and then
loop at itab.
at end of cokeyno.
endloop.
Regards
Yossi

Similar Messages

  • I am using Firefox 4.0 Beta 10. It doesn't start immediately after I click on the Firefox button located in my shortcut bar. And sometimes it even doesn't open. I don't know why it occurs, so please look into this matter. Thanks!

    Whenever I click on the button of Firefox 4.0 Beta 10 located in my shortcut bar. It opens after a very long time i.e. after 5-10 minutes after I get irritated and start using Safari. And sometimes it doesn't even open. Please look into this matter. :D
    Thanks

    Try disabling hardware acceleration in your Firefox settings and see if it helps:
    From the Firefox menu, go to '''Options''' and click the '''Advanced''' panel, then select the General tab. Clear the box in front of "Use hardware acceleration when available" so that it is unchecked, then restart Firefox. ([http://support.mozilla.com/media/uploads/gallery/images/2011-01-27-04-52-31-8c9d82.png screenshot]).
    Ref: <br>
    https://blog.mozilla.com/tglek/2010/12/21/rude-surprise-startup-overhead-of-windows-font-apis/

  • I currently have wireless, but i am looking into this to maybe have faster wireless. if this is hooked up, will the existing wireless/ethernet to pcs still function without changing them to use the airport express?

    i currently have wireless, but i am looking into this to maybe have faster wireless. if this is hooked up, will the existing wireless/ethernet to pcs still function without changing them to use the airport express?

    let me fix this a bit. i currently have dsl and a 2wire wireless router, and i currently do not have one or a mac. im getting one for when i start college and this is a must if it will improve my internet. but i now connect wirelessly to the 2wire router. if this is set up, will the current 2wire wireless still be useable?

  • May be a bug.. please look into this

    Hi,
    for ex:
    there is a table like
    desc trade;
    trade_date date
    day_high number
    day_low number
    day_open number
    day_close number
    there are many records right from trade_date 01-jan-05 to till date. If i want to query records of any perticular date returns no records, here sql query...
    select * from trade
    where trade_date = '&dt';
    No rows returned on any date enetered when i execute in oracle 9.2.0.1.0 - Production
    same query returns rows when i execute in oracle 8.0.4.0.0
    It returns records when i write the same query like
    select * from trade
    where to_char(trade_date,'DD-MON-YY') = '&dt';
    OR
    select * from trade
    where to_date(trade_date) = to_date('&dt','DD-MON-YY');
    please tell me about this.
    Thanks

    What values are you entering, and what range of values do you have on the database? '01-JUN-05' will currently evaluate to 2005 whether you use 'DD-MON-RR' or 'DD-MON-YY'.
    Perhaps you have some dates in the database that are 1905 when they should be 2005?
    It's safer to avoid two-digit years.

  • Please Look into this.!! Viewing HTTP Server Response

    Please consider this urgently..
    How can I view the response Headers sent by the Server back to the Client??(The Client is a java application which has invoked the servlet via the URL class)
    It is possible to check the client Headers with the following in your servlet code:
    String contentType = request.getContent();
    System.out.println(contentType);
    How can I check the response headers of the server which it sends back to the client?
    If on the server I say : response.setContentType("text/html");
    what method I need to invoke on my client to see this content Type???
    Please can any one respond..
    ajay

    This problem occurred to me - the applet needs to know the authorization data (ie: the user) which the servlet extracted via the request.getHeader("Authorization") method.
    But if the browser obliged the servlet by demanding a user and password in response to servlet calling request.getHeader("Authorization"), one would think the browser would know the user and password.
    Isn't there a way for the applet to obtain the user and password directly from the browser without having the servlet send it back via something like response.setHeader("user",user) ?

  • Hey SHA1 & everyday is christams guys...please look into this.....same prob

    Hey....hii....
    someone solved your problem i suppose...
    I am also facing something like ur's..
    I do not have any naming prob..Its all correct...but still i am getting...
    pls Help me...
    I gotta complete this sooon....
    This is the error i am getting....
    exception
    java.util.MissingResourceException: Can't find bundle for base name LocalStrings, locale en_US
         java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:836)
         java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:726)
         java.util.ResourceBundle.getBundle(ResourceBundle.java:576)
         HelloWorldExample.doGet(HelloWorldExample.java:39)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:272)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.0 logs.
    my code is as follows+*
    import java.text.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    * The simplest possible servlet.
    * @author James Duncan Davidson
    public class HelloWorldExample extends HttpServlet {
        public void doGet(HttpServletRequest request,
                          HttpServletResponse response)
            throws IOException, ServletException
            ResourceBundle rb =
                ResourceBundle.getBundle("LocalStrings",request.getLocale());
            response.setContentType("text/html");
            PrintWriter out = response.getWriter();
            out.println("<html>");
            out.println("<head>");
                String title = rb.getString("helloworld.title");
                out.println("<title>" + title + "</title>");
            out.println("</head>");
            out.println("<body bgcolor=\"white\">");
            // note that all links are created to be relative. this
            // ensures that we can move the web application that this
            // servlet belongs to to a different place in the url
            // tree and not have any harmful side effects.
            // XXX
            // making these absolute till we work out the
            // addition of a PathInfo issue
                out.println("<a href=\"../helloworld.html\">");
            out.println("<img src=\"../images/code.gif\" height=24 " +
                        "width=24 align=right border=0 alt=\"view code\"></a>");
            out.println("<a href=\"../index.html\">");
            out.println("<img src=\"../images/return.gif\" height=24 " +
                        "width=24 align=right border=0 alt=\"return\"></a>");
            out.println("<h1>" + title + "</h1>");
            out.println("</body>");
            out.println("</html>");
    }Thanks In advance
    Shruthi

    This is from Tomcat-5.5.26
    LocalString.properties can be found in servlet-api.jar.
    # Archive C:\apache-tomcat-5.5.26\common\lib\servlet-api.jar
    2008-01-28 10:05 Folder Folder META-INF
    2008-01-28 10:05 378 213 META-INF\MANIFEST.MF
    2008-01-28 10:05 Folder Folder javax
    2008-01-28 10:05 Folder Folder javax\servlet
    2008-01-28 10:05 Folder Folder javax\servlet\http
    2008-01-28 10:05 Folder Folder javax\servlet\resources
    2008-01-28 10:05 389 230 javax\servlet\Filter.class
    2008-01-28 10:05 289 185 javax\servlet\FilterChain.class
    2008-01-28 10:05 357 220 javax\servlet\FilterConfig.class
    2008-01-28 10:05 2187 916 javax\servlet\GenericServlet.class
    *2008-01-28 10:05 957 555 javax\servlet\LocalStrings.properties*
    2008-01-28 10:05 968 562 javax\servlet\LocalStrings_fr.properties
    2008-01-28 10:05 1001 584 javax\servlet\LocalStrings_ja.properties
    2008-01-28 10:05 330 206 javax\servlet\RequestDispatcher.class
    2008-01-28 10:05 473 258 javax\servlet\Servlet.class
    2008-01-28 10:05 360 215 javax\servlet\ServletConfig.class
    2008-01-28 10:05 1404 562 javax\servlet\ServletContext.class
    2008-01-28 10:05 833 381 javax\servlet\ServletContextAttributeEvent.class
    2008-01-28 10:05 318 198 javax\servlet\ServletContextAttributeListener.class
    2008-01-28 10:05 624 318 javax\servlet\ServletContextEvent.class
    2008-01-28 10:05 267 183 javax\servlet\ServletContextListener.class
    2008-01-28 10:05 940 462 javax\servlet\ServletException.class
    2008-01-28 10:05 637 432 javax\servlet\ServletInputStream.class
    2008-01-28 10:05 3155 1390 javax\servlet\ServletOutputStream.class
    2008-01-28 10:05 1381 615 javax\servlet\ServletRequest.class
    2008-01-28 10:05 944 408 javax\servlet\ServletRequestAttributeEvent.class
    2008-01-28 10:05 318 199 javax\servlet\ServletRequestAttributeListener.class
    2008-01-28 10:05 846 390 javax\servlet\ServletRequestEvent.class
    2008-01-28 10:05 267 182 javax\servlet\ServletRequestListener.class
    2008-01-28 10:05 4180 1389 javax\servlet\ServletRequestWrapper.class
    2008-01-28 10:05 733 388 javax\servlet\ServletResponse.class
    2008-01-28 10:05 2594 1000 javax\servlet\ServletResponseWrapper.class
    2008-01-28 10:05 148 120 javax\servlet\SingleThreadModel.class
    2008-01-28 10:05 1323 627 javax\servlet\UnavailableException.class
    2008-01-28 10:05 3580 1691 javax\servlet\http\Cookie.class
    2008-01-28 10:05 8125 3871 javax\servlet\http\HttpServlet.class
    2008-01-28 10:05 1420 636 javax\servlet\http\HttpServletRequest.class
    2008-01-28 10:05 3579 1098 javax\servlet\http\HttpServletRequestWrapper.class
    2008-01-28 10:05 2611 1174 javax\servlet\http\HttpServletResponse.class
    2008-01-28 10:05 3028 1011 javax\servlet\http\HttpServletResponseWrapper.class
    2008-01-28 10:05 872 427 javax\servlet\http\HttpSession.class
    2008-01-28 10:05 292 191 javax\servlet\http\HttpSessionActivationListener.class
    2008-01-28 10:05 317 208 javax\servlet\http\HttpSessionAttributeListener.class
    2008-01-28 10:05 1109 468 javax\servlet\http\HttpSessionBindingEvent.class
    2008-01-28 10:05 277 183 javax\servlet\http\HttpSessionBindingListener.class
    2008-01-28 10:05 288 195 javax\servlet\http\HttpSessionContext.class
    2008-01-28 10:05 626 321 javax\servlet\http\HttpSessionEvent.class
    2008-01-28 10:05 264 182 javax\servlet\http\HttpSessionListener.class
    2008-01-28 10:05 4391 2333 javax\servlet\http\HttpUtils.class
    2008-01-28 10:05 1450 705 javax\servlet\http\LocalStrings.properties
    2008-01-28 10:05 1568 787 javax\servlet\http\LocalStrings_es.properties
    2008-01-28 10:05 1534 739 javax\servlet\http\LocalStrings_fr.properties
    2008-01-28 10:05 2236 856 javax\servlet\http\LocalStrings_ja.properties
    2008-01-28 10:05 1271 732 javax\servlet\http\NoBodyOutputStream.class
    2008-01-28 10:05 5065 1751 javax\servlet\http\NoBodyResponse.class
    2008-01-28 10:05 17280 4431 javax\servlet\resources\XMLSchema.dtd
    2008-01-28 10:05 7363 2171 javax\servlet\resources\datatypes.dtd
    2008-01-28 10:05 46838 7400 javax\servlet\resources\j2ee_1_4.xsd
    2008-01-28 10:05 14511 3168 javax\servlet\resources\j2ee_web_services_1_1.xsd
    2008-01-28 10:05 10081 2377 javax\servlet\resources\j2ee_web_services_client_1_1.xsd
    2008-01-28 10:05 9178 2562 javax\servlet\resources\jsp_2_0.xsd
    2008-01-28 10:05 17810 3491 javax\servlet\resources\jspxml.xsd
    2008-01-28 10:05 16797 4379 javax\servlet\resources\web-app_2_2.dtd
    2008-01-28 10:05 31096 7596 javax\servlet\resources\web-app_2_3.dtd
    2008-01-28 10:05 36887 6698 javax\servlet\resources\web-app_2_4.xsd
    2008-01-28 10:05 27914 5655 javax\servlet\resources\web-jsptaglibrary_2_0.xsd
    2008-01-28 10:05 3805 1453 javax\servlet\resources\xml.xsd
    # Total Size Packed Files
    # 312064 84328 67
    Edited by: everyday.is.Christmas on May 2, 2008 6:47 PM

  • Can you please look into this: Dblink from Oracle to postgres

    https://forums.oracle.com/message/11204905#11204905

    You posted this just 3 minutes after posting in the other forum.   This is essentially crossposting.  The other forum is probably the more appropriate one for your question.
    Patience, Grasshopper
    You posted this follow-up a mere 3 minutes after posting in the other forum
    These forums are not a chat line, and not paid support.
    Everyone here has a job for which they are paid, and this forum is not it.
    No one is responsible for monitoring it and giving a quick response. 
    Furthermore, it is a global forum.  The person with the information you seek may very well live 20 time zones away from you and was going to bed just as you posted. He will not even see your post for several more hours. 
    Your original post went up in the middle of the night for half the world.
    =====================
    Oh, and by the way, "This is not working" is totally devoid of any actionable information.  Oracle emits actual error codes for a reason.

  • _d2d_compute_bitmap_mem_size crashing too often. Source: gfx/cairo/cairo/src/cairo-d2d-surface.cpp:1190. This was is really bugging me bad, can you please look into this?

    https://crash-stats.mozilla.com/report/index/bp-9a296328-dbce-40c7-a778-3c2392110809

    Sounds like a problem with Direct2D.
    Try to toggle some Boolean gfx.font_rendering prefs on the about:config page to disable some features and maybe set gfx.direct2d.disabled -> true to disable Direct2D.<br />
    Filter: gfx
    You can also try to disable hardware acceleration in Firefox:
    *Tools > Options > Advanced : General: Browsing: [ ] "Use hardware acceleration when available"
    *Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily if the Menu Bar is hidden.
    *Use "Firefox > Options" instead of "Tools > Options" if the menu bar is hidden.

  • Hi, I have tried to use FaceTime using both my Mac and iPhone, it showed it was connecting, but can't not be connected, and it will just show call failed. could you please look into it? thanks

    Hi, I have tried to use FaceTime using both my Mac and iPhone, it showed it was connecting, but can't not be connected, and it will just show call failed. could you please look into it? thanks

    There is an issue with facetime at the moment http://www.idownloadblog.com/2014/04/17/facetime-connectivity-issues-reaching-ma ny-ios-users/

  • I am having mac book. I order for I-boost up software for $9.99 on 5th oct 2012 installed and paid through credit card. Again on 8th oct2012 my credit card debited with $9.99 please look into matter why this amount debited ,if wrongly debited please refun

    I am having mac book. I order for I-boost up software for $9.99 on 5th oct 2012 installed and paid through credit card. Again on 8th oct2012 my credit card debited with $9.99 please look into matter why this amount debited ,if wrongly debited please refund.

    Apple deosn't respond here, just other users like you.
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • Cofirmation #214861700.  Would you please look into it?  Thanks.

    Please look into my refund for cancellation.  Confirmation #214861700.  Thank you.
    Pat Reger

    I have called Adobe  three times and each time have been told the refund will be or has been refunded or "we are looking into it", but so far, the $29.88 still has not been credited to my Visa
    account..  It was deducted on 2/09/15.  I think that is more than enough for it to be "looked into".   Please do more than check in to it.  Please refund the amount.  Thanks very much.
    Pat

  • Experts in lsmw look into this

    hi,
    iam doing lsmw with batch session, here i want to set some condition, so that it will check that condition and that particular screen wil come into picture.  Where i have to write this condition.
    need it urgent

    Hi,
    You can do following things in step number 6.
    In this step you can process the reusable rules of a project:
    Fixed value: Here you can specify length, type, flag for lowercase/uppercase and value in addition to the description.
    Translation: Here you can enter information on the source field and the target field:
    If you are creating a new translation you have to save data before you can change to Control information.
    Control information: Here you can define the translation type. You can specify which of the two translation tables will be searched for a value first and which alternative will be selected, if no suitable entry is found:
    1:1 translation values: Here you specify the value table to be used during translation. You may also upload the values from a PC file (text separated by tabs). In addition, F4 help is available in column "New value".
    important
    During translation, only values for which the OK flag was set are included.
    Interval translation values: Here you specify the value table to be used during translation by intervals. You may also upload the values from a PC file (text separated by tabs). In addition, F4 help is available in column "New value".
    important
    During translation, only values for which the OK flag was set are included.
    Regards,
    pankaj singh
    <i>****  mark all helpful answers</i>

  • The first 7 or 8 letters of a sentence are jumbled as I type. This happens only after a period of inactivity. Short or long. I start to type and a word like 'anybody', looks like this: 'ybodyan' I have done all the normal fixes. No luck. Ideas? Thx

    The first 7 or 8 letters of a sentence are jumbled as I type. This happens only after a period of inactivity. Short or long. I start to type and a word like 'anybody', looks like this: 'ybodyan' I have done all the normal fixes. No luck. Ideas? Thx

    It's in every text-input app I use in my normal day.....most frustrating as you have to do a doublecheck especially in documents which do not have any special spellcheck system. I've done the cleanmymac, maintenance, cocktail, PRAM reset, Font Cache Smash fixes.....and still I'm dogged by this. Its almost as though the motherboard or some interface system is 'sleeping' longer than it should (if there are any input areas of the MBP which rest during short periods of inactivity) and then the initial keystrokes on the keyboard are somehow not registered and only 'kick in' once half of a new word's characters are already on the screen........grrrrr.

  • Select statements where we have to write in crm 7.0

    hi
    i am new to sap crm 7.0
    1)where we are useing select statments in sap crm 7.0
    where we have to write the code as a crm technical consultant
    at which level genil or bol .if we write can u plz let me knw with clear answer.

    Subhani,
    Writing queries in CRM is always tricky. The question you have asked is very general, still i will try my hands on it for the larger benefit of the community.
    One should avoid writing queries on UI layer - As a general practice writing queries on UI is not appreciated because it hampers performance to a large extent.
    Use of standard FM instead of queries - There are several standard FM provided by SAP which serves most of the purpose for which queries may have to be written, they are written in a way so as to optimize the DB connect.
    BOL/GenIL - Incase the interaction with the DB table is very frequent, Query must be written in BOL/GenIL layer, this is done in order to have a steady framework and avoid frequent DB connect.
    If you have any specific query, feel free to post it but be more elaborative so that community members can help.
    Regards,
    Harshit Kumar

  • Illustrator Shape Builder Tool:  After the latest CC update, the tool alters shapes once edited instead of just removing/adding the desired shape.  Anyone else run into this and/or have any fixes?

    I am using a PC and installed the latest update of all the CC programs I use (AI, PS, AE, etc.) and within Illustrator I've noticed the Shape Builder Tool doesn't behave exactly as it did in the past. (And not in a good way.)
    Previous versions allowed me to edit/add/remove shapes from one another without issue (leaving all shape paths as they were before the editing while making the desired alterations), but the newest behavior seems to alter existing paths once shapes are merged/deleted making the tool almost non-usable. 
    Not sure if there's a check box I'm missing or what, but have done some brief research on the problem and haven't found anything helpful.  If anyone has run into this issue and/or knows a way to correct it, I would greatly appreciate it
    Thanks!

    Please show a screenshot before and after.

Maybe you are looking for

  • When I apply redaction, a white line partially appears around redacted area

    I'm hoping you can help me figure out an issue. I created a redaction action wizard in Pro X (Windows 7 Ultimate) to change the name of the month for 280+ client reports. I use a new copy of the master file each month (the month always being redacted

  • Everything in my iTunes has disappeared, how do I get it back?

    Basically, I went into my iTunes to discover that everything (Music, TV Shows, Films etc.) has disappeared. I have regretingly not back up my files, therefore I am asking if anyone knows how to get my files back?

  • Difference between "Add File to Library" and "Import"

    I was just wondering...what is the difference between the "Add File to Library" option and the "Import" option in iTunes? Does one add the files to your iTunes Music folder and one leaves it in its current location? What exactly is the difference?

  • IBooks hyperlinks don't work anymore

    After upgrading iBooks, my proof iBooks have disappeared on the iPad, but even worse, all hyperlinks (opacity 0%) don't work anymore. Is there a solution? Regards, Linda

  • Photo stream/Camera issues on iPhone 6, iOS 8.3?

    I have an iPhone 6 on iOS 8.3 and there were lots of previously taken photos without locations and I wanted to add them in. So, I connected my phone to my MacBook Air and imported my phone pictures into an album on my Mac. I individually added the lo