Production labels, Need to flag record when successfully printed.

Hello,
I am using CR2008 and I design a production label, this label goes to the floor to be made. My problem is that, there are orders entered all day long and labels need to be printed twice a day. When the query updates, it pulls the info of all day and the person printing labels cannot identify what has printed. I need to be able to flag or update a field in a table when label successfully prints.
I would greatly appreciate your help.
Thank You,
Jose

Jose,
As long as you have UPDATE permissions in the database (or whomever would be running the report), you can use a Command to do this.
It could look something like this...
CREATE TABLE #Temp (OrderID INT)
INSERT INTO #Temp(OrderID)
SELECT OrderID FROM TableName WHERE Fields = Report Criteria
UPDATE TableName SET PrintedFlag = 1
WHERE OrderID IN (SELECT OrderID FROM #Temp)
SELECT
Fields For Report
FROM  TableName
WHERE OrderID IN (SELECT OrderID FROM #Temp)
but unless you are comfortable writing SQL you should stay away from UPDATE, INSERT & DELETE statements... Actually anything other than a SELECT statement can damage your database if you don't know what you are doing.
If you have access to a DBA, let them know what you are trying to do. Writing the necessary SQL should be piece of cake for someone who knows SQL.
HTH,
Jason

Similar Messages

  • Close window/browser when successfully printed PDF

    I bring a PDF document up in a browser (IE), after the user successfully prints the document, I would like to close the browser/window. Is that possible if so how do you do it. Is there any examples?

    Hi,
    the way you can do this is to add JavaScript to the base html file or to the application beforeFormHtml parameter. The JavaScript should be a function that takes a URL as an argumen and that opens the new browser window, using window.open(). The function could keep the handle to this window in a variable that you define before the function.
    When you close Forms, in a post-form trigger, you call web.show_document() to another Javascript function that closes the window referenced by the handle
    The opeer JavaScript is called from web.show_document('javascript:document.method("URL"),'_this');
    That should work
    Frank

  • Illustrator keeps quitting-notice others have had similar issues, not resolved-so what it the reason for "sending a report" to Adobe if nothing can be done with it????? paying for a product that I can't use when I need to use it and no help-come on-someon

    Illustrator keeps quitting…notice others have had similar issues…so what it the reason for "sending a report" to Adobe if nothing can be done with it????? paying for a product that I can't use when I need to use it and no help…come on…someone has to have an answer…HELP Pleeeeease

    <moved from Adobe Creative Cloud to Illustrator>
    reset your preferences -
    acrobat:  http://help.adobe.com/en_US/acrobat/X/pro/using/WS58a04a822e3e50102bd615109794195ff-7feb.w .html
    adobe media encoder: https://forums.adobe.com/thread/1713540
    after effects:  http://helpx.adobe.com/after-effects/using/preferences.html
    dreamweaver:  https://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs6-cc.html
    flash:  http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html
    illustrator:  http://helpx.adobe.com/illustrator/using/setting-preferences.html
    indesign:  https://forums.adobe.com/thread/526990
    lightroom: https://helpx.adobe.com/lightroom/help/setting-preferences-lightroom.html
    muse (mac): https://forums.adobe.com/thread/1246022?tstart=0
    photoshop:  https://forums.adobe.com/thread/375776
    photoshop elements:  https://helpx.adobe.com/photoshop-elements/kb/preference-file-locations-photoshop-elements .html,  http://www.photokaboom.com/photography/learn/Photoshop_Elements/troubleshooting/1_delete_p references_file.htm
    premiere elements:  https://helpx.adobe.com/photoshop-elements/kb/preference-file-locations-photoshop-elements .html
    premiere pro: http://www.mediacollege.com/adobe/premiere/pro/troubleshooter/trash-preferences.html
    if that fails, uninstall, clean (http://www.adobe.com/support/contact/cscleanertool.html) and reinstall

  • Cannot find my product but when i tried to register it , keeps telling that i have already registered the product. i need to see it under my name.

    Cannot find my product but when i tried to register it , keeps telling that i have already registered the product. i need to see it under my name.

    I am on Windows 7, and I was on Adobe.com.  I went to downloads and clicked on Acrobat XI standard.  It downloaded.  But when I went to run it said Acrobat XI Pro and would not accept my serial number.  I have done this now 4 times.  I think that the system is downloading the wrong version.  I am getting very frustrated and unhappy with Adobe!!!!
    Sent from my iPad

  • Hey I'm new to photoshop 13 just wanting to know what to do about pixelated around text need it to be clean around the edges for my product labels. I tried the anti alias on and it didn't do much is there anything else I could do to get the text looking g

    hhey im new to photoshop elements 13 I'm finding my text is pixelated around edges I need it to be clean for my product labels. I have used the anti alias on and didn't really do much anyone know any other ways?
    thanks

    Can you attach a sample of the problem you are addressing here. A psd would be fine.

  • Need assistance searching records from multiple tables - Please Help!

    Hi, I've been trying to solve this problem for several weeks now, and I have exhausted all of my knowledge and experience.  I need help, and I hope someone here can give me some direction.
    I am using VB 2008, and the CR that comes bundled with VS 2008 Pro.  My database is a SQL Server 2005 CE v3.5 (a *.sdf file).  I am connecting to the database through a dataset, and I am displaying the report in a CrystalReportViewer.
    My dataset consistes of two tables:
    1) tblCustomers which has a primary key "CustID", and contains only customer contact and personal information. 
    2) tblDateVisited which has a primary key of "VisitID", but it also has a column titled "CustID". Basically, every time a customer visits the business, details of that visit are recorded in tblDateVisited, and that record is associated with the customer by their CustID.
    Here's what I'm trying to accomplish:  I want to be able to display only Customer records when the customer has visited and that visit matches certain criteria.  Right now, I am trying to match visits from the "tblVisitDate.PlayerType" column.  If the customer has ever had a visit where they matched a particular player type, I want to see those customer records.
    I don't know what I'm doing wrong, though.  I can search a dataset if I am only querying one table and pulling records from that table.  However, whenever I try to add a second table and perform queries on that table to get records from the first table, I can't return any records. 
    If it helps, I am trying to use one CrystalReportViewer to display multiple reports (user choice) and here's how I'm loading the report into the viewer:
    Me.tblCustomersTableAdapter.Fill(Me.dsPlayerTypeReports.tblCustomers)
    Me.tblDateVisitedTableAdapter.Fill(Me.dsPlayerTypeReports.tblDateVisited)
    Me.ReportFile.SetDataSource(dsPlayerTypeReports.Tables(1))
    I am suspicious that my problem is in the Tables(1) method.  It confuses me that I can only assign one table as a datasource when I obviously need access to two tables to make this selection work. 
    Whatever the case, I'm at the end of my rope with this one.  I'm not prone to giving up, but I'm at a dead end currently. 
    Any attempt to assist me with this will be greatly appreciated, successful or not.
    Thanks in advance!
    -Will

    No, I am connected via ADO.NET.  I don't think SQL CE can connect through ODBC (or if it can, I haven't been able to figure out how, yet).  So this isn't a stored procedure.
    When I examine the link, I can only choose an Inner Join or a Left Outer Join.  Right Outer and Full Outer are not available.  Could this be a problem with the dataset I'm using?
    Could you explain what you mean by display all of the records and then choose the selection criteria?

  • How do I create a DVD with no theme, i.e., it plays what was recorded when inserted in the player?

    How do I create a DVD with no theme, i.e., it plays what was recorded when inserted in the player?  Nothing extra, just the recorded content.

    Hi
    No Menu on DVD
    from. Mishmunken
    How to create a DVD in iDVD6 without menu (there are several options)
    1. Easy. Drop your iMovie in the auto-play box in iDVD's Map View, then set your auto-play item (your movie) to loop continuously.
    Disadvantage. The DVD plays until you hit stop on the remote
    2. Still easy. If you don't want your (auto-play) movie to loop, you can create a black theme by replacing the background of a static theme with a black background and no content in the drop-zone (text needs to be black as well).
    Disadvantage. The menu is still there and will play after the movie. You don't see it, but your disc keeps spinning in the player.
    3. Still quite easy but takes more time. Export the iMovie to DV tape, and then re-import using One-Step DVD.
    Disadvantage. One-Step DVD creation has been known to be not 100% reliable.
    4. (My preferred method) Easy enough but needs 3rd party software. Toast lets you burn your iMovie to DVD without menu - just drag the iMovie project to the Toast Window and click burn.
    Disadvantage. you'll need to spend some extra $$ for the software. In Toast, you just drop the iMovie project on the Window and click Burn.
    5. The "hard way". Post-production with myDVDedit (free-ware)
    Tools necessary. myDVDedit ( www.mydvdedit.com )
    • create a disc image of your iDVD project, then double-click to mount it.
    • Extract the VIDEO_TS and AUDIO_TS folders to a location of your choice. select the VIDEO_TS folder and hit Cmd + I to open the Inspector window
    • Set permissions to "read & write" and include all enclosed items; Ignore the warning.
    • Open the VIDEO_TS folder with myDVDedit. You'll find all items enclosed in your DVD in the left hand panel.
    • Select the menu (usually named VTS Menu) and delete it
    • Choose from the menu File > Test with DVD Player to see if your DVD behaves as planned. If it works save and close myDVDedit.
    • Before burning the folders to Video DVD, set permissions back to "read only", then create a disc image burnable with Disc Utility from a VIDEO_TS folder using Laine D. Lee's DVD Imager.
    //lonestar.utsa.edu/llee/applescript/dvdimager.html
    hope this helps!
    From LynnLU USA
    www.mediasoftmac.com/dvd-creator-articles/convert-mov-video-to-dvd-on-mac.html#1 29
    Yours Bengt W

  • Please help!  Having trouble finding records when searchign two tables.

    Hi, I've been trying to solve this problem for several weeks now, and I have exhausted all of my knowledge and experience. I need help, and I hope someone here can give me some direction.
    I am using VB 2008, and the CR that comes bundled with VS 2008 Pro. My database is a SQL Server 2005 CE v3.5 (a *.sdf file). I am connecting to the database through a dataset, and I am displaying the report in a CrystalReportViewer.
    My dataset consistes of two tables:
    1) tblCustomers which has a primary key "CustID", and contains only customer contact and personal information.
    2) tblDateVisited which has a primary key of "VisitID", but it also has a column titled "CustID". Basically, every time a customer visits the business, details of that visit are recorded in tblDateVisited, and that record is associated with the customer by their CustID.
    Here's what I'm trying to accomplish: I want to be able to display only Customer records when the customer has visited and that visit matches certain criteria. Right now, I am trying to match visits from the "tblVisitDate.PlayerType" column. If the customer has ever had a visit where they matched a particular player type, I want to see those customer records.
    I don't know what I'm doing wrong, though. I can search a dataset if I am only querying one table and pulling records from that table. However, whenever I try to add a second table and perform queries on that table to get records from the first table, I can't return any records.
    If it helps, I am trying to use one CrystalReportViewer to display multiple reports (user choice) and here's how I'm loading the report into the viewer:
    Me.tblCustomersTableAdapter.Fill(Me.dsPlayerTypeReports.tblCustomers)
    Me.tblDateVisitedTableAdapter.Fill(Me.dsPlayerTypeReports.tblDateVisited)
    Me.ReportFile.SetDataSource(dsPlayerTypeReports.Tables(1))
    I am suspicious that my problem is in the Tables(1) method. It confuses me that I can only assign one table as a datasource when I obviously need access to two tables to make this selection work.
    Whatever the case, I'm at the end of my rope with this one. I'm not prone to giving up, but I'm at a dead end currently.
    Any attempt to assist me with this will be greatly appreciated, successful or not.
    Thanks in advance!
    -Will

    Hi
    I finally figured this out (or at least a way of doing it that seems to work!
    In VS create a new, empty datasource with no database objects in it. You'll get a message saying asking if that's what you really want to do.
    Add a TableAdapter to the datasource using the 2-table SQL statement with a join but no WHERE clause, in my case:
    "SELECT tblMedia., tblTitles. FROM tblMedia LEFT JOIN tblTitles ON tblMedia.ODGMediaID = tblTitles.ODGMediaID "
    Make sure Fill a DataTable and Return a DataTable are checked.
    Rename the TableAdapter and DataTable to something sensible.
    Design the report using the new Dataset.
    To display the report in VB with user generated WHERE clause:
    strWhere = "WHERE ID=..." etc
    strSQL = "SELECT tblMedia., tblTitles. FROM tblMedia LEFT JOIN tblTitles " & _
                            "ON tblMedia.ODGMediaID = tblTitles.ODGMediaID " & strWhere
    Dim conn As OleDbConnection = New OleDbConnection(strConn)
    Dim da As OleDbDataAdapter = New OleDbDataAdapter(strSQL, conn)
    Dim dsReport As New DataSet
    da.Fill(dsReport, "DataTableName")
    Dim rpt As New ReportDocument
    rpt.Load(PathToReportFile)
    rpt.SetDataSource(dsReport)
    crReportViewer.ReportSource = rpt
    Jonathan Attree

  • Fate of records when lock_vec() fails

    Hi
    If the lock_vec() fails to lock one record, when trying to lock a set of records, then will it unlock all the so far locked records? Or does the caller need to do it?
    Regards
    Nisam

    Hello,
    From the documentation on DB_ENV->lock_vec at:
    http://www.oracle.com/technology/documentation/berkeley-db/db/api_c/lock_vec.html
    "If any of the requested locks cannot be acquired, or any of the locks to be released cannot be released, the operations before the failing operation are guaranteed to have completed successfully, and DB_ENV->lock_vec returns a non-zero value. In addition, if elistp is not NULL, it is set to point to the DB_LOCKREQ entry that was being processed when the error occurred."
    So if there is a failure, elistp should point to the DB_LOCKREQ entry
    being processed when the error occurred. You would need to retry your
    operation from that point as up to that point would have been successful.
    Thanks,
    Sandra

  • How to deactivate/ignore R/3 info records when creating Shopping Cart?

    Hi all and thanks for reading...
    We have the requirement of ignoring/deactivating R/3 info records when creating Shopping Carts SRM , so that no Vendor is proposed in transactions BBPSC01/BBPSC02.
    At the moment, when info records exist in backed, system is proposing vendor and other data and we want them to be completely ignored, both in classic and extended classic scenarios.
    How can we accomplish that? Is it possible to use BBP_SOS_BADI or is this BADI only valid for SRM local sources of supply?
    Has anybody had the same problem and solved it before?
    Thanks in advance for your help, regards
    David

    Hi  David
    Inforecord  is only source of supply for classic scenario only.
    Find and Check Sources of Supply
    Use
    With the Business Add-In BBP_SOS_BADI, you can search for and check sources of supply according to your own rules. These sources of supply include contracts, vendor list entries and product linkages. For this, the customer fields of the shopping cart or purchase order are transferred to the BAdI.
    Standard settings
    The BAdI provides the following methods:
    1. BBP_SOS_INDEX_UPDATE_CHECK
    Use: Check and update contract items in the source of supply table.
    2. BBP_SOS_SEARCH
    Use: Search for sources of supply according to your own rules.
    3. BBP_SOS_CHECK
    Use: Check and filter the sources of supply found by the standard search according to your own rules.
    4. BBP_SOS_PD_CHECK
    Use: Carrying out your own additional checks when creating a shopping cart document item with an assigned contract.
    Activities
    Implement the BAdI if you wish to determine or check sources of supply according to your own rules.
    See also
    Implementation
    As prasanna mentioned - do you want disable both sides or only one side .
    Muthu

  • Automatic Creation of Employee Vendor record when hired in HR

    Hi Gurus,
    Any assistance in Automatic creation of Employee vendor record when the employee is hired in HR master data.
    Thanks in Advance
    BLITZZ

    Hi,
    Use the t.code: PRAA. Give reference to an existing employee vendor.
    Or, you can also create a batch job that runs this daily. Before that you need to create a reference employee vendor and input the most common fields in it (like, Recon Account, Payment method, etc.).
    Regards,
    Kiron Kumar T.

  • Ok i recently tried to restore my ipod touch but when i plug it in it says your ipod needs to be restored. but when i try to restore it downloads the software and while its downloading it pops up a message saying your ipod needs to be restored. when the d

    Ok i recently tried to restore my ipod touch but when i plug it in it says your ipod needs to be restored. but when i try to restore it downloads the software and while its downloading it pops up a message saying your ipod needs to be restored. when the download is finished it doesnt restore or do anything and it stays stuck on the plug your ipod into itunes screen somebody please help me.

    Maybe:
    Restore loop (being prompted to restore again after a restore successfully completes)
    Troubleshoot your USB connection. If the issue persists, out-of-date or incorrectly configured third-party security software may be causing this issue. Please follow Troubleshooting security software issues. .
    Next try placing in DFU mode and then restoring.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    Then try restoring on another computer.
    Last, make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • When receiving a purchase order in Northwind, receiving all records when press on a button

    Good morning,
    This is a challenging request, I did not figure out how to receive all items at once in the receiving tab. I have created a button named "Post test" on which I have a test code that doesn't do exactly the right thing. I am posting the code from
    the original database that works, but we have to do the receiving one row at a time, it is ok when we have few products on a purchase order, but when a user has 150 items, this is becoming time consuming.
    So here is an image follow by the original the codes. (The code on the button is at the end of that document, you might want to begin there) is you understand my error faster.
    Here is the link for accessing the Northwind database and a document on OneDrive
    https://onedrive.live.com/redir?resid=F7190044A52FAE85%21663
    My code on the button "Post test":
    Private Sub Post_test_Click()
    Dim InventoryID As Long
    Dim ProductID As Long
    Dim Quantity As Long
    Dim PurchaseOrderID As Long
    Dim InvoiceID As Long
    PurchaseOrderID = Nz(Forms![Détails bon de commande].[Réf bon de commande], 0)
    Dim rsw As New WrapperJeuEnregistrements
    With rsw.GetRecordsetClone(Forms![Détails bon de commande].sbfPurchaseReceiving.Form.Recordset)
    While Not .EOF
    .Edit
    ![Date de réception] = Date
    ![Entré en inventaire] = True
    ProductID = Nz(Me![Réf produit], 0)
    Quantity = Nz(Me![Quantité], 0)
    InventoryID = Nz(Me![Réf inventaire], 0)
    If Inventaire.AddPurchase(Me![Réf bon de commande], ProductID, Quantity, InventoryID) Then
    If InventoryID > 0 Then
    Me![Réf inventaire] = InventoryID
    Me![Entré en inventaire] = True
    End If
    End If
    If InventoryID > 0 Then
    Me![Entré en inventaire] = True
    End If
    rsw.Update
    rsw.MoveNext
    Wend
    End With
    Forms![Détails bon de commande].Requery
    End Sub
    I did have a post last week, but I have received 1 answer that specified that the original code was missing...
    Thank you for your time...
    Claude from Québec, Canada
    Claude Larocque

    Hi Claude,
    I have downloaded the files and I tried to do as the steps in the document, but failed. When I tried to open the forms I got the error message "Item not found in this collection".
    >>I did not figure out how to receive all items at once in the receiving tab
    In my option, if you want to get all the items, yo​u could add a new query. You could query all the items you want and add a button to the form, when you want to show the all items, you could click the button to run the query. I have viewed the code you
    provided, you requery the "Détails bon de commande" form which did not change the query statement, I think you could add a new form and bind a new query to it.
    >>however, this is the model created by Microsoft that we can use in Access 2010 and 2013
    This model is much complex and the logic of the model is complex too, as your description, some parets of the code is useless, I think we could recreate a new empty database and create the forms which are needed instead of modifying it in the original version.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • GRAPH LEGEND LABELS NEED TO BE USER MODIFIABLE

    GRAPH LEGEND LABELS NEED TO BE USER MODIFIABLE FOR DYNAMIC PARAM INPUT CONTROL
    I've been told on Metalink that my problem can not be resolved in Reports 9i or 10G but a Internal enhancement request 3071917 has been logged.
    Is it possible to have some timescales on this limitation?

    I'd suggest that the easiest approach would be to add a trigger to the table:
    CREATE OR REPLACE TRIGGER trigger_name
    BEFORE UPDATE OF comment_txt ON table_name
    FOR EACH ROW
    BEGIN
      :new.last_updated_by := USER;
      :new.last_update_date := SYSDATE;
    END;This trigger will only fire when the COMMENT_TXT field is being updated and will set the LAST_UPDATE... values accordingly. The only downside to this approach would be if you want to store the OBI user and not the DB user. Effectively, you'd need to pass a parameter from OBI to the trigger to use instead of USER - bit more tricky...
    Going back to your suggested approach, I don't think you need to worry about the RPD; the SQL that you define in the XML will bypass the RPD completely. In terms of what to use for the criteria for the report, you should be able to select the OBI user from a session variable and reference SYSDATE, SYSTIMESTAMP or the OBI equivalent to get what you need.
    Edited by: BarryGoodsell on Sep 26, 2012 12:04 PM
    Added code tags

  • Do I need to pay again when I download past purchases from the app store?

    Do I need to pay again when I download past purchases from the app store?

    Bare with me...I need to explain the situation first.
    I purchased an external harddrive and with the help of phone support, I moved some(most) of my itunes stuff to that hard drive. However, when I sync my iphone, it occasionally says something like..."did not sync song because it could not be found".
    When I typed in the finder thing at the top right corner of my screen (spotlight?), I searched for itunes media. I found one file but it doesn't show me it's location. So I started looking (I'm still new to this) but I think I found 2 itunes media folders...1 on my imac harddrive and the other in my external harddrive.
    After reading some of the online posts regarding downloads, I discovered that it is possible to redownload something you purchased before and NOT be billed again. I know that when I download an app in my iphone and then delete it, if I go to download it again, it tells me i already downloaded it and can download it again for free...so no problems there.
    However, my interest is to greatly reduce the amount of "stuff" I have in my external harddrive as well as my internal harddrive. But before going into my external harddrive and deleting all 8 seasons of 24...which is something like 250gigs, I wanted to test the theory. So I looked for something cheap that I downloaded. I would then delete that and then go into the itunes store to redownload it again.
    One thing I also want to mention, I read that there should be a purchased tab in my itunes store. Either I don't have it, or don't know where to look. One other thing I read is that it might be not available to me based on where I live. I live in Toronto, Ontario.
    Back to what I did. I deleted an episode of Wallace and Gromit (kids show). Then went in itunes to download the same episode. When I checked my account information...it shows that I was just charged for that download...AGAIN! Now granted it was only $2.99...apparently this doesn't need to be the case.
    So...going back to the 2 itunes media folders. I checked my system preferences and saw that itunes was set to save downloads here.../users/"my name"/music/itunes/itunesmedia.   This folder is on my imac. However, the Wallace and Gromit video was on my external. So when I deleted it, I removed it from my external drive.
    So here's what I have done so far...I went into the system preferences and proceeded to change the path to my external harddrive.
    Now...before I go and delete something else...am I doing things correctly?
    Also...what should the path be in itunes? I suspect it should be to my imac so that anything I download, downloads successfully to my internal harddrive...and then I drag and drop into my external...
    I also want to mention that I have a time capsule as well. So basically...I want to keep my imac and time capsule free of as much media as possible...My computer and timecapsule each have 1 TB and I nearly maxed them out...I take alot of home videos with an HD camera...I had no idea how much that would add up.
    Any help would be greatly appreciated.
    Thanks

Maybe you are looking for

  • Help required in understanding the flow of control in working with EJB 3.0

    *1. Can anyone help me in understanding the flow after getting an object of InitialContext in using Stateless/Stateful in EJB 3.0 from client i.e. what we are getting in the step Object ref=jndiContext.lookup("CalculateBean/Remote) .* *2. What is the

  • IPhone 4S will not charge or connect to iTunes

    For the last week or so, my iPhone has been dying very quickly, I end up having to charge it 4 to 5 times a day, and when it does charger, it always overheats. Suddenly, my iPhone has stopped charging and it will not connect to iTunes. I have tried r

  • Acrobat v6.0.2 crashed & now will not open

    I am running (or, was running) Acrobat v6.0.2 Professional on a new Apple Mac Pro (Intel) running OSX 10.6.7.  WIthout warning Acrobat crashed and when I attempt to re-open it I get the error message "Acrobat quit unexpectedly".  I re-installed Acrob

  • Ipad mini disabled...please help

    my daughter has disabled her ipad mini because she cannot remember her passcode......is there any way I can reset the mini so she can get in and delete the passcode?  thanks for any help you can give!

  • How to change the product?

    Dear all, I created Quotation and with reference to quotation i created Order and then found that my product is wrong. Now i am trying to change or delete the product but system is not allowing me. Can any body guide me how to resolve this issue. Reg