SCATT Help.

Hi,
I have to create SCATT for the following.
Select vendors with payment method T in a company code
Table LFB1-ZWELS
Find all open items for these vendors
FBL1N
Update the payment currency to USD
FB02 .
Please guide me step by step to do this in scatt with transaction codes.
Thanks in advance.
Micheal

Hi,
Transaction code is SECATT for recording of scripts and SCAT for managing them.
I have written series of 9 articles step by step for eCATT. Kindly find the following link for details -
/people/sapna.modi/blog
Hope this helps you.
PS If the answer solves your query, plz close the thread by rewarding each reply and marking it Sovled.
Regards

Similar Messages

  • Help Needed in Crystal Reports 2008 Charting - XY Scatter

    Hi,
    I need to create a XY Scatter plot using CRYSTAL 2008.i have to create 7 graphs of same XY Scatter plots in one single report.the 7 graphs i said because i have a Cost category object which will have 7 categories.so for each category i have to show one XY Scatter plot.
    However the data only changes between  each category. i have to use the same objects for all the 7 plotters.
    there will be a 1 dimension object and two measure objects in this.
    So how to develop the report for this requirement?
    Urgent help is needed.
    Regards,
    Kishore. .
    Edited by: NandaKishore A.V on Feb 23, 2012 8:30 AM

    hi Kishore,
    if you Insert another Group on Category, and then move your chart into the Category Group Header, does that solve the issue?
    jamie

  • Help needed with Scatter Graphs

    Hi,
    I have a requirement wherein I need to plot a graph with <b>X-Axis</b> as the <b>months of  a year in text format(eg:Apr,May...)</b> and <b>Y-Axis</b> as the <b>sales data for the corresponding month</b> for <b>n no. of years</b> . This data will be fetched from an RFC . As far as I know , I need to use a <b>Time-Scatter Graph</b> .Can anyone please guide me on how to go about this . Any help will be highly appreciated and suitably rewarded with points.
    Regards,
       Tahzeeb

    Hi tahzeeb,
                      Hope this will help
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/9a/a04d29a6d611d2960500a0c9308b1f/frameset.htm">http://help.sap.com/saphelp_nw70/helpdata/en/9a/a04d29a6d611d2960500a0c9308b1f/frameset.htm</a>
    regards
    Sumit

  • Help with scatter chart from scratch!

    I need to do a scatter chart using numbers on mac. Help section says to choose x & y axis I cant find where to do that I have never done a scatter chart before I have all data on another chart to which I need to add scatter chart Report due Monday!

    To me... the easiest way to make any chart is to make sure nothing is selected on a sheet, then select the chart type I want from the Chart Menu in the toolbar:
    This will insert a new chart with some made up data (default) data which you can now modify:
    If you have only one series of data then you can click the chart to select, then grab (click and hold)) the little circle at the bottom right of the highlighted section in the table and move it to the left to adjust the amount of data presented in the chart:
    I would also suggest downloading the Users' Guide to assist:
    http://support.apple.com/manuals#macosandsoftware

  • Scatter Chart Error Bars Help

    I'm new to using iWork for my lab reports and today, while I was plotting a scatter chart, I had to put some error bars on the points in percentage form. The value for the x-axis was 0.5% and the value for they y-axis was 1.5%, and when I tried to input these, the only thing I got was the error sound and the error bars returning to 3% and 1% respectively. Anyone know why this is happening and how i might resolve this issue? Thank you in advance.

    Angelos,
    I'm sure that your eyes are sharper than mine. Still, if your error bar is shorter than the radius of your symbol, you aren't going to see it. The standard symbols are roughly 4mm in diameter, based on the Numbers Rulers. Let's say you have a 100 mm tall chart, an average graphic size. A 0.5% error bar would be a maximum of 0.5 mm in length, unless you suppress the axis zero, and would be hidden behind the 4 mm dia. data symbol. Yes, you could see a 3% or 4% error bar, but I'm not sure everyone would recognize that it was an error bar and not part of the data symbol.
    Regards,
    Jerry

  • Help, Need XY Scatter Plots.vi

    After getting a VI working, I realized I corrupted my XY Scatter Plots.vi
    which is in the examples under Building User Interfaces, Displaying Data, Graphs and Charts.
    All my subVI's are fine, I just need the main XY Scatter Plots.vi is somebody would not
    mind attaching.
    Thanks in advance.

    You would also need to tell us what LabVIEW version you have. Have you tried just reinstalling LabVIEW?
    LabVIEW Champion . Do more with less code and in less time .

  • Can U look at my code and give me any idea why the scatter garph didnt work

    Hi,
    i use this code to create a scatter graph using bean in oracle 10g forms and it didnt show the points.. it only show an empty graph although the cursor return data..Please if anyone know whats the problem i would be so thankful.
    And here is the code:
    DECLARE
    cursor c is
    SELECT
    FRA_YEAR, -----> X
    TOTAL_AMT_IN_BASE -----------> Y
    FROM TMP_GRPH
    ORDER BY FRA_YEAR;
    cdata varchar2(2000);
    vd varchar2(2);
    X NUMBER;
    Y NUMBER;
    COUNTER NUMBER;
    cdata varchar2(2000);
    vd varchar2(2);
    X NUMBER;
    Y NUMBER;
    COUNTER NUMBER;
    BEGIN
    set_custom_property('CHART.SIMPLEGRAPH',1,'CLEAR_GRAPH','');
    SET_CUSTOM_PROPERTY('CHART.SIMPLEGRAPH',1,'DEBUG','TRUE');
    VD := ',';
    COUNTER := 0;
    OPEN C;
    FETCH C INTO X,Y;
    while (C%FOUND) LOOP
    CDATA := X||VD||X||VD||Y||VD||Y;
    set_custom_property('CHART.SIMPLEGRAPH',1,'ADD_ROWDATA',CDATA);
    FETCH C INTO X,Y;
    END LOOP;
    set_custom_property('CHART.SIMPLEGRAPH',1,'GRAPHTYPE','SCATTER_GRAPH');
    set_custom_property('CHART.SIMPLEGRAPH',1,'ADD_DATA_TO_GRAPH','');
    CLOSE C;
    set_custom_property('CHART.SIMPLEGRAPH',1,'SHOW_GRAPH','');
    EXCEPTION
    WHEN OTHERS THEN
    MESSAGE('SQLCODE='||SQLCODE||SQLERRM);
    MESSAGE('SQLCODE='||SQLCODE||SQLERRM);
    end;
    note:
    FRA_YEAR is the X-axis
    TOTAL_AMT_IN_BASE is the Y-axis
    Thanks alot
    Eyad Basheer

    Hi,
    please see the html help file (graph90.html) that comes with the Graph bean sample. The debug option is enabled with a call to set_custom_poperty('blockname.beanarea',1,'DEBUG', true)
    The messages are written to teh JInitiator console (see right bottom corner of windows to open)
    Frank

  • Scatter chart with two series?

    I have a table showing my cat's weight each day. (He's on a much needed diet and it's important to make sure he's losing weight, but not more that about 1% per week, as I experiment with his diet.) I created a scatter chart with the date on the X axis and his weight on the Y axis, and I made a 7 day moving average trendline to show his progress with most of the random daily fluctuations evened out. So far so good.
    I added a column to the chart with a function showing what his weight would be each day if it decreased 1% per week from the average of the previous week. I would like to add this column of data as a second series on the scatter chart so I can make sure he's not losing weight too fast. But I can find no way to do this.
    I had no trouble showing both series on a line chart. But no luck with the scatter chart. I tried creating a new scatter chart using all three columns of data, and I tried dragging the third column of data to the original scatter chart.
    Is it really possible that Numbers '09 cannot show two data series on a scatter chart? Or is there a way to do it?
    Thanks for any assistance.
    Bill

    Hi Bill,
    Maybe this will help. A Scatter Chart displays data pairs, such as a date and a weight. A single column of data would be only one half of the data-pair set. Select both the X and Y value columns for the second set and then add to the Scatter chart.
    Jerry

  • High waits on scatter read and buffer busy wait ..

    one of my system is undergoing some serious problem ~
    i checked when some sql querying few large tables ( 30 millions rows ,partioned )
    system waits became significant .. the ones stand out are scatter read and buffer busy wait ...
    on the longop , you can see those sessions waitting to scan the large table ..
    buffer get ratio dropped from 90% to like 30% ,average buffer hit ratio is like 55%
    mu questions are
    1.what's your view of throwing the problem away ?
    add physical memory, then increase data buffer ?
    it's getting scanned very often , but it's too large to pin it in the keep pool .
    2. why buffer busy wait ?
    i don't fully understand why this happened ?
    becase what they are doing are just querying ,nobody is modifing any data ?
    will increase freelist help this ??
    thanks your talneted ideas
    br/ricky

    Have these SQL statements been added recently, or have they been around for a long time. If the latter, then it seems likely that they've changed their execution plan to start doing tablescans (hence db file scattered read waits) or index fast full scans.
    One of the causes of buffer busy waits is concurrent tablescans/index fast full scans - in 10g this particular cause has been split and reported as "read by other session".
    Your first action should be to see if there is a more efficient execution plan for these queries. If the problem is due to a change in execution plan, common causes are: changes in statistics on the objects, failure to change statistics on the objects, changes in input value on the queries, changes in optimizer parameters, unlucky changes in data volumes.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • Trendline in Scatter plot

    Hi,
    I have a couple question on Power View 2010
    1. I want to know if I can plot regression Trendlines(Linear/polynomial/power) on scatter plot?
    2. Navigation between pages- Is it possible to navigate between report pages in Power View 2010 by passing parameters from the first page to the next page?
    3. I have a report that has 3 pages. I want to create 2 pages in SSRS 2012 and one in Power View 2010. Is it possible to navigate between these applications and also pass parameters in the URL?
    Thanks in advance.
    Ankit

    The reason why it hangs is because you have 2 event structures inside a loop. You should only have one event structure in a loop. This is documented in the LabVIEW Help. With 2 event structures one of them will block the other.
    Your code is also about 3 times larger than it needs to be:
    To create the array of names for the dropdowns you only need to autoindex a for-loop from the 2D array of data and use the Format Into String function.  You don't actually need to use the values - you only need to autoindex the for-loop.
    Using Delete From Array and Reshape Array just to pull out a row is simply silly (not to mention a Rube Goldberg). That's what Index Array is for.
    In the Cursor Move event case you only need one function: Index Array. The point index is already available to you from the event case's data.
    Half of the code really belongs outside of the while loop since none of that data ever changes, so what's the point of regenerating it each time?
    Instead of using 2 Index Array functions just to get the list of names, wire a True to the Read From Spreadsheet File's transpose? input and use the first row output.
    I've attached a simplified version of your VI.
    Attachments:
    PCoption2_MOD.vi ‏34 KB

  • How to Generate Excel XY Scatter Smooth Chart in LabVIEW?

    Hi all
    First of all i am a beginner. We can plot the XY Scatter Smooth graph in excel using Report Generation toolkit but how can we generate that in labVIEW? In my application maximum we use only 5 points to plot a graph. From the graph we want to find the X value for a fixed Y value. Manually how i do is i will create an XY Scatter smooth graph in excel and will find the Y value. If we plot this 5 point in LabVIEW it will not be smooth curve and i tried many curve fitting subVI's for making it smooth. But we cannot generate the plot exactly that of excel. Is there any way to read the chart from excel?
    Please help me.
    Thanks & Regards
    Rajesh R. Nair

    Rajesh, I believe I may have what you are looking for. I have some images of the code I have made that generates a XY scatter smooth graph in excel based on a two dimensional array of X and Y points.
    The Code:
    The Result in Excel:
    Please let me know if this is what you are looking for,
                                                      ​                               Shadowfeld
    Attachments:
    Code.vi ‏18 KB

  • Why won't my data appear on my scatter plot graph in numbers?

    I'm making a scatter plot graph and I'm dealing with very small numbers on my x-axis, such as 0.0004 and 0.184 on my y-axis. Every time I plot the scatter plot graph, nothing appears on the graph. Can anyone please help me? Thanks.

    just to check in your notification centre,(settings>Notification centre>Messages) did you enable show alerts from everyone? if so
    Do a reset by holding the power and home button until the apple logo appears ignoring the slide to power off (no data loss).

  • How do I connect the scatter plot points in the newest numbers?

    I just made a scatter plot for biology and I was wondering how I connect the points with lines

    It sounds like all of your wireless clients (computers & printer) are having issues with the overall signal quality of your Wi-Fi network.
    I suggest that you check out the following Apple Support article on the sources of Wi-Fi interference and try to identify & eliminate as many as possible to improve your wireless network.
    You may also find the following Macworld article helpful on troubleshooting for Wi-Fi interference. Although this article is specific to the AirPort routers, it can equally apply to any manufacturers' product.

  • Plotting Data Incorrectly in a Scatter Plot

    I am trying to plot a graph using a scatter plot in Numbers, and all of the data points are correct except for one. If you look at the data, you can see that the point that is at .00360 on the y axis(the highest point on the graph) is supposed to have an x value of .001 but instead it is too far to the right (closer to .1). This is throwing off my graph and I really need to get this fixed. Below are the links to the data table and the graph. Thanks for any help!
    http://img686.imageshack.us/img686/7/picture3wc.png
    http://img20.imageshack.us/img20/2035/picture4pe.png

    Hi Tom,
    I tried recreating your table and chart, typing in the numbers rather than having any of them calculated, and manually assigning min and max values to both axes to match yours.
    The chart came out with all data points where expected.
    I did notice another difference in the curve though—where yours shows three data points forming a concave-toward-the-origin section (at the leftmost portion that is correctly plotted), mine shows four data points. That led me to count the points and find that there is one point—(0.139,0.00309)—missing from your chart.
    While I don't see from doing this what may be wrong with your chart, it did bring a workaround to mind that should get you a useable chart before your deadline.
    Insert a new (plain) table into your document and resize it to the minimum needed to hold the two columns of data.
    Select the cells containing the X axis data and Copy.
    Click on cell A1 of the new table and go Edit > Paste Values.
    Repeat for the Y axis data, placing it in column B of the new table.
    Select the data block in the new table then insert a scatter chart.
    If you still get the error, manually edit the data in the cells causing the error.
    That should get you through the short term. I think someone may have to look at the actual file to solve the underlying problem.
    Regards,
    Barry

  • Modify label in a scatter plot

    Hello,
    I need help with a scatter plot ...
    I have 3 columns of datas (column A, B and C).
    I represent A on the X axis, B on the Y axis and C at the intersection.
    I display labels but I need to modify them to display C, near the point. Is it possible ?
    example :
    10     5     test1
    20     10     test2
    and I want
    X test2   
    |  X test1      
    |____________
    Thanks.

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

