How to use 0vtc in production although prod. isn't allowed for customizing

Hi,
I have created some routes and want to add transportation service agent datas into these routes by using 0vtc transaction code. But in the client that we are using for customizing we don't have and don't create the service agent master data and we can't customize 0vtc in production as customizing is not allowed in that client.
I need to learn how to use 0vtc in production client although production is not allowed for customizing.
Thanks beforehand.
Nuran.

Hi,
Are you trying to do configuration in Production system?
Production systems are locked for configuration, you can not do any configuration in prodcution client other than some manual configurations. Your T code 0VTC is not a manual configuration so you can not do it production. And ruotes are defined as master data, use LSMW to upload the route data in prodcution. Ask your Basis team for authorization to do the same.
Regards,
K.Annadurai.

Similar Messages

  • I m a insurance agent how to use my company product sales illustration program

    How to use my company product sales illustration program ?

    Who knows? XD
    You haven't mentioned anything about the program.
    Why don't you ask your company for training? (if it is an inhouse developed program).
    Otherwise, go to the website for the program. Use GooGle!

  • How to use the default database service name on creating procedure for data

    how to use the default database service name on creating procedure for datagaurd client failover ??? all oracle doc says create a new service as below and enable at DB startup. but our client is using/wanted database default service to connect from application on the datagaurd environment (rac to non rac setup).please help.
    Db name is = prod.
    exec DBMS_SERVICE.CREATE_SERVICE (service_name => 'prod',network_name =>'prod',failover_method => 'BASIC',failover_type => 'SELECT',failover_retries => 180,failover_delay => 1);
    says already the service available.
    CREATE OR REPLACE TRIGGER manage_dgservice after startup on database DECLARE role
    VARCHAR(30);BEGIN SELECT DATABASE_ROLE INTO role FROM V$DATABASE;
    IF role = 'NO' THEN DBMS_SERVICE.START_SERVICE('prod');
    END IF;
    END;
    says trigger created, but during a swithover still the service is listeneing on listener.
    tns entry.
    prod =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (LOAD_BALANCE = YES)
    (ADDRESS = (PROTOCOL = TCP)(HOST = prod1)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = prod2)(PORT = 1521)) ---> primary db entry
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = proddr)(PORT = 1521)) --> DR DB entry
    (CONNECT_DATA =
    (SERVICE_NAME = prod)
    thanks in advance.
    Edited by: 854393 on Dec 29, 2012 11:52 AM

    Hello;
    So in the example below replace "ernie" with the alias you want the client to use.
    I can show you how I do it :
    First an entry need to be added to the client tnsnames.ora that uses a SERVICE_NAME instead of a SID.
    ernie =
    (DESCRIPTION =
        (ADDRESS_LIST =
           (ADDRESS = (PROTOCOL = TCP)(HOST = Primary.host)(PORT = 1521))
           (ADDRESS = (PROTOCOL = TCP)(HOST = Standby.host)(PORT = 1521))
           (CONNECT_DATA =
           (SERVICE_NAME = ernie)
    )Next the service 'ernie' needs to be created manually on the primary database.
    BEGIN
       DBMS_SERVICE.CREATE_SERVICE('ernie','ernie');
    END;
    /After creating the service needs to be manually started.
    BEGIN
       DBMS_SERVICE.START_SERVICE('ernie');
    END;
    /Several of the default parameters can now be set for 'ernie'.
    BEGIN
       DBMS_SERVICE.MODIFY_SERVICE
       ('ernie',
       FAILOVER_METHOD => 'BASIC',
       FAILOVER_TYPE => 'SELECT',
       FAILOVER_RETRIES => 200,
       FAILOVER_DELAY => 1);
    END;
    /Finally a database STARTUP trigger should be created to ensures that this service is only offered if the database is primary.
    CREATE TRIGGER CHECK_ERNIE_START AFTER STARTUP ON DATABASE
    DECLARE
    V_ROLE VARCHAR(30);
    BEGIN
    SELECT DATABASE_ROLE INTO V_ROLE FROM V$DATABASE;
    IF V_ROLE = 'PRIMARY' THEN
    DBMS_SERVICE.START_SERVICE('ernie');
    ELSE
    DBMS_SERVICE.STOP_SERVICE('ernie');
    END IF;
    END;
    /lsnrctl status - should show the new service.
    When I do this the Database will still register with the listener. I don't give that to the clients. That one will still be available but nobody knows about it. Meanwhile "ernie" moves with the database role.
    So in my example the default just hangs out in the background.
    Best Regards
    mseberg
    Edited by: mseberg on Dec 29, 2012 3:51 PM

  • HT201442 How to fix  Error 3194 or "This device isn't eligible for the requested build"

    how can fix Error 3194 or "This device isn't eligible for the requested build

    Generally the result of a jailbroken or hacked phone.

  • How to use costiron (IBM Product) to integrate Essbase with Oracle EBS

    Hi,
    Is anyone ever used CostIron (IBM Product/services) with Essbase/Hyperion.
    secondly as a best prctice how to load actuals from Oracle EBS into essbase.
    Ver: 9.3.1
    Thanks
    Kumar
    Edited by: Kumar 1 on Jan 25, 2011 4:21 AM

    Hi Kumar,
    CostIron might be a niche technology, so few people (if any) on this board might have worked with it.
    Regarding the load from actuals from Oracle EBS to Essbase, I have loaded full EBS data for a large multi national to Essbase.
    You would be best suited using ASO technology which can handle large volumes of data. We use FDM to make sure that data mapping was correct as we were handling large volumes of data. Maintained hierarchies in DRM as normally EBS abnd Reporting hierarchies are not similar and multiple EBS accounts will be mapped to single accounts in Hyperion Reporting solution.
    Cheers
    RS

  • How to use parameter passed from standard page in VO query of custom page

    Hi everyone,
    I have a custom page which needs to be called from a standard page. Now this custom page is based on some parameters passed from standard page.
    How do I catch those parameters i my custom page .
    And how to use those parameters in the VO query of my custom page.
    Edited by: Bunny on Nov 11, 2010 9:16 AM

    Hi,
    Bunny wrote:
    I have a custom page which needs to be called from a standard page. Now this custom page is based on some parameters passed from standard page.
    How do I catch those parameters i my custom page .---If standard page the button style is :Button,Then u can set Destination URL in personalization.
    Destination UR:"OA.jsp?page=/xxx/oracle/apps/po/msg/webui/CustomUpdatePG&Flag=" +Value  ---Like u can pass params
    ---IF the button style is :Submitbutton ,Then u need to customization of the co.
    ---In co processFormReq call a cutom page like below.
    pageContext.setForwardURL("OA.jsp?page=/xxx/oracle/apps/po/msg/webui/customUpdatePG&Flag=" +Value, null, (byte)0, null, null, true, "N", (byte)0);
    ---In custom page co in processRequest u can get these value :String value=pageContext.getParameter("Flag");
    And how to use those parameters in the VO query of my custom page.---Get the vo and set where clause
    String where="valueAttr="+value;
    vo.setWhereClauseParams(null);
    vo.setWhereClause(where);
    vo.executeQuery();
    Regards
    Meher Irk
    Edited by: Meher Irk on Nov 11, 2010 11:53 PM

  • How to use the cgicmd.dat to specify a directory name for desname

    Hi folks,
    What I'm trying to do is use a command key to specify the directory for a file, specified via desname. Here's an example.
    cgicmd.dat
    custom_reports_dir: /some/directory/custom_reports
    Then I want to reference it via something like this..
    http://server:7777/reports/rwservlet?cmdkey=rpt_connect&destype=file&desname=custom_reports_dir/test.pdf&desformat=pdf
    Where in the above example, I'm trying to use the command key to specify a directory name, and then append a file name to it. It isn't working for me, is this possible to do? I figure since it's not an argument in itsself, it's being interpreted literally, rather than being substituted for the parameter.
    Thanks very much,
    -Adam vonNieda

    That depends on how you actually run your program in the first place. If you just use a batch file you could simply make the path to the javaw.exe relative (e.g. jre\javaw.exe �cp lib\myJar.jar com.MyClass). Or you could look into some third-party software that allows you to create installations packages for Java. I have used Zero G's InstallAnywhere before and they have support for you setting up their executables to use a bundled jre. I am sure all the other java install makers have similar functionality.
    Lance

  • How to Use a System Repair Disc to Restore Windows 7 For Seniors For Dummies

    Hi I'm new to this forum and I haven't seen the proper place to post some thing like this. I'm going to post it here and staff can do what they wish with it.
    I can't understand why people aren't creating a System Repair Disc to Restore Windows 7. This is the best tool you can have. I have seen a ton of people posting here that can't boot into Windows 7. No mention of a repair Disc. Can you people not read?? This should be one of the first things to do after creating System Recovery Media(Mine requires 5DVD's). What is your thinking not to do these things?
    http://www.dummies.com/how-to/content/how-to-use-a​-system-repair-disc-to-restore-windows.html
    http://windows.microsoft.com/en-US/windows7/Create​-a-system-repair-disc
    PS I don't have any trouble. I just want people to please do these things and save your self a lot of grief, and make a back up image of your OS on a external drive
    Dokie!
    I Love my Satellite L775D-S7222 Laptop. Some days you're the windshield, Some days you're the bug. The Computer world is crazy. If you have answers to computer problems, pass them forward.

    Hi! I found this on the form!
    http://forums.toshiba.com/t5/System-Recovery-and-R​ecovery/How-To-Understanding-System-Recovery-Optio​...
    I Love my Satellite L775D-S7222 Laptop. Some days you're the windshield, Some days you're the bug. The Computer world is crazy. If you have answers to computer problems, pass them forward.

  • How to fix Error 3194 or "This device isn't eligible for the requested build" in i5 using Windows

    While updating my iphone 5 to ios7.0.4 an Error 3194 or "This device isn't eligible for the requested build" has occered so i can't restore my iphone am using my itunes in Windows 8. So what can i do to recover my iphone

    Hello OmPRakash69,
    Thank you for your question!
    It sounds like you are trying to update the phone to the latest version of iOS but are getting an errorr message saying the phone is not eligible for the requested build. Try out the troubleshooting in this article named:
    Error 3194 or "This device isn't eligible for the requested build"
    http://support.apple.com/kb/ts4451
    These steps will get you started, and there are additional troubleshooting steps if needed in the article:
    Important: If you see one of these messages and need help updating or restoring your iOS device, Install the latest version of iTunes and try to update or restore again. After that, follow these steps if you need more help.
    Check your "hosts" file
    After you've updated iTunes to the latest version, you can check the hosts file to be sure your computer can contact the update server. Use the numbered steps below if you’re on a Mac.
    If you’re using a Windows computer, follow steps in this Microsoft support article, noting that resetting the hosts file will affect software services that rely on hosts file redirects. If you're using Windows on a business computer, consult your IT department to be sure applications will still work correctly after resetting the hosts file.
    In the Finder, choose Applications > Utilities.
    Open Terminal.
    Enter this command and then press Return:
    sudo nano /private/etc/hosts
    Enter the password you use to sign in to your computer and press Return. You won't see text appear in the Terminal window when you enter the password. Make sure you use a nonblank administrator password.
    Terminal will display the hosts file. Navigate using the arrow keys and look for an entry containing “gs.apple.com”.
    Add the # symbol and a space ("# ") to the beginning of the gs.apple.com entry.
    Press Control-O to save the file. Then, press Enter when prompted for the filename and Control-X to exit the editor.
    Restart your computer.
    Try to update or restore your iOS device again.
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • How to use BC4J messaging adapters with prod/test

    Two issues... First, is there a set a sample code using the BC4J messaging adapters? I haven't located anything so far. I always prefer to see working examples over digging it out of skimpy Javadocs...
    Second, in the jdev help, the only way to specify the JDBC URL is through a static Adapter Properties File(s). I know this probably works ok in the final production environment (security aside), but when doing development, deployment, testing and ongoing support, you really need a way to dynamically specify the JDBC URL and password. Is there a way for runtime specification of the properties? Or in my case, I would be fine to use the URL of the database that my ApplicationModule is currently connected to.
    Any suggestions greatly appreciated!
    Roger

    I had already looked at that example. I am trying to use the built in BC4J Messaging Adapters that are implemented using the oracle.bm.ebiadapters.* package. The jdev help talks about using the basic or bc4j version of this when building an app through the designer or manually. A brief code sample is given, but no details on how to 'wrap' the VO that is being fed through in the array of messages.
    They also only show the use of static queue properties using the class-sender-apf.xml and class-receiver-apf.xml files. I want to know if there is a way to have dynamic queue properties. To use the static method would require me to have a class for each queue since the name of the invoking class is used to get the name of the ...-apf.xml properties file.

  • How to use cusomer exit to set month-revelant auth setting for reporting

    Hi,
    Our Client has a req regarding reporting authorization in BI2004s. They don't allow  their employees' to view sales revenue and gross profit   of LAST MONTH. But this restriction only effective in the beginning three days of each month.
    We realize that we can activate setting "Auth revlevant" for Calendar Year month and restrict certain month for viewing data purpose. But if we want the auth req "data of last month not allowed in the beginning thress days of each month", can we do it with Customer exit for "Calendar year /Month"? If YES, can anyone please tell us how, or any better idea to solve this issue??
    Thank you very much.
    BR
    Szu-Fen

    HI hsing,
    define custom defined month at taregt level.
    Means, from Day3 of Month1 to Day2 of Month2 need to calculate as CM1 (Custom Month 1) and use this Custome Month for restiction.
    If the InfoProvider already in production, not in a position to change the transformations, define a Virtual Key figure (VKF) in the InfoProvider and write customer exit on the key figure,
    if calday  <= day2 of Month1 VKF = 0,
    else VKF = 1.
    Display the records where VKF = 1.
    Hope it will help you to find the solution for ur requirement.
    Regards,
    BVC
    Message was edited by: BVC
            B V C

  • How to use 5105 to capture 1second data at 40MHz / Channel , for 4 channels

    Dear all,
    I am using a 5105 SCOPE to try to capture 1second signal at 40MHz , for 4 channels.
    So of course, i send the Min. Record Length to 40M & Min. Sample Rate to 40MHz,
    But i got a failure result "Out of memory XXXXX". But if i lower the Record Length to say, 100K,
    the operation is OK.
    So, anyone can help me?

    How much memory does your scope have?  Four channels at 40MHz for one second is 4 * 40M * 1 * 2byte/sample = 320MBytes.  Unless you have the highest memory option (512MBytes), you will not be able to store it all in the scope's memory.  If you have the medium memory option, you may be able to get the job done by streaming data from your device as you take it, although even that will be iffy (PCI bandwidth is practically about 100MBytes/sec or less, depending on system load).  Options are to drop your acquisition rate or your time length, neither necessarily good.  You may be able to drop your resolution from 2 bytes to one, but it has been so long since I used the NI-SCOPE driver and I have never used the 5105 that I don't know if this is even possible.  This would only work if you have the 256MByte memory option.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • How to use two members from same dimension in Dimension Layout, for HFR

    I am developing a report using Hyperion Financial Reporting. I have taken two dimensions in rows and remaining dimensions in column. After completing one section, I need to make new section of the report on the same grid and page with just adding one more member of the second row dimension. That is data should be the summation of two members of the dimension, say "ACCOUNT".
    Kindly guide me the steps. Also i would like you to know that i am begineer with Hyperion Financial Reporting.
    Thanks
    Roshan

    Can you give some explanation of your gird layout and what you are trying to achieve?
    Like Account and Scenario in row
    Year, Market in columns
    Product in Page
    Regards
    Celvin
    http://www.orahyplabs.com
    Please mark the responses as helpful/correct if applicable

  • Parameter Form-How to use a user parameter to retrieve list of values for another par

    I am developing a report in Reports 6i. There are 2 parameters on parameter form namely year and month.
    LOV for Year is retrieved from database. After user selects a value from LOV for year, I want to retrieve another LOV for month parameter based on selected year. That is how can we use a user parameter's value to dynamically retrieve an LOV for another parameter on the same parameter form.
    Pl. guide.
    Thanks in anticipation.

    You can't restrict the "List of Values" of one parameter based on the value of another parameter within the Reports Builder/Runtime parameter form.
    The SQL select statements within LOV's are only executed once. They aren't re-calculated when you enter, leave or change other field values in the parameter form. This is mainly because there is no event model in the Reports parameter form and it only supports basic form functionality.
    To do what you're after in a client-server environment you need to create an Oracle Forms "parameter form" and use that to execute the Report using the run_product() call. Actually, you should probably use Oracle Forms for any more generic "form" functionality such as radio buttons or check boxes.
    If you're in a Web rather than Client-Server environment, it may be easier to create a JSP based parameter form. You can then use Reports 9i since it has JSP support to assist here.

  • How to use Recovery DVD to install new copy of OS and CUSTOM PARTITIONS?

    Hi
    I have problem with start appropriate recovery function from created Thoshiba Recovery DVD.
    I burn two DVD using Toshiba Media Recovery Creator witch was preinstalled on my computer. Now I want to use it to install new copy of Windows 7 OS on my laptop. BUT I would not want to clear entire HDD. I want to format only C: partition, and leave data on my D: partition. Also I want to define C: partition size.
    When I insert DVD and boot form it, some app start but display info that all partition will be removed. I can not choose another option.
    How can I do it?

    Hello
    Check please http://aps2.toshiba-tro.de/kb0/HTD1303440001R02.htm document.
    I think everything must be explained there. If you have more questions please let us know.

Maybe you are looking for