Changing system currency after company copy using CopyExpress

Hi!
I have copied the dev database to test and would like to know if it is possible to change the system currency using the GUI (I have found tue way to do so using an SQL querry).
Thanks!

SAP will not support any database, which is inconsistent, due to SQL-Queries, which modify datasets or the datastructure of the SAP Business One Database. This includes any update-, delete- or drop-statements executed via SQL-Server Tools or via the the query interface of SAP Business One.
This is stated in the support contract between SAP and the SAP Business Partner also.
Check SAP Note: 896891     Support Scope for SAP Business One - DB Integrity
[https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E&note_numm=896891]
Also check
SAP Note: 631504     Do not use Delete, Insert and Update statements     
[https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E&note_numm=631504]

Similar Messages

  • Change Local Currency For Company

    Dear Expert
    I Want to change local currency for company that already have a data.
    So From 1996 - 2010 that company used local currency SGD. Now 2011 will be change to USD.
    all previous data no need to change.
    Can I just change local currency in T-code UCWB?
    Thanks

    Yes all previous data will remain the same and only the opening balances and onward have the new local currency.
    Make the master data change as well as including the translation method in the balance carry forward task in the configuration (UCWB) before it is executed. This will cause the balance carry forward to translate the old LC to the new LC for the opening balances.

  • How to change BP currency in AP Invoice using Add On

    Hi !
    I create AP Invoice from my add on project .I used B1 D1 API  SAPbobsCOM.BoObjectTypes.oPurchaseInvoices .
    I choose BP code from my form and then I create AP Invoice .When creating AP Invoice , I want to change BP Currency to other currency .It work well when BP is All currencies type . If BP has it's own currency I cannot change other currency to create AP.
    pl advice me . how to do it ?
    best regards,
    msw

    Hi,
    Can you do it from UI? I believe you can only use other currency if BP is all currency type.
    Thanks,
    Gordon

  • Change Local currency of Company Code

    Hello experts,
    We have a requirement to change the local currency of an existing Company Code. The Company code is fully operational with all the other modules and is active for about 7-8 years now. We are on version ECC 6.0. Can you please tell me how to go about this? I know its going to be a big activity, but can anyone explain / share the steps, process plans about this?
    Thanks & Regards,
    Sameer

    Hi,
    Please refer to the OSS note 316222:-
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=316222]
    Also have a look at the master OSS note 120420:-
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=120420]
    Regards,
    Gaurav

  • System Panic After Patch by using EIS

    Hi,
    My system go panic when I rebooted my V100 after patch it with EIS Jan 2007 version. The error show below :
    panic[cpu0]/thread=30000f4dca0: BAD TRAP: type=31 rp=2a1002ff340 addr=38 mmu_fsr=0 occurred in module "genunix" due to a NULL pointer deferenceied to the system
    I had search through many similar case but i couldn't get a solution for this. Please help.

    The latest README for the Solaris 10 Recommended patch cluster, details complications for patch 118833-36. Lots of people are running into problems.
    If you are going to try to jumbo patch again, check the special instructions:
    Single-user mode, do not use the "-nosave" option, and patch a second time immediately afterwards, again in single-user mode.

  • How read a pdf file and change TableCell height after reading it using itext api

    I have created a pdf form file using itext ( see class CreatingFormClass ) with itext PdfPTable and PdfPCell. It is done successfully .
    Now I  read this pdf file and filling this pdf file(see class FillingFormClass  ) and at this point i want to change  PdfPCell height () according to Items.
    It is possible or Not???
    My code is given below.
    Thanx in advance
    public class FillPdfFormMainClass {
    public static  String RESULT1 = "E:/BlankForm.pdf";
        public static  String RESULT2 = "E:/FilledForm.pdf";
        public static void main(String[] args) throws DocumentException, IOException {
            String empName="Rakesh Kumar Verma";
                    // This part is Dynamic. It can be 1 item Or can be 25 items
            String listOfItem="Item 1 \n Item 2 \n Item 3\n Item 4 \n Item 5 \n Item 6 \n Item 7 \n Item 8 \n Item 9";
            CreatingFormClass example = new CreatingFormClass(0);
            example.createPdf(RESULT1);
            FillingFormClass class1 = new FillingFormClass();
            class1.manipulatePdf(RESULT1, RESULT2,empName,listOfItem);
    public class CreatingFormClass implements PdfPCellEvent {
        protected int tf;
        public CreatingFormClass(int tf) {
            this.tf = tf;
        public void createPdf(String filename) throws DocumentException, IOException {
            Document document = new Document();
            PdfWriter.getInstance(document, new FileOutputStream(filename));
            document.open();
            PdfPCell cell;
            PdfPTable table = new PdfPTable(2);
            table.setWidths(new int[]{1, 2});
            table.addCell("Name:");
            cell = new PdfPCell();
            cell.setCellEvent(new CreatingFormClass(1));
            table.addCell(cell);
            table.addCell("Item List:");
            cell = new PdfPCell();
            cell.setCellEvent(new CreatingFormClass(2));
            cell.setFixedHeight(60);
            table.addCell(cell);
            document.add(table);
            document.close();
        public void cellLayout(PdfPCell cell, Rectangle rectangle, PdfContentByte[] canvases) {
            PdfWriter writer = canvases[0].getPdfWriter();
            TextField text = new TextField(writer, rectangle, String.format("text_%s", tf));
            text.setBackgroundColor(new GrayColor(0.95f));
            switch (tf) {
                case 1:
                    text.setText("Enter your name here...");
                    text.setFontSize(8);
                    text.setAlignment(Element.ALIGN_CENTER);
                    break;
                case 2:
                    text.setFontSize(8);
                    text.setText("Enter Your Address");
                    text.setOptions(TextField.MULTILINE);
                    break;
            try {
                PdfFormField field = text.getTextField();
                writer.addAnnotation(field);
            } catch (IOException ioe) {
                throw new ExceptionConverter(ioe);
            } catch (DocumentException de) {
                throw new ExceptionConverter(de);
    public class FillingFormClass {
        public void manipulatePdf(String src, String dest,String empName,String listOfItem) throws IOException, DocumentException {
            PdfReader reader = new PdfReader(src);
            PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(String.format(dest, empName)));
            AcroFields form = stamper.getAcroFields();
            form.setField("text_1", empName);
            form.setField("text_2", listOfItem);
            stamper.close();
            reader.close();

    Hi,
    I am facing the same problem. Please help me out. I just want to read a PDF file as bytes from one location and write it as another pdf file in some other location with a diolog box prompting to open or save in the location where we want.
    I executed the following code:
    try{
    File report =new File(location);
    BufferedInputStream in=new BufferedInputStream(new FileInputStream(report));
    response.setContentType("application/x-download");
    response.setHeader("Content-Disposition", "attachment; filename=" + report.getName());
    OutputStream outs = response.getOutputStream();
    int readlen;
    byte buffer[] = new byte[ 256 ];
    while( (readlen = in.read( buffer )) != -1 )
    outs.write( buffer, 0, readlen );
    outs.flush();
    outs.close();
    in.close();
    response.setStatus(HttpServletResponse.SC_OK);
    } catch (FileNotFoundException fileNotFoundException) {
    PrintWriter out= response.getWriter();
    out.print("<center><Font color = 'RED'><b>"+PxDSLUtils.getApplicationProperty("label.error.CTM_E017")+"</b></Font></center>");
    Though it prompts with open, save dialog box when i try to open directly or when i save it some where locally and then open it i am getting the following message " File is repaired ot damaged.Operation failed." Any idea about what can be done??? Its very urgent.Please suggest.
    I am not convetin to string just reading and writng as bytes itself.
    Thanks in advance,
    Mani

  • Changing Doc Currency in PR with using ME51 - PR

    Hi All,
    How can i change the Document curreny in ME51 - PR.
    As we are creating BDC we can't change the Curreny...
    Please let me know how to do the same.
    Thanks and Regards
    Mahesh

    if you can change the price in ME51, then you should be able to do the same with a BDC.
    The BDC user needs to have authority to change the price.
    a price change is only possible if indicator 'Purchase order price' is activated.
    (for more see OSS note 603630)

  • How to change Purchase Order currency after Good receipt and Good issue?

    Hi,
    I've a PO created last year. The PO currency has been entered wrongly.
    My store colleague has been performed good received and consumed it.
    Now, I am not able to change PO currency to correct one, due to this message:-
    Currency can no longer be changed
    Message no. 06489
    Diagnosis
    As a basic rule, the currency cannot be changed if there has already been a goods receipt against a document.
    If the document contains external service and/or limit items, or if an invoicing plan has been assigned to an item, the currency cannot be changed following the receipt of an invoice either.
    If external service items exist, the currency also cannot be changed if services that have actually been performed have already been recorded or if the item in question has been assigned to a preventive maintenance (servicing) plan.
    Is there anyway to change PO currency after Good receipt and Good issue? Thanks !

    Diagnosis
    As a basic rule, the currency cannot be changed if there has already
    been a goods receipt against a document.
    If the document contains external service and/or limit items,
    or if an invoicing plan has been assigned to an item,
    the currency cannot be changed following the receipt of an invoice either.
    If external service items exist, the currency also cannot be changed if
    services that have actually been performed have already been recorded or
    if the item in question has been assigned to a preventive maintenance (servicing) plan.
    Answer in question itself,need to cancel all documents of wrong currency in order of LIFO,
    Create a new purchase order.

  • Changing GL a/c currency, maintained in foreign currency, to Company Code currency

    Hello Friends – We have got few GL Accounts maintained in foreign currencies and posting also made to these accounts.  Now, for some reasons, we need to change their currency to Company Code currency.
    We have referred SAP Notes – 146824 and they say that it is possible to change the currency to local currency.
    My doubt is that when I change the currency, I should reclass the balance to zero, once done, and then reclass the balances back.
    Or I can directly change the currency?
    Can you pls advice.
    Thanks

    Hi
    There is absolutely no problem in changing an account currency from foreign to local currency. This is because, when you have the account currency as local currency, transactions in any currency can be posted to the account including the foreign currency in which the account was previously maintained. You do not need to set/reset the account balance for this change. Please also look at the below links which are helpful:
    Change Account Currency - Implications | SCN
    http://books.google.co.in/books?id=WuhM4yEffEUC&pg=PA19&lpg=PA19&dq=changing+the+currency+of+a+G/L+account&source=bl&ots…
    Regards
    Sowmya

  • Change the currency

    Hi Exeperts,
    Can anybody tell me is it possible change the currency in company, company is maintaining the currency since 10 yrs. if we change the currency in company, what will be the effect in previous years transaction.
    Regards,
    Nagesh.
    Moderator: Please, search SDN

    Hi ,
    To change the unit we do not need to remove it from the data targets.
    But changing it directly will cause all the dat targets to get deactivated where evert it is used.
    You will get the list of target deactivated targets as a wrning when you will change it so no need to worry.
    Hope it helps
    Thanks

  • Change Myself system in RSA1 trx after client copy

    Hi,
    I have installed SCM 2007 system.
    As post-processing step i have configured myself system in RSA1 trx in the 001 client.
    Now, i want to perform client copy and use that new client 100 as Prod client. What are the steps required to change myself system to point to the new client?
    Please help.
    Regards,
    Chintan

    HI,
    As logical systems are used to define you can use BDLS to convert them after client copy.
    Go through :Note 325470,325525.
    Thanks.

  • How to change company code currency after psotings have been made

    Hi,
    Good day! May I ask for your expert advice about changing company code currency? Is it advisable? or is it at all possible? If so, do you have a procedure for this? Thanks in advance.
    Regards,
    Peter

    Dear,
    no this is not advisable.when You decide to create a Company, You have to decide which kind of currency You have to use for it. This is an asset. Therefor You have to take the correct decision before going live.
    Now You can think to activate a parallel currency( transaction OB22), but please have strongly a look at the note 39919.
    If You strictly wants to change the currency, You could refer to SLO service into SAP Market place.
    Go Service Market Place homepage or Sapnet                  
    http://service.sap.com/slo              
    I hope this helps You.
    Mauri

  • After recording text using the dragon dictation app, it is converted, it can be copied to the iOS system clipboard for use in any app, how does the user access the clipboard to retrive this information if it is no longer on the screen?

    after recording text using the Dragon dictation app, it can be copied to the iOS systme clipboard for use in any app, how does the user access the clipboard to retrive this information if it is no longer on the screen?

    You need to do a long-press in any data entry field, then select Paste.

  • Logical System Name after System Copy

    Hello,
    I have three questions about the logical system name after system copy.
    Q1) When I change SID D22 to S11 during system copy,
    do I have to change the logical system name of all clients in the target system? The target system is used for test, and the landscape has S11 and Virtial system. The target system S11 does not communicate with the source system D22.
    Q2)  If the answer for Q1 is YES, is it correct that the following procedure for changing logical system name?
    1.Tr-CD:BD54
       Add new logical system name for all clients in the target system.
    2.Tr-CD:SCC4
       As for all clients, select new logical system name with F4 help.
    Q3) If the answer for Q1 is YES, do I have to add new RFC connection entries with SM59 for all clients in the target system?
    I refer to the guide "Homogeneous and Heterogeneous
    System Copy for SAP Systems Based
    on SAP Web Application Server
    ABAP 6.40 SR1".
    thanks,
    Keishi

    Hi Keishi,
    As a good and ideal practice the answer to your first question Q1 is yes. Infact I would say that in case you are using ALE then it is must
    For Q2 there has to be an additional step which is most important one. Running BDLS transaction which would allow you to change logical systems in relevant tables from the one of source system to target system.
    For Q3  the answer is agaain yes and you can have two approaches>
    1. manually recreate all the RFC destinations after sys. copy.
    2. Export all the RFC destination data relevant tables before system copy and then reimport them after sys. copy.
    Regards.
    Ruchit.

  • Why capital letters change in lower after copying them from a PDF document, or otherwise, why some uppercase are in fact lowercase when I look in the Text Property in any PDF Reader.

    Why capital letters change in lower after copying them from a PDF document (Made by InDesign), or otherwise, why some uppercase are in fact lowercase when I look in the Text Property in any PDF Reader.

    your home page to get into your Web site should be index.html (for Mac) or index.htm  (on PC)
    You can name it something other than index, but will be harder to find.  when you create the subjects and link to them, they can can be named anything with the html extension  Or if your using PHP end in .php. There is a Microsoft type asp or aspx but your hosting service has to set up using windows server system.
    My hosting service use a Linux server normally but can convert Windows for a Fee.  UNIX Linux has no concept of asp or aspx.
    See this : https://skitch.com/pjonescet/8mnnx/dreamweaver

Maybe you are looking for

  • Payment term issue "error payment term is not defined"

    I have created a new payment term, and incorporated in customer master and created sales order . payment term is getting populated in sales order with an error "payment term is not defined". Please help to resolve.' David

  • Keeps offering update to 3.6.18 although this version already installed !

    using osx for mac, 10.4.11 keep getting reminded to upadate to 3.6.18 although this version has already been installed in the past ! Using a dual processor 2gh G5.

  • 'javac' is not recognized

    Good Morning Everybody! I am a newbie in Java and I want to start writing my first application. I did write my code and ready to compile it. 01/21/2008 10:14 AM <DIR> .. 01/21/2008 10:14 AM 250 first.java C:\java\main\src\january>javac first 'javac'

  • Use of private class

    what is the use of declaring a class as private?

  • Problems installing CS3 master collection

    So i just received Adobe CS3 Master Collection and was trying to install it on my MBP. After it installed the first disc, i would get a black window that said installer alert. I went to adobe webpage and they told me it was because i had the safari 3