Creating a Character Format

Hai,
I am unable to create a new Character format in Scripts(se71)
in english language.
The script is copied from client 00.
Would any one help me.
Regards,
Swetha Singh

Swetha,
Can you breif it up, What is the error u are getting?
Any how the process is like this
For copying or modifying a standard script,
copy the standard form using client 000
go for utilities >copy from client > give form name and target form name
now give the name of the modified form in se71 and go for change, with language en.
Go for Character formats -> go to standard attributes > give the character format -> asks for a pop-up with create new character element ->give the meaning -> save it.
Let me know is the same process u are using.
If u still feel not able to do revert with the process u had used
reward points
regards
shailendra

Similar Messages

  • Smartforms/Smartstyle How to create/upload paragraph and character formats

    Hi Folks,
    I am working on a demo IDES system. In my ECC 6.0 system, the paragraph formats were not included. How can import or include or create or upload paragraph and character formats in order to create smartforms and smartstyles.
    Waiting for your answer................
    Thanks,
    Creasy Matt

    If you Ran Smartstyles T-code and from Utilities you should got all information how to do all these activities.

  • How to change the automatic character format in Message Editor?

    Hi experts,
    We use PI 7.31, AAE adapter in our scenario. When we use the message monitor in Adapter Engine, we choose one message and open it in Message editor, we can see the message payload with AUTO Character Format: Windows-1252.
    The problem is we have some CN characters and they cannot display in correct formats.
    So, is there any way to change the AUTO Character format?
    The other question is, can we see the message after mapping in java message monitor?
    Thanks.
    Kevin

    Hi,
    The Quantity field which is used in sales order has a standard Data Type:QUAN
    with Decimal Places:3 so u cant change the settings in standard data element CRMT_SCHEDLIN_QUAN
    If u want the quantity field without decimals then u need to create a Z data element.
    Regards,
    PePe

  • Not able to create new paragraph format for copied layout of WESCHEINVERS3

    hi all,
    Iam facing one of the pecular problem I copied WESCHEINVERS3 into Zlayout from client 000.
    when i tried to create new paragraph format I found the create element greyed out I have never seen this issue earlier.
    May I know why the menu path paragraph->EDIT->create element is greyed out.
    thanks

    Hi,
    U can create new paragraph formats, windows, character formats etc., only in original language of the FORM.. I guess u were trying to create a new paragraph format in 'EN' but the original language of form 'WESCHEINVERS3' is 'DE', so u can create the new paragaraph format in the copied Z form only in DE language.
    Try to open the Z FORM in DE and create the Paragraph format...
    Hope it helps!!
    Rgds,
    Pavan

  • Apply Clear Overrides after creating such character styles...

    Hi everyone,
    After importing the Word document into InDesign CS3 in some of the paragraphs there is some style overrides. The InDesign styles formatting are not intented with the paragraphs properly. Eventhough the word styles are mapped with InDesign styles exactly. If i select all the paragrahs and click the option "Clear Overrides" from the paragraph styles palette, all the InDesign styles formatting are applied properly but the character style formatting get removed. So i have planned to create script to character style for each font style and each formatting of the characters. After doing this i can clear the overrides of paragraph styles without hassle. I have created the script to create character styles for character formatting and its working fine but when i tried to run this script for 2nd time in the same document it showing some error in it. Please find my script below and it is too big,
    //To find Font styles and character formatting and replacing it with character styles
    //Script for CS3
    #target InDesign
    var myDoc = app.activeDocument;
    if (myDoc.characterStyles.item("Itl") == null){
    var Itl = myDoc.characterStyles.add({name: "Itl", fontStyle: "Italic"});}
    if (myDoc.characterStyles.item("bl") == null){
    var bl = myDoc.characterStyles.add({name: "bl", fontStyle: "Bold"});}
    if (myDoc.characterStyles.item("bItl") == null){
    var bItl = myDoc.characterStyles.add({name: "bItl", fontStyle: "BoldItalic"});}
    if (myDoc.characterStyles.item("bItal") == null){
    var bItal = myDoc.characterStyles.add({name: "bItal", fontStyle: "Bold Italic"});}
    if (myDoc.characterStyles.item("sb") == null){
    var sb = myDoc.characterStyles.add({name: "sb", fontStyle: "Semibold"});}
    if (myDoc.characterStyles.item("sbItal") == null){
    var sbItal = myDoc.characterStyles.add({name: "sbItal", fontStyle: "Semibold Italic"});}
    if (myDoc.characterStyles.item("blk") == null){
    var blk = myDoc.characterStyles.add({name: "blk", fontStyle: "Black"});}
    if (myDoc.characterStyles.item("obl") == null){
    var obl = myDoc.characterStyles.add({name: "obl", fontStyle: "Oblique"});}
    if (myDoc.characterStyles.item("li") == null){
    var li = myDoc.characterStyles.add({name: "li", fontStyle: "Light"});}
    if (myDoc.characterStyles.item("liItal") == null){
    var liItal = myDoc.characterStyles.add({name: "liItal", fontStyle: "Light Italic"});}
    if (myDoc.characterStyles.item("sup") == null){
    var sup = myDoc.characterStyles.add({name: "sup", position: Position.superscript});}
    if (myDoc.characterStyles.item("sub") == null){
    var sub = myDoc.characterStyles.add({name: "sub", position: Position.subscript});}
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    app.findTextPreferences = null;
    app.changeTextPreferences = null;
    app.findTextPreferences.fontStyle = "Italic";
    app.changeTextPreferences.appliedCharacterStyle = Itl;
    app.documents.item(0).changeText();
    app.findTextPreferences.fontStyle = "Bold";
    app.changeTextPreferences.appliedCharacterStyle = bl;
    app.documents.item(0).changeText();
    app.findTextPreferences.fontStyle = "BoldItalic";
    app.changeTextPreferences.appliedCharacterStyle = bItl;
    app.documents.item(0).changeText();
    app.findTextPreferences.fontStyle = "Bold Italic";
    app.changeTextPreferences.appliedCharacterStyle = bItal;
    app.documents.item(0).changeText();
    app.findTextPreferences.fontStyle = "Semibold";
    app.changeTextPreferences.appliedCharacterStyle = sb;
    app.documents.item(0).changeText();
    app.findTextPreferences.fontStyle = "Semibold Italic";
    app.changeTextPreferences.appliedCharacterStyle = sbItal;
    app.documents.item(0).changeText();
    app.findTextPreferences.fontStyle = "Black";
    app.changeTextPreferences.appliedCharacterStyle = blk;
    app.documents.item(0).changeText();
    app.findTextPreferences.fontStyle = "Oblique";
    app.changeTextPreferences.appliedCharacterStyle = obl;
    app.documents.item(0).changeText();
    app.documents.item(0).changeText();
    app.findTextPreferences.fontStyle = "Light";
    app.changeTextPreferences.appliedCharacterStyle = li;
    app.documents.item(0).changeText();
    app.findTextPreferences.fontStyle = "Light Italic";
    app.changeTextPreferences.appliedCharacterStyle = liItal;
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    app.findTextPreferences.position = Position.superscript;
    app.changeTextPreferences.appliedCharacterStyle = sup;
    app.documents.item(0).changeText();
    app.findTextPreferences.position = Position.subscript;
    app.changeTextPreferences.appliedCharacterStyle = sub;
    app.documents.item(0).changeText();
    function setupFindText(find, change, foots, hidLayers, lockedLayers, lockedStories, masters, caseSensitive) {
      app.findTextPreferences = null;
      app.changeTextPreferences = null;
      try { app.findTextPreferences.findWhat = find } catch(e) {};
      try {app.changeTextPreferences.changeTo = change } catch(e) {};
      app.findChangeTextOptions.properties = {
        includeFootnotes:(foots == null ? false : foots),
        includeHiddenLayers:(hidLayers == null ? false : hidLayers),
        includeLockedLayersForFind:(lockedLayers == null ? false : lockedLayers),
        includeLockedStoriesForFind:(lockedStories == null ? false : lockedStories),
        includeMasterPages:(masters == null ? false : masters),
        includeCaseSensitive:(caseSensitive == null ? false : caseSensitive)
    } // end setupFindText
    alert ("DONE");
    please suggest how to simply this script and make it run faster can anyone suggest me. Also suggest me to how can add this "Clear Override" syntax with this script. I want to make this script very effective. Thanks in advance to all.
    Regards
    Thiyagu

    The reason for that error is easy.
    if (myDoc.characterStyles.item("Itl") == null){
    var Itl = myDoc.characterStyles.add({name: "Itl", fontStyle: "Italic"});}
    means "if the style does not exist, create it and assign it to the variable". What happens when it does exist? (I'll let you think of an answer here.)
    Why don't overrides work? Well, let me ask you, does it work when you do the same directly in the program? No: to clear overrides, replace a style with itself. Does that mean you should run the script twice? Well, no, a brief search through the CS3 JS help reveals this tantalizing function (for any text type element):
    void clearOverrides ([overridesToClear:OverrideType=ALL])
    Clears the specified types of override.
    Parameter
    Type
    Description
    overridesToClear
    OverrideType:
    OverrideType.ALL
    OverrideType.CHARACTER_ONLY
    OverrideType.PARAGRAPH_ONLY
    The types of override to clear. (Optional) (default: ALL)
    -- and I remember someone posting this rather nifty one-liner
    myStory.paragraphs.everyItem().clearOverrides();
    The script appears a bit Frankensteinian to me. That function setupFindText is never used; you use two different ways of clearing the find and change preferences ('null' and 'nothing' -- I believe there were some strong points against using 'null', but, anyway, you only need to set them to nothing once).
    Notice it doesn't take heed of combinations of a type style and superior/inferior -- the latter will overwrite the former.
    The usual way of speeding up a script is by putting repeated elements into an array, but I doubt this will help much here. On the other hand, it's just a handful of replaces, and it should be very fast already. Even if it takes as much as 30 seconds, it's still worth that time.

  • Dynamic character format in SMARTFORMS

    Dear Gurus,
    I want to make a dynamic character format in smartforms. I did it in SAPscript and success.
    what I did in program before passing to smartform :
    d_note = '<XX> dynamic text </>'
    and pass it to SAPscript and smartforms :
    &d_note&
    in SAPscript I made new character format XX as BOLD and UNDERLINED. it works for SAPscript. the output become  = dynamic txt
    unfortunately when I do this in smartforms, it is a fail although I have set new character format XX as bold and underline in smartstyles. the output become = <XX> dynamic text </>
    any guru has a solution for this smartform?

    Hi Sendy,
    You cant use tags (eg- <XX>) in smartfomrs like you did in sap scripts. Use your style in the smartform( form attributes) with all character formats and paragraph formats which you need. When you create a new text module in the smartform you will get two drop down lists for the paragraph formats and character formats in the top of the editor. Type your text there and highlight then choose 'XX'(or any other character format) character format from the drop down list.
    Hope this would help.
    Cheers,
    Jeewana

  • SAP Standard Text (SO10) Character format in Adobe forms

    Hi Friends
    I created a standradrd text using 'S010' with Few character formats like 'bold' and 'italic' but when created 'Inlude text' element in adobe forms i could see only text coming in pdf output but not the formatting. Is there any way i could get the text character formatting also from standard text to adobe?. I appreciate your help.
    Thanks

    Total Posts:  534 
    Total Questions:  183 (4 unresolved) 
    Forum Points:  0 
    You ask a lot, but never helped a living soul. Why would anybody help you/ do your job?
    By the way the same question was asked a zillion times, so if you would care to search you would not receive this comment.
    Otto

  • Reg paragraph formant and character format

    Hi All,
    How to assign particular paragraph formant and character formant for a particular text node that I have created.I know how to create paragraph formats and characters using smartstyles and also I assigned this smartstyle in my smartform to that particular text node,but I am not getting where do I select the paragraph format and character format to assign it to the text node?could you please suggest some body how to do this?
    Regards
    Mahesh

    Select the text you have written in the created text element and on top of the text only there is an option for Paragraph and character formats which will give you the dropdown list with all the paragraphs and character formats u have created. choose the desired one and it will reflect..
    OR alternately you can go to the editor and wite the code as in SAP SCRIPTS by providing the Paragraph name or Character name urself.
    REWARD POINTS IF USEFUL

  • Sapscript: setting character format to bold or italic failed

    Hello,
    I'd like to set character format to of text in sapscript to bold. So I created character format <NB> and assigned to it times font with bold attribute. But if I use this format to some text - for example: <NB>Some text</>, text isn't bolded. The same thing happened if I assign italic atribute to the character format.. But if I change size of this character format, the change is displayed. What's wrong?
    Best regards,
    Josef Motl

    Hi Max,
    Thank you for your reply.
    I'm using times with size 10 pt.. I should see the change..
    Regards,
    Josef

  • Inline character formatting

    Battling on happily after that Aha!-moment before Christmas, and testing myself by retrofitting structure to existing documents – still having far more fun than I feel I should do at the office :-}
    Today's question, which may well reveal an embarrassing lack of basic understanding. In my unstructured documents, I've always used specific character styles for options like !cite and !xph (book-titles and in-line code snippets respectively). Now I'm exploring structure, I haven't yet managed to work out how to handle these in-line changes. "Format change list" looked promising, but how do I define an element that's going to trigger the change? (if "element" is the right word at this low a level)
    My battered copy of the FM 7.0 User Guide briefly but tantalisingly mentions "… wrapping items that are inside paragraphs" without farther explanation. What other (online) references would you recommend?

    Hello Niels,
    I am a tad confused on what you doing. <cite> is an inline element in DITA. Are you building an EDD based on a pre-defined valid XML, such as DITA, or are you building and new EDD/DTD?
    As for the EDD, you have options as to how to apply inline (as well as block) formatting. For inline elements, you can reference a character tag, define all the required character formatting in the EDD, or point to a format change list. Which one to use depends on the application. The majority of the time, I reference a character tag. Sometimes, if the formatting is based on an attribute value, and/or requires minor a change, such as increasing relative font size, by a specific amount (+2pt), I will define that in the EDD. That can also be done using a format change list (if there a lot instances). For example, I use format change lists to turn on and off change bars, based on an attribute value. For example, most DITA elements have a @status attribute. I use that to apply formatting to block or inline text.
    I tend to point to paragraph and character tags 90% of the time. However, you can build an EDD that has all formatting defined in the EDD and basically creates a boat-load of overrides to the Body tag. I am not a fan of this. It will keep people from changing tags. However, if you want a single EDD for multiple page sizes, pointing to tags is the way to go. Then you only do formatting within the EDD for formatting such as adding relative space or increasing relative font size.
    Hope this helps.
    Regards,
    Stan

  • How do I get "CO" variable 01 to 67 in character format?

    Post Author: Dennis Hernan
    CA Forum: Data Connectivity and SQL
    I have 2 databases. "DBA"."RMS_A0_SEGMENT" & "DBA"."RMS_G0_SEGMENT". The A0 segment has a CNTY variable. We create table B from A only to create SELYEAR & CO. SELYEAR is numeric because it is "2007 as". CO is numeric because it is "CNTY as". The values in CNTY are 1 to 67 numeric. How do I get "CO" variable 01 to 67 in character format?
    Is this standard SQL or would you call it Crysal SQL format? Select "B"."CNTY", "B"."SR", "B"."SEG", "B"."FED_AID",         "B"."TBK_CODE", "B"."PAVE_CYC", "B"."SURFACE",  "B"."LENGTH",         "B".SELYEAR, "C"."KEY_YEAR", "C"."SEG", "C"."SR", "C"."CNTY", "C"."SLDSTATU", "B"."CO" FROM (SELECT "A"."CNTY", "A"."SR", "A"."SEG", "A"."FED_AID",         "A"."TBK_CODE", "A"."PAVE_CYC", "A"."SURFACE",  "A"."LENGTH",         2007 as SELYEAR, CNTY as CO             FROM   "DBA"."RMS_A0_SEGMENT" "A") "B" LEFT JOIN "DBA"."RMS_G0_SEGMENT"  "C"  ON ("B"."SEG" = "C"."SEG") AND ("B"."SR" = "C"."SR") AND ("B"."CNTY" = "C"."CNTY") AND         ("B".SELYEAR = "C"."KEY_YEAR")

    Post Author: Dennis Hernan
    CA Forum: Data Connectivity and SQL
    Here's a simple example: SELECT "A"."A01_CTY_CDE", "A"."DIST_CODE","A"."CTY_NAME", A01_CTY_CDE AS CO NUMERIC(2) FROM SYSADM.CNTY_DIST_XREF "A" I'm trying to create the CO variable numeric(2) from the A01_CTY_CDE which is character(2). The values in A01_CTY_CDE are 1 to 67 character, I need CO to be numeric to merge with another linked table. "I am using the Add Command In Database Expert". I need 4 variables when this is done in the Command Database, A01_CTY_CDE, DIST_CODE,CTY_NAME all charater from the original database "SYSADM.CNTY_DIST_XREF". Also I'm trying & need your help, to create a variable CO with a numberic format, and the values equal to the A01_CTY_CDE variable. Call If you like, Dennis, 717.787.7293.

  • Disable Character formatting controls

    I just wanted to control manual character formatting in InDesign CS4 and above. People gone ahead and change font using "character formatting palette" instead of the using character styles even I instructed best practising to use only character styles for various emphasis such as Italic, Bold, Bold Italic, Superscript, Subscript etc...
    I really wanted to disable for character formatting in control panel & character shortcut Ctrl+T (Win) Cmd+T (Mac) alone in InDesign CS4 and above. But the character formatting option should work in Paragraph and Character styles i.e. we should be able to create if new styles required instead of applying manual character formatting. Much appreciated if any one helps on this big issue.
    JA

    To expand a bit on Jongware's suggestion about hiding the menu command to show the character panel you can also customize the Control panel to hide the character controls, and save this as a workspace, then edit the keyboard shortcuts to remove commands you don't want used. I don't recommend this, though. It's easily circumvented by anyone with ID expereince, and a much better approach is to stress to your people how important the use of styles is, and perhaps that their jobs depend on adopting good work habits.
    One thing I WOULD recommend is that you add a set of standard character styles to ID as a default. You can make a master document someplace tha has your basic styles, then load those styles with nothing open and they will be available to all new documents, and add them to any templates as well. I think you'll find yo get much better acceptance of using styles if your people don't need to reinvent the wheel for every document they make.

  • How can I get a list of SAPScipt character formats?

    I know that SAPScript use the <> for capturing - i.e. preceed text and fields with <NN> and end with </> to change the format.
    For example <B> is for bold.
    i want to know where i can get a list of all the possbile values - have looked thru SDN and the Web with no success on this.
    I used to know this but it have been many years since used sapscript.
    Thanks

    Hi
    I am not sure that I have understood your question correctly.
    But if you want to see all the character formats available inside the form in SE71, there is a push button named "Character Format". Press that button and you would see all the character formats available for the form.
    Raveesh

  • ORA-12709: error while loading create database character set

    I installed Oracle 8.05 on Linux successfully: was able to login
    whith SQLPlus, start and stop the db whith svrmgrl etc.
    During this install I chose WE8ISO8859P9 as the database
    characterset when prompted.
    After that I installed Oracle Application Server 3.02, and now
    I'm getting the
    ORA-12709: error while loading create database character set
    message when I try to start up the database, and the database
    won't mount.
    Platform is RedHat Linux 5.2.
    NLS_LANG set to different settings,
    e.g. AMERICAN_AMERICA.WE8ISO8859P9
    but without success.
    Anyone any clue?
    Thanks!
    null

    Jogchum Reitsma (guest) wrote:
    : I installed Oracle 8.05 on Linux successfully: was able to
    login
    : whith SQLPlus, start and stop the db whith svrmgrl etc.
    : During this install I chose WE8ISO8859P9 as the database
    : characterset when prompted.
    : After that I installed Oracle Application Server 3.02, and now
    : I'm getting the
    : ORA-12709: error while loading create database character set
    : message when I try to start up the database, and the database
    : won't mount.
    : Platform is RedHat Linux 5.2.
    : NLS_LANG set to different settings,
    : e.g. AMERICAN_AMERICA.WE8ISO8859P9
    : but without success.
    : Anyone any clue?
    : Thanks!
    You can create the database with WE8DEC character set
    and to use the WE8ISO8859P9 on the client or even on Linux.
    The NLS_LANG setting doesn't effect the database, but the
    interface with the database. The same setting can be used in de
    windows 95/98/NT registry.
    null

  • ORA-12709: error while loading create database character set after upgrade

    Dear All
    i m getting ORA-12709: error while loading create database character set, After upgraded the database from 10.2.0.3 to 11.2.0.3 in ebusiness suit env.
    current application version 12.0.6
    please help me to resolve it.
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 1.2831E+10 bytes
    Fixed Size 2171296 bytes
    Variable Size 2650807904 bytes
    Database Buffers 1.0133E+10 bytes
    Redo Buffers 44785664 bytes
    ORA-12709: error while loading create database character set
    -bash-3.00$ echo $ORA_NLS10
    /u01/oracle/PROD/db/teche_st/11.2.0/nls/data/9idata
    export ORACLE_BASE=/u01/oracle
    export ORACLE_HOME=/u01/oracle/PROD/db/tech_st/11.2.0
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/perl/bin:$PATH
    export PERL5LIB=$ORACLE_HOME/perl/lib/5.10.0:$ORACLE_HOME/perl/site_perl/5.10.0
    export ORA_NLS10=/u01/oracle/PROD/db/teche_st/11.2.0/nls/data/9idata
    export ORACLE_SID=PROD
    -bash-3.00$ pwd
    /u01/oracle/PROD/db/tech_st/11.2.0/nls/data/9idata
    -bash-3.00$ ls -lh |more
    total 56912
    -rw-r--r-- 1 oracle oinstall 951 Jan 15 16:05 lx00001.nlb
    -rw-r--r-- 1 oracle oinstall 957 Jan 15 16:05 lx00002.nlb
    -rw-r--r-- 1 oracle oinstall 959 Jan 15 16:05 lx00003.nlb
    -rw-r--r-- 1 oracle oinstall 984 Jan 15 16:05 lx00004.nlb
    -rw-r--r-- 1 oracle oinstall 968 Jan 15 16:05 lx00005.nlb
    -rw-r--r-- 1 oracle oinstall 962 Jan 15 16:05 lx00006.nlb
    -rw-r--r-- 1 oracle oinstall 960 Jan 15 16:05 lx00007.nlb
    -rw-r--r-- 1 oracle oinstall 950 Jan 15 16:05 lx00008.nlb
    -rw-r--r-- 1 oracle oinstall 940 Jan 15 16:05 lx00009.nlb
    -rw-r--r-- 1 oracle oinstall 939 Jan 15 16:05 lx0000a.nlb
    -rw-r--r-- 1 oracle oinstall 1006 Jan 15 16:05 lx0000b.nlb
    -rw-r--r-- 1 oracle oinstall 1008 Jan 15 16:05 lx0000c.nlb
    -rw-r--r-- 1 oracle oinstall 998 Jan 15 16:05 lx0000d.nlb
    -rw-r--r-- 1 oracle oinstall 1005 Jan 15 16:05 lx0000e.nlb
    -rw-r--r-- 1 oracle oinstall 926 Jan 15 16:05 lx0000f.nlb
    -rw-r--r-- 1 oracle oinstall 1.0K Jan 15 16:05 lx00010.nlb
    -rw-r--r-- 1 oracle oinstall 958 Jan 15 16:05 lx00011.nlb
    -rw-r--r-- 1 oracle oinstall 956 Jan 15 16:05 lx00012.nlb
    -rw-r--r-- 1 oracle oinstall 1005 Jan 15 16:05 lx00013.nlb
    -rw-r--r-- 1 oracle oinstall 970 Jan 15 16:05 lx00014.nlb
    -rw-r--r-- 1 oracle oinstall 950 Jan 15 16:05 lx00015.nlb
    -rw-r--r-- 1 oracle oinstall 1.0K Jan 15 16:05 lx00016.nlb
    -rw-r--r-- 1 oracle oinstall 957 Jan 15 16:05 lx00017.nlb
    -rw-r--r-- 1 oracle oinstall 932 Jan 15 16:05 lx00018.nlb
    -rw-r--r-- 1 oracle oinstall 932 Jan 15 16:05 lx00019.nlb
    -rw-r--r-- 1 oracle oinstall 951 Jan 15 16:05 lx0001a.nlb
    -rw-r--r-- 1 oracle oinstall 944 Jan 15 16:05 lx0001b.nlb
    -rw-r--r-- 1 oracle oinstall 953 Jan 15 16:05 lx0001c.nlb
    Starting up:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options.
    ORACLE_HOME = /u01/oracle/PROD/db/tech_st/11.2.0
    System name: SunOS
    Node name: proddb3.zakathouse.org
    Release: 5.10
    Version: Generic_147440-19
    Machine: sun4u
    Using parameter settings in server-side spfile /u01/oracle/PROD/db/tech_st/11.2.0/dbs/spfilePROD.ora
    System parameters with non-default values:
    processes = 200
    sessions = 400
    timed_statistics = TRUE
    event = ""
    shared_pool_size = 416M
    shared_pool_reserved_size= 40M
    nls_language = "american"
    nls_territory = "america"
    nls_sort = "binary"
    nls_date_format = "DD-MON-RR"
    nls_numeric_characters = ".,"
    nls_comp = "binary"
    nls_length_semantics = "BYTE"
    memory_target = 11G
    memory_max_target = 12G
    control_files = "/u01/oracle/PROD/db/apps_st/data/cntrl01.dbf"
    control_files = "/u01/oracle/PROD/db/tech_st/10.2.0/dbs/cntrl02.dbf"
    control_files = "/u01/oracle/PROD/db/apps_st/data/cntrl03.dbf"
    db_block_checksum = "TRUE"
    db_block_size = 8192
    compatible = "11.2.0.0.0"
    log_archive_dest_1 = "LOCATION=/u01/oracle/PROD/db/apps_st/data/archive"
    log_archive_format = "%t_%s_%r.dbf"
    log_buffer = 14278656
    log_checkpoint_interval = 100000
    log_checkpoint_timeout = 1200
    db_files = 512
    db_file_multiblock_read_count= 8
    db_recovery_file_dest = "/u01/oracle/fast_recovery_area"
    db_recovery_file_dest_size= 14726M
    log_checkpoints_to_alert = TRUE
    dml_locks = 10000
    undo_management = "AUTO"
    undo_tablespace = "APPS_UNDOTS1"
    db_block_checking = "FALSE"
    session_cached_cursors = 500
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/u01/oracle/PROD/db/tech_st/10.2.0/appsutil/outbound"
    utl_file_dir = "/u01/oracle/PROD/db/tech_st/10.2.0/appsutil/outbound/PROD_proddb3"
    utl_file_dir = "/usr/tmp"
    plsql_code_type = "INTERPRETED"
    plsql_optimize_level = 2
    job_queue_processes = 2
    cursor_sharing = "EXACT"
    parallel_min_servers = 0
    parallel_max_servers = 8
    core_dump_dest = "/u01/oracle/PROD/db/tech_st/10.2.0/admin/PROD_proddb3/cdump"
    audit_file_dest = "/u01/oracle/admin/PROD/adump"
    db_name = "PROD"
    open_cursors = 600
    pga_aggregate_target = 1G
    workarea_size_policy = "AUTO"
    optimizer_secure_view_merging= FALSE
    aq_tm_processes = 1
    olap_page_pool_size = 4M
    diagnostic_dest = "/u01/oracle"
    max_dump_file_size = "20480"
    Tue Jan 15 16:16:02 2013
    PMON started with pid=2, OS id=18608
    Tue Jan 15 16:16:02 2013
    PSP0 started with pid=3, OS id=18610
    Tue Jan 15 16:16:03 2013
    VKTM started with pid=4, OS id=18612 at elevated priority
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    Tue Jan 15 16:16:03 2013
    GEN0 started with pid=5, OS id=18616
    Tue Jan 15 16:16:03 2013
    DIAG started with pid=6, OS id=18618
    Tue Jan 15 16:16:03 2013
    DBRM started with pid=7, OS id=18620
    Tue Jan 15 16:16:03 2013
    DIA0 started with pid=8, OS id=18622
    Tue Jan 15 16:16:03 2013
    MMAN started with pid=9, OS id=18624
    Tue Jan 15 16:16:03 2013
    DBW0 started with pid=10, OS id=18626
    Tue Jan 15 16:16:03 2013
    LGWR started with pid=11, OS id=18628
    Tue Jan 15 16:16:03 2013
    CKPT started with pid=12, OS id=18630
    Tue Jan 15 16:16:03 2013
    SMON started with pid=13, OS id=18632
    Tue Jan 15 16:16:04 2013
    RECO started with pid=14, OS id=18634
    Tue Jan 15 16:16:04 2013
    MMON started with pid=15, OS id=18636
    Tue Jan 15 16:16:04 2013
    MMNL started with pid=16, OS id=18638
    DISM started, OS id=18640
    ORACLE_BASE from environment = /u01/oracle
    Tue Jan 15 16:16:08 2013
    ALTER DATABASE MOUNT
    ORA-12709 signalled during: ALTER DATABASE MOUNT...

    ORA-12709 signalled during: ALTER DATABASE MOUNT...Do you have any trace files generated at the time you get this error?
    Please see these docs.
    ORA-12709: WHILE STARTING THE DATABASE [ID 1076156.6]
    Upgrading from 9i to 10gR2 Fails With ORA-12709 : Error While Loading Create Database Character Set [ID 732861.1]
    Ora-12709 While Trying To Start The Database [ID 311035.1]
    ORA-12709 when Mounting the Database [ID 160478.1]
    How to Move From One Database Character Set to Another at the Database Level [ID 1059300.6]
    Thanks,
    Hussein

Maybe you are looking for

  • Clarify Something For Me, Please.

    I was under the impression that all newer iPods, when Apple dropped the Mac or PC distinction (say from Photo to current), that they were all formatted for PCs out of the box. I ask because I recently sold my 60GB iPod Photo to a PC using friend and

  • Asking webgate to save

    Hi, I am doing a POC in which i am trying to protect a url through OAM, i have made policy domain define a authentication rule in it. When i am trying to access a protected URL , it is asking me user id and pwd after giving it, a popup coming asking

  • Binfmt.d & /usr/lib/binfmt.d/mono.conf - dangerous ?

    copied from https://bbs.archlinux.org/viewtopic.php - 8#p1453898 as i felt this issue is better discussed in a separate thread. Raynman wrote:The mono package provides /usr/lib/binfmt.d/mono.conf. That makes it possible to put the binary in /usr/bin

  • NFe Error: Valid. error: CT-e ID does not match the format of tax authorities

    Good Afternoon, We are facing an issue when we are sending NFe layout 3.10 from SAP ECC to SAP GRC 10.0. We are receiving the following error regarding to CTe but, in fact, we are only sending NFe: One thing to note is that once we receive this error

  • I have two  Ipod and can not us WI FI on one of them.  But i can use it on my other Ipod

    I have two IPOD touch.  1 I can use WI-Fi and the other I can not.  What do I need to do....