Chart Code/Display Problem!?!?

Hey Pros out there,
I have some FINISHED_DATEs, like
04.02.09
11.02.09
14.02.09
15.03.09
28.06.09
and an item to switch the year :P2000_CR_YEAR.
Now I like to create a 3D coulumn chart and have some porblems with the code.
The result should look like this:
Jan: 0
Feb: 3
Mar: 1
Apr: 0
May: 0
Jun: 1
Dec: 0
here is my code:
SELECT   NULL LINK,
         Case to_char(FINISHED_DATE, 'MM.YY')
         when '01.' || substr(:P2000_CR_YEAR, -2) then 'Jan'
         when '02.' || substr(:P2000_CR_YEAR, -2) then 'Feb'
         when '03.' || substr(:P2000_CR_YEAR, -2) then 'Mar'
         when '04.' || substr(:P2000_CR_YEAR, -2) then 'Apr'
         when '05.' || substr(:P2000_CR_YEAR, -2) then 'May'
         when '06.' || substr(:P2000_CR_YEAR, -2) then 'Jun'
         when '07.' || substr(:P2000_CR_YEAR, -2) then 'Jul'
         when '08.' || substr(:P2000_CR_YEAR, -2) then 'Aug'
         when '09.' || substr(:P2000_CR_YEAR, -2) then 'Sep'
         when '10.' || substr(:P2000_CR_YEAR, -2) then 'Oct'
         when '11.' || substr(:P2000_CR_YEAR, -2) then 'Nov'
         when '12.' || substr(:P2000_CR_YEAR, -2) then 'Dec'
       end myMonth,
       count(to_char(FINISHED_DATE, 'MM.YY'))
FROM   MyTable
WHERE  YEAR = :P2000_CR_YEAR
group by to_char(FINISHED_DATE, 'MM.YY')
order by to_char(FINISHED_DATE, 'MM.YY')My code is partial working, but if there are no FINISHED_DATEs in e.g. "Jan" the column and X-axis title is not diplayed or wrong ordered.
I need every month to be displayed.
Invested so many hours now to solve my mistake...but no clue so far.
Any idea? (i guess it is very simple)
Thank you!

