Possibly to do in Crystal or not?

Post Author: Patric
CA Forum: General
Hi,
I have a problem that I think is difficult to solve. If someone could give me a hand I would be very happy.
Basicly I am trying to make a list that shows transactionsfor similary items. These items are replaceable with eachotherbut they are stored in different warehouses. And we want to seeif there is a specific date when a shortage comes up.
If you look at the "Balance" column it simply ads all transactions.from the column "Units Transaction" What I would like to do is to adthe sum of the stockbalance for all  items at the top of the "Balance"column. The "Ideal" Column show  how I want it to be. The stock balance should only count the stockbalance once for item 61030.
Is this possible to do in Crystal? And the 100 $ dollar question. How should I do it. A formel or running total?
Item no     Warehouse          Units Transaction    Balance     Ideal      Stockbalance     Date61038       04                       5                            5               201       19                     10/15/0661039       04                       5                           10              206       19                     10/15/06
61030       01                     -161030       01                     -2                             8               204       147                    03/20/0761030       01                     10                           18              214        147                    03/21/07
61031       02                   -110                          -92             104         11                     03/22/07

Post Author: Patric
CA Forum: General
There is two tables SC03 and SC11 that has information I want to use in myCrystal Report.
Fields in SC03:Item No.WarehouseSaldo/Qty in stock
Fields in SC11:Item No.WarehouseTransactions (in and out)Date for transaction
Example SC03: Item No               Warehouse           StockBalance61038                  04                        1961039                  04                        1961030                  01                       14761031                  02                        11                                             SUM 196
Example SC11:Item No              Warehouse           Transactions            Date61038                04                         5                            10/15/0661039                04                         5                            10/15/0661031                02                      -300                           02/10/0761030                01                        -1                            03/20/0761030                01                        -2                            03/21/0761030                01                       200                           03/22/07                                            SUM -93
All Items No are part in the same family and can with extra workbe converted to another item in the family.For material planing I would like to have a Crystal Report showingif there at a certain date is a shortage of the items considering they can all be converted to eachother.
The stockbalance for all items togheter is 196. The sum of alltransactions is -93. At the end of the period 03/22/07 my combinedsaldo of items in all warehouse is 196-93=103.
But if my stockbalance is 196 and I have two planed in transaction 10/15/065 plus 5. After that I have a planed out transaction of -300 the 02/10/07.
That means that 02/10/07 I have minus -94. So even if I convert all my items to the exact item my customer wants I still dont have enough material.So a express purchase order must be issued very soon.
Does this explanation makes it any more easy to understand what I am lookingfor. I am afraid I have a lack of both english and Crystal/database knowledgetrying to explain myself:)
Is is even possible to do a Crystal Report telling me the information I want?
Hope there are some genius out there:)Patric