Maybe you are looking for

  • Lost Photos

    I just lost photos in iPhoto 11. I imported my photos from my Canon point and shoot camera, did some light editing, closed and reopened iPhoto, and they were gone. No trace. Also the last import is an old import. I repeated this whole scenario and th

  • Image Capture Boot Image Fails with 0xc000000f

    I am trying to capture a Windows 8.1 Enterprise (with Update) x64 installation using WDS, but the Capture Image fails to load. I used the boot.wim from the Windows Server 2012 R2 (with Update) ISO to create a boot image in WDS and then a capture imag

  • Strangest most annoying problem!

    I switched on my iBook G3 (10.4.3) this morning and it asked me for a password with the normal Mac login screen. It showed my username, but I had never set up a password. So I just press OK and left it blank. It didn't let me in. So I tried to boot f

  • I have a new update for my iPod Touch 4g. Will I lose everything?

    I just received a software update for my iPod Touch 4th gen. I have heard a lot of people say the lost there stuff and I am scared I will lose everything. Any advice?

  • Quartz in OC4J: javax.naming.NamingException

    We are running Quartz inside OC4J. We start OC4J with -userThreads turned on (e.g. java -jar oc4j.jar -userThreads). When the Quartz Job fires we do a Context lookup from the inside the Quartz execute() method to find a JMS QueueConnectionFactory and