Help: Configure the Prefix on PRD/Production system

Friends,
I´ve already created the prefix tasks for workflow on DEV and I´ve already transported it to QUA and PRD system.
But Now I have to test the workflow on PRD system, but when I went on SWU3, the system is saying that I have to configurate the prefix. When I went to the OOW4 to see on production/PRD, It´s already created but it is configured with the DEV system.
What can I do ?

Hi Glauco,
In SWU3 in your PRD system, it is OK to have a yellow (or red) light for the configuring of task prefixes.  You set your task prefix numbers in your DEV system and transport them up.  Your task prefixes should remain consistent with what you set up in DEV all the way up the transport stream.
Cheers,
Sue

Similar Messages

  • Oracle Help for the Web 2.0 Production

    Oracle Help for the Web 2.0 is now available on OTN Downloads.
    Oracle Help for the Web (OHW) 2.0 is a major update to the previous releases OHW 1.1x and OHW 1.0.x, and is designed and recommended to replace both.
    Some of the new features in 2.0 include the following:
    Support for Bookmarking Navigator Pages
    OHW 2.0 no longer uses frames to store navigational state on the webpage. Each navigator stores its complete state on the URL, allowing each page to be bookmarked. This includes TOC locations, keyword locations, and search runs. In the view topic page, the frame information is also saved, allowing a user to forward the link via email, etc to the displayed topic. In addition, if you navigate to a named anchor within a topic page, this page position is also saved and is bookmarkable.
    Multiple Locale Support in a Single Instance
    OHW 2.0 can now support multiple locales in the same servlet instance. After you register the helpsets in the OHW configuration file, the OHW servlet will automatically determine the best locale to use for a user request (based on browser settings and what locales are available), and display the localized helpset (along with a localized OHW chrome) to the user. This feature also means that if you navigate to a topic in English, and then send the link via email to a user whose browser supports Japanese, if the Japanese helpset is registered, the topic link will appear in Japanese to the second user.
    Search Engine Support
    OHW has been specially designed so that search engine crawlers can reach all hosted content (including table of contents, and index pages) and easily traverse within and between the available navigators. Page titles have also been redesigned to make pages easier to locate from within a search engine result set.
    Ability to Share Resources Across Localized Helpsets
    OHW can be configured so that helpsets can share resources such as images and CSS stylesheets. Since each localized helpset no longer needs its own resources, this can dramatically reduce the size of the deployed file.
    Relative Content Locations
    Content locations can now be specified relative to the OHW configuration file.
    True Popup Support
    OHW now properly supports Oracle Help popup links. Following this link will bring up a dynamic draggable DHTML window (or a normal popup window if the browser does not support it) with the requested topic page.
    All Level Merging in the Table of Contents
    Using the default TOC engines, each level of the TOC will merge like elements together. This change reflects modifications made to core Oracle Help classes and mimics the feature added to Oracle Help for Java (OHJ).
    New Tree-based Table of Contents Navigator
    The Tree-based TOC navigator shows the data in a heirarchical fashion and allows the user to see the full TOC (and not just a limited part of the TOC, as with previous versions of OHW). The tree-based TOC navigator is a standard navigator and can be added by including it in the helpset configuration file.

    Yes, I am now able to access this page and download OHW.
    Thanks very much,
    Lucie

  • How to bring the Tcode FI12 in Production System in EDITABLE mode

    Dear Sir/Madam,
    The  T code - FI12 is not in editable mode in Production System. Is it by default remains in NON Editable mode  ? Our FI consultant is saying that the users needed it in Editable mode for maintaining BSR Code.
    To bring it to Editable Mode, I have to open the Production Client. Is there any alternate exists to bring this Tcode ( FI12 ) in Edtable mode other than Opening the Client ?
    Thanks and Regards,
    Pranab

    Users needed in editable mode
    Is this a one time activity or a permanent?
    You can transport the changes from DEV to PRO without opeing a client.
    OR
    You can create a cusomize tcode with same functionality with secondary index to use the same entities in editable mode.
    Just work with your ABAPer and get it done.
    Regards,
    Nick Loy

  • URGENT HELP! - The prefix "xsi" for attribute "xsi:type" is not bound

    Hi! i createD a WebService using the JWSDP 1.2. In the server-side i read a xml file, create another empty Document and using the importNode() method i populate the empty created doc. The problem is when i try to send client this created document. I'm using the DOMSource to send it to client side. Both client and WS method code are below! Does anyone know the answer??
    And I'm getting this error:
    [java] Endpoint address = http://localhost:8080/cm/ContextManager
    [java] [Fatal Error] :2:42: The prefix "xsi" for attribute "xsi:type" is not bound.
    [java] javax.xml.transform.TransformerException: org.xml.sax.SAXParseException: The prefix "xsi" for attribute "xsi:type" is not bound.
    [java] at org.apache.xalan.transformer.TransformerIdentityImpl.transform(TransformerIdentityImpl.java:469)
    [java] at contextclient.CMClient.main(Unknown Source)
    [java] Caused by: org.xml.sax.SAXParseException: The prefix "xsi" for attribute "xsi:type" is not bound.
    [java] at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1139)
    [java] at org.apache.xalan.transformer.TransformerIdentityImpl.transform(TransformerIdentityImpl.java:452)
    [java] ... 1 more
    [java] ---------
    [java] org.xml.sax.SAXParseException: The prefix "xsi" for attribute "xsi:type" is not bound.
    [java] at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1139)
    [java] at org.apache.xalan.transformer.TransformerIdentityImpl.transform(TransformerIdentityImpl.java:452)
    [java] at contextclient.CMClient.main(Unknown Source)
    ====================CLIENT CODE================================
    Source getdevice = manager.getDevice("How");
    DOMResult domResult = new DOMResult();
    // getting a transformation factory instance
    TransformerFactory transformerFactory = TransformerFactory.newInstance();
    Transformer transformer = transformerFactory.newTransformer();
    transformer.transform(getdevice, domResult);
    Node node = domResult.getNode();
    DOMSource domSRC = new DOMSource(node);               
    StreamResult streamResult = new StreamResult(System.out);
    transformer.transform(domSRC, streamResult);
    ===============================================================
    ===================WebService Method CODE======================
         public Source getDevice(String primaryContext)
              Source src = null;
              try
                   String uri = "C:\\foo\\DeviceInstance.xml";
                   DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                   DocumentBuilder builder = factory.newDocumentBuilder();
                   //create the first Document
                   Document doc1 = builder.parse(uri);
                   //create the second Document
                   Document doc2 = builder.newDocument();
                   //create the second doc's root element and append it
                   Element rootDoc2 = (Element)doc2.createElement("device");
                   doc2.appendChild(rootDoc2);               
                   //get root of first document
                   Element rootDoc1 = doc1.getDocumentElement();
                   NodeList list = rootDoc1.getElementsByTagName(primaryContext);
                   for(int i = 0; i < list.getLength(); i++)
                        Element nodeToMove = (Element) list.item(i);
                        Node newNode = doc2.importNode(nodeToMove, true);
                        rootDoc2.appendChild(newNode);
                   src = new DOMSource(doc2);          
              catch(DOMException dome)
                   dome.printStackTrace();
              catch(Exception e)
                   e.printStackTrace();
              return src;
    ===============================================================
    Does anyone know what could it be? Please, it's very urgent!
    Tks in Advance,
    Rodrigo.

    The xml i'm trying to send is below. It's important explain that in a standalone app it works perfectly. Unfortunately, when i perform the same actions in the WS world, it doesn't work. See, i tried to put the attributes inside the root element with the setAttributeNS() method but i got the same error again. How could i bound the attribute with no errors like that said before???
    <?xml version="1.0" encoding="UTF-8"?>
    <device xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="context.xsd">
    <Identity xsi:type="fooType">
                   <Name>
                        <GivenName>Rodrigo</GivenName>
                        <FamilyName>Felicio</FamilyName>
                   </Name>
              </Identity>
    <Identity xsi:type="foowType">
                   <DeviceID>dev00345</DeviceID>
              </Identity>
    </device>
    Regards,
    Rodrigo.

  • I need help configuring the Airport express from a PC

    Hi there!
    I want to configure the airport express from a PC. It runs okay but the connection is open (anyone can browse on my connection)
    In a PDF that I found on Apples web site, it says go to
    Start-> All programs-> Airport express setup assistant, but there are no programs named Airport on my PC!
    Do I have to download a utility for this purpose?
    Fredrik

    If all you want to do is add wireless security to an already configured Express, you'll probably want to use the Airport Admin Utility. You should be able to install it by installing this package:
    http://www.apple.com/support/downloads/airport42forwindows.html
    If the PC isn't running at least Windows XP, I think you're out of luck.

  • LSMW - Exporting the Object to PRD/QA System from DEV System

    Hi,
    I need to export the LSMW Object created/tested  in DEV System to QA/PRD System. Can you please suggest me a solution.
    I Appreciate Your Help.
    Thanks,
    Kannan.

    There are two ways of Transporting for this.
    Goto the LSMW Transaction
    1)Extras>Export Projects>(Give the Project name)
    In next screen(Choose what subproject, routines, etc.. you wan to copy then, Export Rules-->Export((Will prompt for file name)
    A text file will be downloaded.
    In the Target System
    Goto LSMW Extras-->Import Projects and give the text file which was downloaded.
    2)Extras-->Generate Change Request
    Assign a change request which is basically a transport request and you can then get this transported from one system to another through the basis route.

  • Need help with enhanced data source in Production system

    Hello Gurus,
    1.                  I enhanced a datasource in BW and populated the field using customer exit using CMOD function. In Dev system, i dont have much data, so I deleted the whole data and did full load.
    what shud I do in Production side, so that Delta wudnt be affected??since in production, we have millions of records, we wont do full load., what is the best way to populate the field in production after transporting the datasource to production without disturbing delta's, to reflect the new field for previous years data???
    2.  can we put 0customer and 0material in the same dimension?? how its going to affect the performance?
    Thanks in advance.,
    Best Regards,
    Pavan

    Hi,
    Please see this
    1.
    see this thread
    populated the new field with historic data
    2. can we put 0customer and 0material in the same dimension?? how its going to affect the performance?
    Its better not to use them in a single dimension  because one customer and take more than one material so if you have 100 customer and 1000 materials  this combination will generate a large number of records. Its always better to keep characteristic which are having 1:N relation ship in one dimensional in you  case customer and material will have an M:N type of relationship.which will result in slow performance.
    Regards,
    Ravi

  • Installing/configuring the InfoSphere Optim Performance Manager system

    I am looking at the InfoSphere Optim..... to install.  I have not used this tool before and am skeptical.  Since the Control Center is deprecated it looks like this is the replacement.  Is this tool an additional cost to license or is it available to customers who have advanced enterprise editions?
    Can this be run on a standard Windows PC or I should ask will it run well?  I would install this onto my work PC and use it for my production (EHP & Netweaver BW) systems.  Is there a quick setup guide or does this need to be installed via SAP install?
    Lastly, what is the ramp up time that it will take to obtain performance recommendations out of the tool?
    Thanks to all.
    Len Jesse.
    Knowledge is to be shared.

    Found this.  Can be closed.

  • I need help choosing the correct Photo Shop product for my needs.

    I sell items on Ebay, my photos are often blurry, have shadows or do not show fine details. How do I know which photo shop product is best for my needs?

    I agree with Silkrooster's answer, however I will also say that starting by taking a "good" photo will help you a ton, even before you bring it into a photo editor. It may just be that you need to create a makeshift lighting setup (to avoid problematic shadows), or try taking your photos with a tripod (to avoid blurring).
    Here is a link with some really great tips to help you with product photography.
    I would also recommend that you check out Adobe Lightroom, which is a program created specifically for photographers. Below is a video showing how a photo can be vastly improved in 5 minutes! I hope you find this helpful.

  • OPEN ITEMS EXTRACTION (FPBW) cancel in productive system... HELP

    Hello!
    I have received this message when I executed FPBW transaction, Open items extraction for BW... I have looked in Notes OSS but nothing... Could you helpme please? Do you have any idea what was the problem??? I think it is Basis problem in Database, but I am not sure, please it is urgent, because the error was in productive system---
    The exception must either be prevented, caught within the procedure    
    "FETCH_CURSOR"                                                        
    "(FORM)", or declared in the procedure's RAISING clause.               
    To prevent the exception, note the following:                          
    Database error text........: "ORA-01555: snapshot too old: rollback segm
    number 169 with name "_SYSSMU169$" too small"                         
    Internal call code.........: "[RSQL/FTCH/DFKKOP ]"                     
    Please check the entries in the system log (Transaction SM21).                                                                               
    You may able to find an interim solution to the problem                
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:                                                                               
    "DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC                               
    "SAPLFKKOP03" or "LFKKOP03FR1"                                         
    "FETCH_CURSOR"

    Hi,
    How you resolved this issue?
    If you are having the solution for this please share with me as well.
    and one more thing, how can we schedule these two jobs in background for daily loading the data into DFKKCIBW and DFKKOPBW.
    Please share these two things with me.
    Thanks in advance.
    Srinivas

  • Is it Possible to Save the existing querry in Prod System

    Hi Gurus
    Is it possible to save the existing Querry in Production system with another name.if yes pl. tel the procedure.
    thanks and regard kumar. [email protected]
    Message was edited by:
            s k

    Hi s k,
    You can do the query copy in the DEV (development system) & transport the request to the PRD (production system).
    This is the SAP recommended best practise.
    However, you can also directly do the query copy in PRD system, provided you (sap login) have the authorizations to do the same.
    For more information on SAP query, check the following link:
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/cb3efb455611d189710000e8322d00/frameset.htm
    best regards,
    Thangesh

  • Moving/Exporting Seeburger configurations/objects from QA to Production

    Hi,
    I need some expert advise in moving Seeburger configuration objects like splitter adapter,AS2 adapter configurations from QA to Prod.
    Our scenario is like this , in the Seeburger message splitter we have defined the splitter adapter based on the AS2ID for different vendors/suppliers/customers. now when we go live on couple of customers every week, we are manually creating/configuring the seeburger channels in production. Is there a way to do it automatically like Exporting the objects in XI from QA to Prod???
    Any help is much appreciated.
    Thanks and Regards,
    Preeti

    Hi Preeti,
    For moving the congiguration objects from quality to production, you need to configure transport groups in the SLD so that when you are moving configuration objects from quality to production it will take Production R/3 system.
    For Transport Groups check the below links
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    http://help.sap.com/saphelp_nw04/helpdata/en/ef/a21e3e0987760be10000000a114084/content.htm
    But you need to manually change AS2ID and Partner Number according to production environment in the Party which you configured for each customer in the ID.
    Regards,
    Prakash

  • Need immediate help: Idocs not showing up in productive PI

    Hi gurus,
    we are trying to go productive today with our pi 7.0 server. now we are facing the problem, that the idocs from our productive system don't get into the pi. in the productive erp system we can see them leaving with green status, but in sxmb_moni they don't show up. can anyone please help?
    regards,
    michael

    hi michael
    tRFC calls which transfer IDocs use the function module IDOC_INBOUND_ASYNCHRONOUS at reception
    If an IDoc in the sending system has been passed to tRFC (IDoc status "03"), but has not yet been input in the receiving system, this means that the tRFC call has not yet been executed.
    To check the status of the tRFC calls, choose
    Tools -> IDoc Interface/ALE-> Administration -> Monitoring->ョ Troubleshooting -> RFC Queue (SM58) and specify any additional selection criteria.
    basically The program RSARFCEX restarts unsuccessful tRFC calls.
    regards
    kummari

  • Use OC4J in production system

    Hi together,
    i have a small question: Is it legal to use the oc4j in a production system or it is only for development purpose?
    Marc

    All of the licensing questions should be directed to your local sales rep, they can give you the most accurate answer.
    Hope this helps,
    Rob

  • Update Purchasing group directly in production system

    Hi,
    We keep getting purchasing group changes requests and we follow conventional approach, configure in development - move to Quality and then to Production.
    Since we have high number of requests, we are exploring the direct maintenance in Production system. Please advise on the best approach to this.
    thanks
    Mahesh

    there is an alternative missing.
    you can change a customizing activity to be a master data activity, and you do not need to have the PRODuction system open for customizing..
    this is explained in OSS Note 135028 - Transfer IMG activity to current setting
    However, I have made my experience in the past as I joined my current employer. In this system the purchasing groups were maintained in production system, which I did not know, and some key user did not know too, as they asked me to add a new purchasing group. I did this in the development system and transported to prouction.
    And it happened, that I added a purchasing group in developement that was already accopied in production, so the entry in production got overwritten with my transport. so for a couple of days 2 buyers worked with the same purchasing group, they did not even realize it, as nobody is really looking at a PO form if a system is live for many years. This caused some trouble with statistics and as well with communications between vendors and us.
    a second experience was made by the fact that people had deleted purchasing groups, after buyers had left the company. But SAP validates the existing of purchasing groups when archiving purchase orders. So I had to recreate all deleted  purchasing groups before I could continue with archving.
    I think that this experience is reason enough to not give this customizing activity into user hands.

Maybe you are looking for

  • Screen Sharing and different language keyboard

    Hi all, my MacBookPro has US Keyboard and my iMac ITA. If I tray to access to my iMac from my MaBook via Screen Sharing while it's Standing By, it asks me to login. Unfortunately it was started with the Italian keyboard and in the session there is no

  • Customer Sales value not decrease (FD33) after billing (VF01)

    Hi, When Billing a delivery, in FD33 the receivable are correctly increased but sales value still unchanged normaly it should be decreased with the billed amount. Thanks for your help.

  • No print option, why?

    How to make print option available on 'share ribbon'? Share ribbon (using andriod S4 phone) pops up with many icons, but not to print. Should be there but not, how to fix?

  • What is infoset in R/3 Context.. how to view infoset in R/3

    Hi Guys..               What is infoset in R/3 Context.. how to view infoset in R/3 Cheers Senthil

  • Client-Proxy-Server:  Connection refused

    I was meddling with a client-proxy-server toy program. Pardon my poor code construction. I have never had any previous knowledge in this field. I have created  a client side program with my main that handles IO serially. ProxY consists of 2 unscynchr