Formatting mask for marketing project

Sir ,
We have implemented SAP CRM 2007 (6.0)  . Marketing Plan , element , Campaign Management & element id's are generated automatically by system .
But we have created Formatting mask and Campaign ID should not be generated automatically but End user will create Marketing & Campaign ID according to formatting mask .
Please guide how to stop automatic numbering and
iD will be created by user according to formating MASK . what settings i have to do ?
Regards,
Anup

sir ,
campaign and marketing id's are generated automatically . i dont want to use auto numbering
now i have created formatting mask . i want to use formatting mask . so please guide me how can i use it .
that will replace existing numbering system.
Regards,
Anup

Similar Messages

  • 50027: Invalid format mask for given datatype.

    hi ,
    i have a non database Number Item maximum length is 8
    when i try to put
    NNNNNNNN0.99 as a format mask
    i got the following error
    50027: Invalid format mask for given datatype.
    i want this field to view it's value Such as
    0.55when there is no integer no before the decimal point
    Can anyone help please?
    Form Ver Is Form6i
    Edited by: ayadsufyan on Apr 25, 2013 3:58 AM

    ayadsufyan wrote:
    hi ,
    i have a non database Number Item maximum length is 8
    when i try to put
    NNNNNNNN0.99 as a format mask
    i got the following error
    50027: Invalid format mask for given datatype.
    i want this field to view it's value Such as
    0.55when there is no integer no before the decimal point
    Can anyone help please?
    Form Ver Is Form6i
    Edited by: ayadsufyan on Apr 25, 2013 3:58 AMtry
    099999.99Hope this helps

  • How Can I Change Format Mask For All Fields that type's Number Depend on Parameter in Report Builder 10g ?

    I want Change format mask for all fields that type's number
    Such as
    if  :parameter_value = 1 then
       all fields format mask = ' 999,999,990.000' ;
    else
       all fields format mask = ' 999,999,990.00' ;
    end if;
    Regards

    So, i have bad news for you : you'll have to rebuild again.
    Meanwhile i have excellent news for you : there's an online tool made by Johannes Henseler called Sidecar xml which builds the necessary xml file for you, sort of what you find in the Digital Publishing Folio Editor website, but saves it in your Folio folder.
    Next time you import all your folder (with that file), it will place all the necessary information, and even reorder the articles.
    Build once, play many times.

  • Can you specify format mask for date or timestamp columns

    Hi,
    Recently when I'm developing a PL/SQL application, I find that any format mismatch between data in table and format mask specified in to_date/to_timestamp function will cause exceptions. However, I'd like to make my application more robust and immune to this kind of problems, and know exactly which format mask to use for exactly what columns in db table.
    Is there a way in a table column to specify the format mask for date/timestamp columns such that I can know exactly what format mask to use when doing conversion? Also I don't want to depend on NLS_DATE_FORMAT specification, don't want to make a long case statement to check for every date format allowed by Oracle.
    Many thanks.

    As per my knowledge it can't be possible
    casuse if you entered '12/11/2007' date
    how oracle know that in date 12'th is the month or 11'th.
    The person who entered that date will also have confusions in future.
    either you have to fix one date format for your whole application (application configuration).
    or you have to store the date format in other column of the table.
    In case you set the date column to varchar and store all the dates without format then
    in future you may face problems in future while fetching the records, searching etc.
    Regards
    Singh

  • JQuery format mask for date columns in tabular form

    Hi,
    How can I apply jQuery format mask for date columns in a tabular form?
    Thanks.
    Andy

    OK, I realized I didn't choose the default type as "Pl/SQL Expression", now it's working correctly.
    Thank you very much!

  • New  Decimal Notation Format Required  For Indian Projects

    Respected Members,
    As at the user level or tcode SU01 only three decimal notations are provided.
    But for country India the decimal notation format is totally different.
    Given decimal notation format is
    1,234,567.89
    And the Required Format For India is
    1,23,456.78
    Becoz we mention the Rupees in this format only.
    And this second format is not available in SPRO also .
    How to create the desired decimal notation and add the corresponding functionality.
    And if we use the given format (1,234,567.89) then when we converting the amount in words through Function module
    SPELL_AMOUNT ,it is not converting properly even though we have maintain the entries in View V_T015Z.
    Suppose our amount is 1,00,000 that is One lakh but it will show in the output  ONE HUNDRED THOUSAND.
    I know that there is another function Module HR_ch_ something to convert in words according to indian currency.
    But it does not solve the issue properly.
    THis DECIMAL NOTATION format for Indian Projects is a BIG MESS.
    So kindly tell me any solution or it is the drawback of SAP.
    So that we can ask SAP to append this Decimal Notation and required Functionality for the Indian Projects.
    Kindly Send Your Valuable answer and Try To Make clear picture and SAP Technical People if Reading this thread then kindly give stress on the REQUIRED DECIMAL NOTATION.
    THANKS A LOT.

    Hi Manish please you can try this code
    REPORT ZAMOUNT_CONVERSION.
    DATA : RESULT1(20).
    PARAMETERS : NUM TYPE P DECIMALS 2.
    DATA : num2 type STRING.
    DATA :  col_amt(20) type n,"15
             col_b type i,
             num_1(20) type C,"15
             Length type i.
    num_1 = num.
    write : 'default format      :',num.
    uline.
    skip.
    IF ( num >= 999999999 ).
           write num_1 using edit mask 'RR__,__,__,__,______' to col_amt.
           CONDENSE col_amt.
           length = STRLEN( col_amt ).
           if length = 16.
             REPLACE first OCCURRENCE OF ',' in col_amt with space.
             write :/'amount indian format:',col_amt.
           else.
           write :/'amount indian format:',col_amt.
           endif.
    ELSEIF NUM < 999999999 AND NUM >= 9999999.
           write num_1 using edit mask 'RR__,__,__,______' to col_amt.
           condense col_amt .
           length = STRLEN( COL_AMT ).
           if length = 13.
             REPLACE first OCCURRENCE OF ',' in col_amt with space.
             write :/'amount indian format:',col_amt.
           else.
             write :/'amount indian format:',col_amt.
          endif.
    ELSEIF NUM < 9999999  AND NUM >= 99999.
           write num_1 using edit mask 'RR__,__,______' to col_amt.
           condense col_amt .
           length = STRLEN( COL_AMT ).
           write :/'amount indian format:',col_amt.
    ELSEIF NUM < 99999.
       data : dumy(10) type c.
       dumy = num .
       CONDENSE dumy.
       length = STRLEN( dumy ).
         if length <= 6.
           write :/'amount indian format:',num.
           else.
           write num_1 using edit mask 'RR__,______' to col_amt.
           write :/'amount indian format:',col_amt.
          endif.
       ENDIF.
       uline.
    create a function module with this code .hope this will solve the issue.

  • Format Mask for Germany

    Hi All,
    i have developed New Form for the German Client,In tht form i have one column for percent there the user will give 20,90 %.If i click Calculate button the calculation has to done based on that.
    Format Mask should be like 50,4 instead of 50.4
    If any one is having the code for that plss send me or let me know the process,
    help me in this issue..bit urget
    Regards
    prasad

    Have you tried setting profile option ICX: Numeric characters ?
    But very careful when you set this, better to set it at user/responsibility level.

  • Date format Mask for CHAR datatype

    hi
    i want to assign a format mask like 'dd/mm/yyyy' to a field which has char datatype can i ?

    The quickest answer to your question is to try it! :-) If you click on the Format Mask property of your Text Item and then press F1 Forms will display the Format Mask Help information for this property. All of the valid combinations for a Text Field Format Mask will be displayed.
    To answer your question, you can put a format mask on a Text Item that can enforce the basic format of 'DD/MM/YYYY', but you could get data like: 99/99/9999. You would have to write code in a When-Validate-Item trigger that would ensure the user has entered a valid date.
    Hope this helps.
    Craig...

  • Format Mask for Zeros

    Hi guys.
    I have a report in which I want to give format to a number, but I'm getting an issue with the 0 (zero).
    The format mask I'm using is "999,999,999.99", but when I got a 0 it is printed like ".00" and I want to print it like "0.00", in any other case I want to print the number like "123,456,789.00"
    Hope somebody can help me.
    regards

    use "999,999,990.00"

  • Download Formatting Mask for BLOB column

    Hi All,
    IR Query : select "ROWID","FILE_NAME",dbms_lob.getlength("DATA_FILE") "DATA_FILE",
    "DOC_SIZE",PROPOSAL_OWNER
    from "#OWNER#"."APXTER_IMP_HDR"
    I am using BLOB Download Format Mask on FILE_NAME column
    using the following FORMATTING
    DOWNLOAD:APXTER_IMP_HDR:DATA_FILE:ROWID::::::attachment:Download
    After applying the changes, I counter the error
    The number of display columns in the report reached the limit. Please click Select Columns under Actions menu to minimize the report display column list.
    Thanks,
    Sombit

    Hello,
    Here you can find a tutorial about blob:
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r31/apex31nf/apex31blob.htm
    I have a demo here - it shows how to display an image in case the file is image. Otherwise, it displays download link:
    http://apex.oracle.com/pls/apex/f?p=63066:1
    workspace: somefeto
    user: test
    pwd: test
    Application 63066
    Also, there is a packaged application : Sample File Upload and Download that shows you, how to do it.....
    you can find it on your workspace.. or here if you wish:
    http://apex.oracle.com/pls/apex/f?p=10540:3:15582111009947::NO
    workspace: somefeto
    user: test
    pwd: test
    Regards,
    Fateh
    If you believe that my answer was helpful to you or correct, then please mark the answer as helpful or correct ...

  • Dynamic Format mask for attribute in a JTable

    I've a JClient app.
    I need to define format and color of a field at runtime depending on some row informations.
    I've the same problem in a Form and In a JTable.
    Could someone suggest how can I do that ?
    TIA
    Tullio

    Format and other UIHints (ControlHints) are not looked up per row but are considered like static metadata for a given row/object type. So, there's no one chokepoint in Bc4J to override the control-hint apis like label/format/tooltip etc.
    In DataBinding side, you can override
    public Object getAttributeFromRow(Row row, AttributeDef def)
    and
    public void setAttributeInRow(Row row, AttributeDef def, Object value, boolean handleException)
    methods that perform the format/unformat implementation on a particular control-binding.

  • Format Mask for TexInput Field

    Hi All,
    I have one requirement of making format for string which to be entered into text This should work like Password field but main thing need to implement is that entered alphabets (Eg. 123456789) should not replace all alphabetes with special characeter (Eg. *********). Instead of this replacement, I need to replace only starting few alphabetes. For example, when we enter string "123456789", while entering this string TextInput field should replace string by string "******789".
    That means user can not see some starting alphabetes when he key in whole string.
    Please let me know if anybody has done this ever or has some idea.
    Help is greatly appreciated.
    Thanks,
    Arvind

    I am sorry.
    By mistake I have raised this thread in Database forum.
    I wanted to raise in OAFramework.

  • Format Changed for Marketing Surveys

    Hi,
    I have created the survey and when trying to preview the view is perfect but when trying to use in the transaction the format is getting changed like example:
    Questionaire <br/> <br/>
    is there any thing which iam missing when trying to create the survey from survey suite/webui.
    Prompt response will be highly appreciated and points will be rewarded...
    Ahmedi,,

    Check below SAP Note
    1526258 - Survey Text Alignment does not work with Business Document
    Regards,
    Shobhit

  • Format mask for degree

    hi guys
    i am developing custom form in forms 6i
    my problem is i have lattitude , longitude colums in my form so i have to take the values of those in degrees and minutes format can any one help me out in this

    What about something like the following with a NUMBER datatype:
    999"°"999"'"Francois

  • Format mask for Numeric and Data data

    1)Is there any way to suppress timestamp for 12:00:00 value from a date column with TO_CHAR? except that value we should display time value for date column, like this
                 01/12/2009 01:15:01  , 01/12/2009 12:00:00
                 this should be like
                 01/12/2009 01:15:01 , 01/12/2009
                 2) Can I display "0." decimal infornt of numeric value? I used to_char('0.1','9999990.99') , but its displays leading spaces How can I toggle fm for numeric values ?
    Thanks,
    Hesh.
    Edited by: Hesh on Jun 23, 2009 12:27 AM

    A slight change to Michael's query (corrected a small typo)
    SQL> WITH test_tab
      2         AS (SELECT   SYSDATE date_col FROM DUAL
      3             UNION ALL
      4             SELECT   TO_DATE ('26/06/2009 12:00:00', 'DD/MM/YYYY hh24:MI:SS')
      5               FROM   DUAL)
      6               -- end test data
      7  SELECT   date_col,
      8           TO_CHAR (
      9              date_col,
    10              CASE
    11                 WHEN TO_CHAR (date_col, 'hh24:mi:ss') = '12.00.00'  -- typo error '.' instead of ':'
    12                 THEN
    13                    'dd.mm.rrrr'
    14                 ELSE
    15                    'dd.mm.rrrr hh24:mi:ss'
    16              END
    17           )
    18              dt
    19    FROM   test_tab
    20    /
    DATE_COL             DT
    23-JUN-2009 13:29:42 23.06.2009 13:29:42
    26-JUN-2009 12:00:00 26.06.2009 12:00:00
    2 rows selected.
    -- corrected query --
    SQL>   WITH test_tab
      2         AS (SELECT   SYSDATE date_col FROM DUAL
      3             UNION ALL
      4             SELECT   TO_DATE ('26/06/2009 12:00:00', 'DD/MM/YYYY hh24:MI:SS')
      5               FROM   DUAL)
      6               -- end test data
      7  SELECT   date_col,
      8           TO_CHAR (
      9              date_col,
    10              CASE
    11                 WHEN TO_CHAR (date_col, 'hh24:mi:ss') = '12:00:00'
    12                 THEN
    13                    'dd.mm.rrrr'
    14                 ELSE
    15                    'dd.mm.rrrr hh24:mi:ss'
    16              END
    17           )
    18              dt
    19    FROM   test_tab
    20  /
    DATE_COL             DT
    23-JUN-2009 13:29:44 23.06.2009 13:29:44
    26-JUN-2009 12:00:00 26.06.2009
    2 rows selected.
    SQL>Regards,
    Jo

Maybe you are looking for

  • How to get field separator in flat file using GUI_DOWNLOAD function

    hi, how to get field separator in flat file using GUI_DOWNLOAD function.                                 thanking you.

  • Unable to sync iPhone 3G to iTunes 10.5.0.56

    Never had any problems syncing until recently. My computer crashed and had to get a new one. Computer guy transfered data from old to new computer. I think that he probably updated my version of iTunes to 10.5.0.56, but can't say for sure. Now I am u

  • Pre-edit errors

    Hi all, We have a custom interface to load the voucher data from a file to Staging table. After that we build voucher build to get the voucher created from the staging tables. So we have run the custom interface and the Voucher build. The custom inte

  • CVP Media server config for Agent greeting

    Hi All, How to write agent greeting files to multiple media servers, (4 media servers in our case) I got to know that setting the default media server to act as a proxy will resolve this issue. Kindly let me know is this correct and how this could be

  • Authorization for the user to write/read/create a file in application serve

    Hi experts. I am uploading some data to a file in a folder in application server, created in AL11 tcode. In my program i need to restrict the unauthorized users to create/write/read a file in app server. I dont know how to do this. Kindly give me the