Similar Messages

  • Crystal reports not working when integrated security is set to true

    Hello Everybody,
    I have developed 20 crystal reports. When i deploy in my development environment(asp.net) these reports are working fine.My UAT environment is using application pool connection instead of database connection.
    My .net developer has written a code and he set integrated security to true for reports. My problem is reports which are having parameters not working correctly. Reports which are not having any parameters, it is working fine. If i enter parameters in asp .net page, the report is running for all the values. It is not considering the parameter values.
    Thanks
    Ram

    Hi Ram,
    Need more info, what version of CR assemblies, which OS is hosting the app and what patches, CR and OS are installed?
    Have you discussed this issue with your developer? Possibly all of the runtime is not on the app server?
    Thank you
    Don

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • Crystal report problem in add-on(CrystalDecessions.Crystal Engine not found

    HI All,
    i am having a problem with crystal report not opening.
    what is the solution to run the add-on it i ssaying that Crytsal Engine 10.5.3700.0 is not found in assenmly or specified path.
    how can i resolve this error. do i need to add some file while creating the add-on.If so what i have to add.
    Please help me.
    Thanks & Regards
    omprakash

    hi,
    Check this thead
    Problem with Crystal reports deisgner
    Jeyakanthan

  • HT202297 I just bought an ipad3 and I was wondering if anyone knows how to have my reminders displayed in my calendar? If it not possible on the iPad , is it possible on the iphone4s? if not, than does anyone know of any apps that make it convenient to do

    I just bought an ipad3 and I was wondering if anyone knows how to have my reminders displayed in my calendar? If it not possible on the iPad , is it possible on the iphone4s? if not, than does anyone know of any apps that make it convenient to do so?

    That's only for the iPhone 5. On the 4 and 4S, they can repair the back glass in store for $30. They will not replace the display on a 4 or 4S. They must replace the entire phone. Replacing the display on them requires disassembling the entire phone, which they will not do in store.

  • Captivate 5.5 Is it possible to import PPT slides in Notes Page view?

    Hello experts,
    This may seem like an odd question. I'd like to display all the notes in the page of a PowerPoint deck that provides samples of code and explaintions of what the code is doing. It is too much information for the slide, which just has discussion point bullets, and I think it is too much for the closed caption pane. It this possible to import PPT slides in Notes Page view?
    Thank you so much in advance for any hints, tips, and replies.
    Kindest regards,
    P

    I found an alternative but circuitous way of achieving the desired result. In PowerPoint I opened, then I printed the PPT presentationto a PDF selecting the Notes Page option instead of Full Slide. By then using a PDF converter to convert it back to PPT I was able to insert the  PPT as is. In other words it "looks" just like the PPT Notes Page view, which is exactly what I wanted. The code snippet and notes were intact.

  • Premiere Pro cc 2014 do not import After Effects composition. Inside Premiere Pro CC 2014 is not possible call back After Effects, is not possible to work with After Effects. Thank you

    Premiere Pro cc 2014 do not import After Effects composition. Inside Premiere Pro CC 2014 is not possible call back After Effects, is not possible to work with After Effects. Thank you

    You haven't given us much to go on here.  What exactly are you doing and what exactly happens when you try?  Which specific version of each program are you using?  (Go to Help>About...)
    On a side note, a simple, brief thread title is all that's needed.  Something like "After Effects Issue" would be fine.  You don't need the full question there.

  • Report Painter: Possible to show Report with Zero (not No records were sel)

    Report Painter: Possible to show Report with Zero (not No records were selected)
    Dear Guru,
      is there any way to make Report Painter to show Report with Zero / 0 when there were no record were found. (No records were selected).
    Regards,
    Howard

    hummm, I dont think so
    THats not possible, as far as I know
    Regards
    Ajay M

  • I am using bb 9530 in india & I need service for my bb in india is it possible to get service globally or not.

    I am using bb 9530 in india & I need service for my bb in india is it possible to get service globally or not.Because the verizon number by which i buyed my bb is change & i dont have the verizon account also now.. i have forgot the password. can i get my temporary password on my mail id or can get my bb serviced in india.

        tauficjamadar, we're excited to hear that you're in India! You have the option of reactivating your Blackberry device on our network in order to use it Internationally in India. However, the initial activation to our network will need to be completed in one of our coverage areas in the United States. Click http://vz.to/134zbLK  for more information regarding our Global services.
    Lasina_VZW
    Follow us on Twitter @VZWSupport

  • If I bought the iPhone 5 in Japan and have the documents, it is possible to change my iphone to not need to use gevey?

    If I bought the iPhone 5 in Japan and have the documents, it is possible to change my iphone to not need to use gevey?

    If you had purchased a HTC One it would have been the same thing.
    If you had purchased a Nokia runing Windows it would have been the same thing.
    This is a huge bad point about cell phones, not iPhones.

  • Is it possible to restore a single deleted note from a time machine backup?  If so how?

    is it possible to restore a single deleted note from a time machine backup?  If so how?

    Hi James,
    I was able to use VI server to invoke LV 6.1 VI's using LV 7.0 without issue.
    After discovering this and mentioning it in a post somewhere, Rolf Kalbermatter indicated that was expected. and I should not be suprised.
    So....
    Vi Server may help you.
    James Mamakos wrote:
    Is there a separate place for me to post VIs to be converted?  What's a ballpark figure for the maximum file size i could put on to be converted?
    Do you know if the LabVIEW developers can/will create a way to overcome this problem rather than having to convert a VI through all the intermediate versions?
    To the best of knowledge NO.
    For each versino of LV there isw code included that runs behind the scenes when you open a VI from an earleir version which replaces old functions with the new versions. This is called Mutation code. To accomplish its task it has to know everything that changed between version X and Y. Since it is possible to baby step the versions up and the number of user that jump multiple major versions is small, I don't think any effort will go into that work.
    THe largest attachment I have managed to upload was 3 or 4 Meg.
    Just trying to help,
    Ben
    Message Edited by Ben on 04-28-2009 08:58 AM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How do I view and manage certain files that I have stored in iCloud? I know that I can delete an entire backup, but is it possible to delete certain photos/contacts/notes etc. from that backup?

        How do I view and manage certain files that I have stored in iCloud? I know that I can delete an entire backup, but is it possible to delete certain photos/contacts/notes etc. from that backup?

    No.

  • Is it possible to make the document window not to hide behind the palettes?

    Is it possible to make the document window not to hide behind the palettes (layers, paths etc) like in CS5? For instance if I want to make a correction in the right part of the image and zoom in, the window expand under the different palettes and I can no longer see the area which I want to correct without change the document window size. I don't want to use the Photoshop application fram because then I can't see stuff in other applications ID, mail an so on. 

    I have written about how to control various font sizes in Thunderbird here:
    http://www.ramsden.org.uk/9_Type_sizes.html
    Generally, you shouldn't need to zoom; you can pre-set the display of message text.
    To get straight to the point, you should probably try the https://addons.mozilla.org/en-us/thunderbird/addon/theme-font-size-changer/ add-on to address issues with the size of the message list font.

  • Please help me with portfolio.I am new in graphic design.I need portfolio done immediately soon as possible otherwise my design advisor will not let me register for fall. I need 15 or 10 artworks to show.Please help me

    Please help me with portfolio.I am new in graphic design.I need portfolio done immediately soon as possible otherwise my design advisor will not let me register for fall. I need 15 or 10 artworks to show.Please help me.

    Farooq,
    If you look at the first one, you should be able to align quite easily as follows, View>Smart Guides being your friends:
    1a) ClickDrag the top flower with the Selection Tool (black arrow) so it is clear of the pointy part;
    1b) Click an empty spot on the Artboard to deselect, then ClickDrag the top flower by its bottom Anchor Point (Smart Guides say anchor when you are close enough to grab it) down to snap to the top Anchor Point on the pointy part (Smart Guides say anchor when you are close enough);
    1c) Do the same for the boroom flower.
    If you look at the third one, to get the triangles and the hexagon sized and aligned precisely, you may, creating them with stroke and no fill:
    3a) Click with the Polygon Tool and select a suitable/chosen Radius and 6 Sides, then Object>Transform>Rotate by 30 degrees (or use the Rotate option in the Transform palette), you may Object>Transform>Reset Bounding Box to have it look nicer;
    3b) Click with the Polygon Tool and select the same Radius and 3 sides, then deselect and ClickDrag the top Anchor Point to snap to the top Anchor Point of the hexagon;
    3c) Object>Transform>Rotate by 180 degrees clicking Copy, deselect, and ClickDrag the bottom Anchor Point to snap to the bottomAnchor Point of the hexagon;
    3d) Select all and Ctrl/Cmd+G to Group (for alignment purposes, you will know why if you try without grouping, see below).
    To create full symmetry, you may use circles rather than almost circular ellipses; you may:
    3d) Click with the Ellipse Tool and select a suitable/chosen Width = height;
    3e) Object>Transform>Move a copy vertically by the Height (= Width) twice (or you may Ctrl/Cmd+D to repeat), to get three circles over one another with no gaps;
    3f) Select the topmost and bottommost ones and Object>Transform>Rotate a copy by 120 degrees twice, to have all the seven circles precisley touching one another; you may Group them, but it is not necessary.
    To have everything aligned, just:
    3g) Select everything and click Vertical Align Center and Horizontal Align Center in the Align palette; you may click the pointy group or the circles ojnce more before aligning if you want to keep it in place (that will make it the key object that the other set is aligned to).
    These ways may also help you further.
    Edit: About half an hour after midnight here. High time to attend to other duties, before the sun is up.

  • Activation not possible: the budget category 9F is not used in FM area

    Dear Friends,
    When i am configuration in "Define Activation of availability control"  than system is showing below error message.
    Activation not possible: the budget category 9F is not used in FM area.
    Please advice where i will maintain in the system.
    Thanks & Regards,
    Pankaj

    Hi Pankaj,
    Just as a hint, for budget you use ledgers 9A and 9B. In AVC you dont use 9A and 9B, you use 9F and 9G but they are linked together.
    BUDGET                   AVC
    9A              =              9F       FOR PAYMENTS
    9B              =              9G       FOR COMMITMENTS.
    You must customize your system to have 9F because it seems to be that you have defined 9A already.
    Please follow Eli´s instructions to customize your system.
    Best Regards,
    Vanessa.