Sorry, im noob ;)
Missed 2 lines.....
now it works fine.
with tab as(
select to_date(FINISHED_DATE,'dd.mm.yy') col from myTable
select
NULL Link,
'X-Axis Text',
sum(decode(to_char(col,'mm'),'01',1,0)) Jan,
sum(decode(to_char(col,'mm'),'02',1,0)) Feb,
sum(decode(to_char(col,'mm'),'03',1,0)) Mar,
sum(decode(to_char(col,'mm'),'04',1,0)) Apr,
sum(decode(to_char(col,'mm'),'05',1,0)) May,
sum(decode(to_char(col,'mm'),'06',1,0)) Jun,
sum(decode(to_char(col,'mm'),'07',1,0)) Jul,
sum(decode(to_char(col,'mm'),'08',1,0)) Aug,
sum(decode(to_char(col,'mm'),'09',1,0)) Sep,
sum(decode(to_char(col,'mm'),'10',1,0)) Oct,
sum(decode(to_char(col,'mm'),'11',1,0)) Nov,
sum(decode(to_char(col,'mm'),'12',1,0)) Dec
from tabThnak You

Similar Messages

  • Display problem in some t code in SAP gui 710

    Hello experts
    we are using SAP gui 710,
    some users facing display problem when they run some t code like CS11/MB51 etc.
    the data grid show some rows in disordered manner, however if we download this into excel
    its shows perfect data.
    if user scroll the report as they appear than also many rows goes disturb.
    i can't understand why this happen.
    this is occurring on many front end system or on many tcods.
    plz help me to resolve this.
    Best Regards
    Deepak Singh

    Hi,
    You can check the screen resolution of the user desktop. I feel this could be a reason.
    Regards,
    Deepak Kori

  • Problem of using Run-chart in displaying result history of QM

    Hello all,
    I met a problem about the using of Run-chart in displaying result history of QM, normally, when you use this button to do a statistical chart for checking, the data would be displayed in the measure unit of Inspection Lot. What I want to know is whether there is way for me to change the measure unit from Inspection Lot number to another one (eg. batch number).
    Could anyone be appreciated to give me a short reply?
    Thanks & Best regards,
    Benny

    I think this is not possible
    Develop new program
    Use following Function module For Batch
    1.QRKS_CHARACTERISTIC
    Control chart for a characteristic
    2.QRKS_INSPECTION_LOT
    Control chart for a characteristic/inspection lot
    3.QRKS_MASTER_CHAR_MATERIAL
    Control chart for a master inspection characteristic/material
    4.QRKS_MASTER_CHARACTERISTIC
    Control chart for a master inspection characteristic
    5.QRKS_MATERIAL
    Control chart for a characteristic/material
    Regards
    Sanjay

  • Chart Display Problem

    Hi,
      i want to display chart of several attributes for one batch based upon the time. in chart it display o value when value is not for one attribute but other attribute have value on that time. Is it possible to display chart line starting from mid of the chart and also to stop at mid of chart if value doesnt exist at pariticular time?
    regards
    senthil

    Hi Senthil,
    Could you query each attribute individually via a Transaction?
    Essentially, you will need to acquire the dataset through separate queries.  Ensure that you do not have a record for the null values.
    You will need to use the XML Union action block multiple times to unionise each query result.
    You will need to return this result via an XML output parameter and access it via a query of type Xacute.
    In a nutshell, your result XMl will have multiple Rowset nodes inside the Rowsets node.
    Hope this helps.
    Cheers,
    Jai.

  • Charts Not Displaying in 3.1.1

    Hi,
    I'm teaching a class, running APEX 3.1.1.00.09. Can't get any charts to display. If it is a chart in the Sample Application, I get a "Waiting for Data" message. We tried making a chart using Interactive Reports, get nothing at all. Have installed Adobe Flash Player 9.0.124.0 today from adobe website. Checked that column headings don't have " around them or blank spaces as suggested by others in forum. Any other ideas. Kinda hurts the class to not show off the charting capabilities.
    Warren Capps

    Hi all,
    I have been having the same problem as described here and in my quest to get it sorted I came across the following post:
    Link: http://beyondoracle.wordpress.com/2008/02/11/apex-charts-with-https-connections/
    The significant configuration for by Joao (author of the above blog) and I is that we are using Apache as a reverse proxy in order to use SSL / https.
    In my case I could see the charts without a problem if I went directly to the Apex host from within my firewall, but if I used https via the Apache reverse proxy (either side of the firewall) then I got either the "Loading data. Please wait" or "Waiting for data..." message in place of the chart.
    In summary, I ran the following and it fixed by problem:
    BEGIN
    DBMS_EPG.set_dad_attribute ('APEX','cgi-environment-list','REQUEST_PROTOCOL=https');
    DBMS_EPG.set_dad_attribute ('APEX','cgi-environment-list','HTTP_HOST=<my_host_fqdn>:443');
    END;
    * The effect was instant - no need to restart anything
    I should mention that everything else I had tried in my Apex environment was accessible over https before running the above code.
    I hope this solves your chart problems too, but if not then that it takes you at least one step closer...
    Martin
    Edited by: empee on Aug 31, 2008 11:22 AM

  • 7.0.2 charts wont display in IE 6 Browser

    I recently upgraded to CF 7.0.2 and now my charts aren't
    displaying in my IE-6 browser. I saw the individual hot fixes for
    this problem but it only is mentioned with CF 7.0 and CF 7.0.1. The
    current cumulative hot fix for 7.0.2 doesn't menion this problem.
    Does that imply the problem is suppoed to be fixed for 7.0.2?
    Should I try to run the 7.0.1 hot fix for this against my
    7.0.2 server?
    thanks,
    Bill .

    Your first attempt at fixing this is included in the most
    recent cumulative coldfusion hotfix. This can be downloaded from
    adobe.com somewhere. I am not exactly sure where. We attempted this
    because the hotfix says that it should work but it did not work for
    us and that is why I had to resort to rewriting the rendered chart
    code on the fly.
    Your second resort is to write the string manipulation I
    referred to earlier. The first step in this is to wrap your chart
    code in a cfsavecontent tag and use the variable attribute of that
    tag to save the contained rendered chart code into the variable.
    What will be contained in this variable is the chart code you see
    rendered in the source of your page. So, it is just a big string
    variable. Then, you have a couple choices. The first is you can
    rewrite the code that is written specifically for the IE browsers,
    that which is wrapped in the javascript function, using your string
    manipulation skills. Any help with that will take you to another
    section of the forums. The second option is to move the script
    referenced by the IE specific code in your page to a directory
    accesible via the web. Then, again, use your string manipulation
    skills to rewrite the path to that script with the cfsavecontent
    tag as I described above.

  • Chart digital display bug

    Hi,
    I am using chart with stacked plots and digital display for each of those stacked plots. There seems to be some update bug since if I move the display on the chart weird things start happening. The chart stops to update some plots and also artifacts appear. When I hide the digital display all seems to work as expected. What is the problem? Is it a bug? Is there some work around or do I have to code my own digital display?
    I made a short video to show the problem.
    LV 2011, Win7

    After I wrote my own implementation of the digital displays I realized that this problem appears also if I use separate controls and place them on the graph. Really annoying. The workaround I found, whether using the native charts digital display or your own version, is to force the graph to refresh. This surprisingly cannot be achieved by the method chart.refresh which doesn't help but by toggling for example Legend.ScrolBarVisible. If you toggle this property after writing data into the graph this annoying bug disappears. Other usable properies for this are: chart.visible, chart.updatemode, chart.plot.visible, chart.plot.color
    LV 2010
    LV 2011, Win7
    Attachments:
    DigitalDisplay_Workaround.bug.vi ‏16 KB

  • Need help with pie chart code

    I am new to Java and am having problems and I am in need of some help. I have written the code for my Mortgage Calculator but do not know how to get my chart to work. I found an example of the chart code in my text book but I am not sure if I wrote it wrong. When I run the MortCalc code it compiles but the Pie Chart code won't. I tried to run the chart code by itself but it prints out another calculator. My question is 1.) Is my chart code written wrong? and 2.) How do i enter it into my MortCalc code so that I get my chart?
    **Below I have included the assignment(so you know what I am doing exactly) and below that the pie chart code just in case you have questions. Thanks for any advice you can give.
    **If you need the rest of the code I can post it too. It was too long to post with the pie chart code.
    Assignment:
    Write the program in Java(w/ a GUI) and have it calculate and display the mortgage payment amount from user input of the amount of the mortgage adn the user's selection from a menu of availible mortgage loans:
    --7 yrs @ 5.35%
    --15 yrs @ 5.5%
    --30 yrs @ 5.75%
    Use an array for the mortgage data for the different loans. Read the interst rates to fill the array from a sequential file. Display the mortgage payment amount followed by the loan balance and interest paid for each payment over the term of the loan. Add graphics in the form of a chart.Allow the user to loop back and enter a new amount and make a new selection of quit. Please insert comments in the program to document the program.
    CODE:
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    //Class to hold a value for a slice
    public class PieValue {
    double value;
    Color color;
    public PieValue(double value, Color color) {
    this.value = value;
    this.color = color;
    // slices is an array of values that represent the size of each slice.
    public void drawPie(Graphics2D g, Rectangle area, PieValue[] slices) {
    // Get total value of all slices
    double total = 0.0D;
    for (int i=0; i<slices.length; i++) {
    total += slices.value;
    // Draw each pie slice
    double curValue = 0.0D;
    int startAngle = 0;
    for (int i=0; i<slices.length; i++) {
    // Compute the start and stop angles
    startAngle = (int)(curValue * 360 / total);
    int arcAngle = (int)(slices[i].value * 360 / total);
    // Ensure that rounding errors do not leave a gap between the first and last slice
    if (i == slices.length-1) {
    arcAngle = 360 - startAngle;
    // Set the color and draw a filled arc
    g.setColor(slices[i].color);
    g.fillArc(area.x, area.y, area.width, area.height, startAngle, arcAngle);
    curValue += slices[i].value;

    // Draw each pie slice
    double curValue = 0.0D;
    int startAngle = 0;
    for (int i=0; i<slices.length; i+) {
    // Compute the start and stop angles
    startAngle = (int)(curValue 360 / total);
    int arcAngle = (int)(slices.value * 360 / total);Look here and i think you will find some syntax errors.
    Count the brackets.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Display Problem with RowHeader of a Scroll Pane

    Hi,
    I am trying to display row headers for a table using another table
    Here is the code
    import javax.swing.*;
    import javax.swing.table.*;
    public class RowNumberHeader extends JTable {
      protected JTable mainTable;
      public RowNumberHeader(JTable table) {
        super();
        mainTable = table;
        setModel(new RowNumberTableModel());
        setRowSelectionAllowed(false);
        JComponent renderer = (JComponent)getDefaultRenderer(Object.class);
      public int getRowHeight(int row) {
        return mainTable.getRowHeight();
      class RowNumberTableModel extends AbstractTableModel {
        public int getRowCount() {
          return mainTable.getModel().getRowCount();
        public int getColumnCount() {
          return 1;
        public Object getValueAt(int row, int column) {
          return new Integer(row + 1);
    }and then
            JTable displayTable = new JTable(...);
            scrollPane = new JScrollPane(displayTable);
            JViewport jvp = new JViewport();
            jvp.setView(new RowNumberHeader(displayTable));
            scrollPane.setRowHeader(jvp);the problem I have is that when a row is selected inside the row header, some rows go blank and you can see the selection is all screwed up. I tried setting the selection mode to ListSelectionModel.SINGLE_SELECTION but that didn't help.
    A refresh of the entire screen (minimize/maximize) seems to resolve the problem. I am using jdk1.4.1 in Windows 2000.
    Any ideas?
    Sylvain

    Again the problem is that when you click on the row headers, some row header rows go blank (completely white) so you can't see what they show.
    ie say I have table
    Row 1 - 1  2  3
    Row 2 - 2  4  5
    Row 3 - 5  7  7
    Row 4 - 5  6  7where Row X is the row header. So for example, if you click on Row 2, you will get something like
    Row 1 - 1  2  3
    Row 2 - 2  4  5
          - 5  7  7
    Row 4 - 5  6  7until the screen is refreshed or you click some other row header.
    hmm ok, I added calling repaint on the table whenever a row is selected and at least the display problem goes away; however, the selected indexes from the event don't always match the index of the row selected. I think actually that may be the source of the display problem.
    Here is the code I added in the constructor:
            getSelectionModel().addListSelectionListener(new ListSelectionListener()
                public void valueChanged(ListSelectionEvent e)
                    System.out.println("Header table selection is: First = " + e.getFirstIndex() +
                                       " Last = " + e.getLastIndex());
                    RowNumberHeader.this.repaint();
            });

  • HTML code displays on one line in browser view source

    Hi,
    In Dreamweaver, my HTML code displays returns, spaces, etc. However, in the view source option in a browser (Firefox in particular), all the code is displayed on one single line. I only found about this because I was having problems with my Google Ads not displaying. (A Google customer service person helped me to find a workaround for this since I still haven't figured how to get my code to display correctly.) So I have gone to Preferences in DW and changed my Code Format Line Break type. The result is the same with each of the three options: the code is all on one line when you check it under view source in a browser. (The server is Linux.)
    Does anyone know how to fix this? Also, I think I know how this happened in the first place. I copied my code to TextEdit for a quick backup the other day, and then I pasted it back to DW. Bad idea? Is the only way to get the code back to normal to re-write it in a new HTML file in DW?

    Pssh. Problem solved, but I'm not quite sure how. I did go back and try to clean up some redundant CSS and other things, but the HTML/CSS validator still shows that I have this one invalid <header> tag (www.nextmontenegro.com), but since that was written as part of the DW template, I just left it. Weird. Anyway, the code flows down the page now.
    Thanks for the quick replies and helpful hints:-)

  • Windows 7 64 bit on iMac display problems and instability

    I received my iMac 27" quad core with 8 gig ram & 2 x 1 TB hard drives last Friday. I'm using Boot Camp to run windows 7 64 bit on maximum 2560 x 1440 screen resolution.
    I get intermittent but often display problems in windows 7. I get areas of the screen covered in little yellow dots or blue squares (never red artefacts.) This will happen at random areas of the screen, inside an open window, around borders of windows and so on. Most often the screen will go black and come back with a message in the bottom right corner of the screen saying 'Display driver has stopped responding and has recovered' with the sub message saying 'display driver ATI radeon family stopped....etc'. Sometimes I lose the screen wallpaper. Once I've had the system just shut down, once I've had Photoshop seize up and I had to do a cold reboot. Could this be an overheating problem or resolution too high problem or driver problem? Windows 7 tells me my drivers are up to date. I tried installing the drivers for the card from ATI's website which made no difference
    The reason I bought a Mac is because it's the only effective way to code for the Mac family of OS's in XCode. The reason I didn't just attach a miniMac to my PC monitor was because there's rather a lot of advertising by Apple about the fact that you can use a Mac with a PC OS via Apple's own Boot Camp. Now I have a lot of Windows software (some of which is not available for the Mac or requires buying again) sitting on an unstable system. Any ideas would be much appreciated...

    Sorry, that thread got moved for edit and as a user tip... which I didn't want and won't be doing....
    Here is the post:
    A tip and workaround for how to get ATI mobility/laptop drivers so that Windows no longer thinks the ATI is a desktop card:
    http://discussions.apple.com/thread.jspa?messageID=11286987
    Summary (my own edit steps):
    1. Install Boot Camp 3.0 and upgrade to 3.1
    2. Uninstall graphic drivers and run Driver Sweeper
    http://www.guru3d.com/category/driversweeper/
    instead of:
    removing the crashing driver by going into windows 7 setup via its install cd and deleting the ati driver manaully
    3. Install ATI Mobility (link)
    4. Uninstall ATI (Programs control panel?) Device Manager (rollback; uninstall?)
    5. Device Nanager: update driver and BROWSE BACK to 8.681 (the original apple driver that was causing freezes and purple artifacts) - navigate to /Apple/Drivers/ATI
    (Apple uses) a 4850 card in the iMac, its modified a bit for apple. Enough that desktop drivers don't work, and modded-for-laptop desktop drivers don't work either.
    Now the upshot of using modified drivers is that it FORCES the catalyst control panel to be installed, meaning you get a few more options to mess around with the card.
    I couldn't use the original apple drive, it locks up, the newer one had banding, the newer radeon drivers direct form ATI wouldn't work until they were modded and then they cause black screens.
    SO the solution, as obscure as it was, was to download ACTUAL mobility Radeon drivers - version 10.3 still, but made for laptops.
    http://support.amd.com/us/gpudownload/Pages/index.aspx
    THESE drivers I was able to install - and here is where things changed.
    THIS driver changed they way windows saw the video card in device manager.
    As I mentioned before, its NOT a desktop card, its a modified laptop card, but installing mac drivers makes windows THINK its a full desktop card, and running the original 8.681 driver crashed it.
    Once installed 10.3 LAPTOP driver it now appeared in device manager as a MOBILITY card.
    +These Steps "should" work:+
    delete ATI driver manually
    reinstall apple driver after that and see if that works,
    otherwise try the steps above
    (mod drivers, remove via windows recovery off setup disk, install laptop drivers, reinstall apple driver over it)

  • How do I get an XY Chart to display properly while using embedded loop

    s to periodically read multiple channels of similar data? (multi-Y versus specified time) The plot just becomes a point or a single plot of all values taken at one scanning of all channels. I want multiple plots over time updated at the time of scanning.I have also stored my data in a daily text file that is tab delimited. The text files consists of a row of text column headers, a blank row and then rows of data. The data rows are mixed data types. The first column is a date/time such as Mar 1, 2002 12:01 pm. The remaining columns are numeric data. I can't seem to get my data to plot properly in an XY chart from memory and am having problems parsing the data with mixed data types in the data r
    ows. The format I am using works great for viewing the history files in Excel.
    When I plot the data, I either get a single point or a a series of points for a single reading of all channels or I get a line connecting all data for that single scan reading. What am I doing wrong? At this point, I don't care if I read the data from the file to plot it or if I can just get Labview to plot correctly as the data is gathered without going to the history file.
    As noted in the summary question, I have embedded loops in my applicaiton. I have a while-loop that determines the scan rate and keeps the program running until it is turned off. Inside of that, I have a for-loop (in a subVI) which scans all my data channels.
    Thanks for your help.

    s to periodically read multiple channels of similar data? (multi-Y versus specified time) The plot just becomes a point or a single plot of all values taken at one scanning of all channels. I want multiple plots over time updated at the time of scanning.XY plots expect a cluster containing two 1D arrays for the X and Y
    coordinates of the individual points. If you want multiple plots you can
    supply an array of these clusters but you have to resupply the "x" array
    for each of them.
    Hope that helps,
    Rudolf
    Adrien wrote:
    : How do I get an XY Chart to display properly while using embedded
    : loops to periodically read multiple channels of similar data? (multi-Y
    : versus specified time) The plot just becomes a point or a single plot
    : of all values taken at one scanning of all channels. I want multiple
    : plots over time updated at the time of scanning.
    : I have also stored my data in a daily text file that is tab delimited.
    : The text files consists of a row of text column headers, a blan
    k row
    : and then rows of data. The data rows are mixed data types. The first
    : column is a date/time such as Mar 1, 2002 12:01 pm. The remaining
    : columns are numeric data. I can't seem to get my data to plot
    : properly in an XY chart from memory and am having problems parsing the
    : data with mixed data types in the data rows. The format I am using
    : works great for viewing the history files in Excel.
    : When I plot the data, I either get a single point or a a series of
    : points for a single reading of all channels or I get a line connecting
    : all data for that single scan reading. What am I doing wrong? At
    : this point, I don't care if I read the data from the file to plot it
    : or if I can just get Labview to plot correctly as the data is gathered
    : without going to the history file.
    : As noted in the summary question, I have embedded loops in my
    : applicaiton. I have a while-loop that determines the scan rate and
    : keeps the program running until it is turned off. Inside of
    that, I
    : have a for-loop (in a subVI) which scans all my data channels.
    : Thanks for your help.

  • Display problem in JRE1.5 same works with 1.4.2

    I have a complex swing GUI code with JTree that has display problem. The code works well with JRE1.4.2. When opened with JRE1.5_<> the display is not working. Resizing with a mouse displays though. Programmatic resize doesn't work.

    I suggest you compile with 1.5 using the appropriate values of the -source and -target options to the javac command that cause it to emit 1.4 code - and see what happens.
    And also review the changes and bug fixes made between the two Java versions that you're comparing, looking for changes that account for the difference you're seeing.

  • Pie chart to display top 5

    I am using pie chart to display the top 5 countries based on the values. For this, i created an advanced option where on the change of is country with TopN being 5 including others and show values is Pth pecentile (P=50) of @value percent.
    The problem is that the pie chart percentage is showing as 52.2% for a country and the detail information below is showing 39.38% which is calculated based on value / total value * 100. The same formula is used for the pie chart as well.
    Is this how its supposed to behave or should it show the correct value on the pie chart? How can i achieve the correct value.
    thanks

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:

  • Display problems in IE, using Netlace Designs approach

    Display problems in IE, using Netlace Designs approach
    Could someone please look at
    www.tudo.co.uk/testing/magnification/
    I am trying to adjust some css code taken from Netlace
    Design's website
    for my purposes. The purpose is to enlarge an image on
    'hover' and to
    enlarge some text on 'hover'.
    What I have done works all right in Mozilla/Seamonkey.
    However, in IE,
    the 'text enlargement' does not work at all
    and when I am enlarging the image there is ***in IE*** a
    large grey
    surplus area at the bottom, which looks like a background
    area which has
    turned out to have too much height. I want to get rid of that
    superfluous grey area.
    How can I make sure it works in BOTH Mozilla and in IE?
    Thanks for your help.
    Adrian

    Hi ijmari,
    I checked out that page and don't see any Spry menubar in it.
    I'm assuming you've reverted back or removed it.
    If you still need/want help, please post the URL to the page
    that uses the menubar and demonstates the problem.
    --== Kin ==--

Maybe you are looking for

  • IPod not playing re-ripped tunes with higher bit-rates

    Since I got my iPod and have more storage I have been slowly re-ripping some of some tunes at a higher bit rate. iTunes doesn't appear to try to sync these songs and re-upload them to the iPod. What happens is that the song stops playing part-way thr

  • How do I turn off privacy setting in Safari?

    Yahoo won't allow me to check email.  Says to go to Settings / Safari / privacy / Turn off.  I can't see where I can do that???

  • I need to upgrade from Mac OS x 10.6 8 what is the next step?

    I need to upgrade from Mac OS x 10.6 8 what is the next step?

  • How to add two time

    hi,    My scenario is    current date '20100920'  time is '054115'. i want to add 74 hours with this. i want output like  date '23100920'  time is '074115'. Thanks, Arun. Moderator message: date calculation questions = FAQ, please search before posti

  • Bapi For Stock Transfer

    Dear Gurus, I have an requirment to develop an RFC for Stock transfer Process.. In this process it involves 4 transactions 1. ME21N 2.VL10B 3.VL02N 4.MB01. I am using  two BAPIs BAPI_PO_CREATE1 BAPI_GOODSMVT_CREATE  for PO creation and for MB01.But I