Maybe you are looking for

  • Issue in value set Drop down for ALV in Webdynpro with Index

    Hi Experts, We are unable to get the Drop down values in the ALV Table as shown below. Code:    DATA lo_nd_table TYPE REF TO if_wd_context_node.     DATA lt_table TYPE wd_this->elements_table.    DATA ls_table TYPE wd_this->element_table.    DATA: lr

  • How to limit /var/adm/wtmpx and /var/adm/lastlog

    Hi, As many others I have a problem too with these files growing indefinitely. I wanted to know if there is any system configuration or system program to limit or trim the size of these files. I am OK if the oldest records get purged, but I don't wan

  • How to get the Partner Function of the corresponding index

    Hi experts, We have a requirement where in we need to fetch the corresponding partner function(PARTNER_FCT value) , when we click on the value help icon of a Partner_No_descr field of the component BTPARTNER. For eg:- When we click on the value help

  • How to "discard" a row from a view

    It seems to me like a simple thing, but I can't find an answer: I want to programmatically remove a row from an executed view's rowset, but I don't want the underlying entities removed? [I don't want any pending updates to the entities affected eithe

  • NotEditorException while restarting and stopping managed server

    Hi guys/gals, I am using JDK 1.4 for weblogic 9.2. I have created two managed servers, but while restarting or stopping them, I am facing following exception. because of this exception, application that is deployed is not getting exploded. While star