What is the format 0fiscper,0quarter,0quarter1,0fiscper3

what is the format 0fiscper,0quarter,0quarter1,0fiscper3

0fiscper,0quarter,0quarter1,0fiscper3
all same 6 digits format
0fiscper =PPYYYY 012004
indicated Period 01 year 2004

Similar Messages

  • What is the format  for  0calmonth2,0calquarter,0calweek,0calyear,0fiscper,

    what is the format  for  0calmonth2,0calquarter,0calweek,0calyear,0fiscper,0ficper3, 0halfyear1, 0weekday1

    Hi Dominic,
    0FISCPER is a NUMC 7 infoobject. And it takes your 003.200 seven symbols leaving the last symbol. Though, the output format is length of 8.
    A'm not sure if you are dealing with external format (in this case try to enter 0032005) or with internal (then try 2005003).
    Best regards,
    Eugene

  • What's the format of the datasource tag in jbosscmp-jdbc.xml

    Hi,
    I made a CMP when I use Lomboz to generate the classes, and xml files, but I still don't know how to relate my CMP to datasource.
    I thought may be I should configure the jbosscmp-jdbc.xml, because when I look in this file and found:
    <defaults>
    <datasource>PLEASE_MODIFY_THIS</datasource>
    <datasource-mapping>PLEASE_MODIFY_THIS</datasource-mapping>
    <preferred-relation-mapping>PLEASE_MODIFY_THIS</preferred-relation-mapping>
    </defaults>
    But I don't know how to "modify this", What do those tags mean? what are those for? and what are the Formats?
    My database -- mySQL
    datasouce xml file -- test-ds.xml:
    <datasources>
    <local-tx-datasource>
    <jndi-name>jdbc/test</jndi-name>
    <connection-url>jdbc:mysql://devsz-ma3.cn1.belton.com.hk:3306/test?useUnicode=true&characterEncoding=UTF-8</connection-url>
    <driver-class>com.mysql.jdbc.Driver</driver-class>
    <user-name>touchpanel</user-name>
    <password>touchpanel</password>
    </local-tx-datasource>
    </datasources>
    I need help, can you tell me some about that, thanks
    next is my CMP entity bean:
    package ejb.product;
    import java.rmi.RemoteException;
    import javax.ejb.EJBException;
    import javax.ejb.EntityBean;
    import javax.ejb.EntityContext;
    import javax.ejb.RemoveException;
    * @ejb.bean name="Product"
    *     jndi-name="ProductBean"
    *     type="CMP"
    *  primkey-field="productId"
    *  schema="Product"
    *  cmp-version="2.x"
    * This is needed for JOnAS.
    * If you are not using JOnAS you can safely remove the tags below.
    * @jonas.bean ejb-name="Product"
    *     jndi-name="ProductBean"
    * @jonas.jdbc-mapping  jndi-name="jdbc/test" jdbc-table-name="FL_PRODUCT"
    *  @ejb.persistence
    *   table-name="FL_PRODUCT"
    * @ejb.finder
    *    query="SELECT OBJECT(a) FROM Product as a" 
    *    signature="java.util.Collection findAll()" 
    * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product a where a.NAME = ?1" 
    *       signature="java.util.Collection findByName(java.lang.String name)" 
    * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product a where a.DESCRIPTION = ?1" 
    *       signature="java.util.Collection findByDescription(java.lang.String desc)" 
    * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product a where a.BASE_PRICE = ?1" 
    *       signature="java.util.Collection findByBasePrice(double basePrice)" 
    * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product " 
    *       signature="java.util.Collection findAllProducts()" 
    * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product a where a.BASE_PRICE > ?1" 
    *       signature="java.util.Collection findExpensiveProduct(double maxPrice)" 
    * * @ejb.finder
    *       query="SELECT OBJECT(a) FROM Product a where a.BASE_PRICE < ?1" 
    *       signature="java.util.Collection findCheapProduct(double minPrice)" 
    * This is needed for JOnAS.
    * If you are not using JOnAS you can safely remove the tags below.
    * @jonas.finder-method-jdbc-mapping  method-name="findAll"
    *     jdbc-where-clause=""
    * @jonas.jdbc-mapping  jndi-name="jdbc/test"
    *     jdbc-table-name="FL_PRODUCT"
    public abstract class ProductBean implements EntityBean {
         protected EntityContext ectx;
          * The  ejbCreate method.
          * @ejb.create-method
         public java.lang.String ejbCreate(String productId, String name, String desc,double basePrice) throws javax.ejb.CreateException {
              // EJB 2.0 spec says return null for CMP ejbCreate methods.
              // TODO: YOU MUST INITIALIZE THE FIELDS FOR THE BEAN HERE.
              // setMyField("Something");
              System.out.println("Entering ProductBean.ejbCreate()");
              setProductId(productId);
              setName(name);
              setDescription( desc);
              setBasePrice(basePrice);
              System.out.println("Leaving ProductBean.ejbCreate()");
              return productId;
          * The container invokes this method immediately after it calls ejbCreate.
         public void ejbPostCreate(String productId, String name, String desc,double basePrice) throws javax.ejb.CreateException {
         * Returns the productId
         * @return the productId
         * @ejb.persistent-field
         * @ejb.persistence
         *    column-name="PRODUCT_ID"
         *     sql-type="varchar"
         * @ejb.pk-field
         * @ejb.interface-method
         * This is needed for JOnAS.
         * If you are not using JOnAS you can safely remove the tags below.
         * @jonas.cmp-field-jdbc-mapping  field-name="productId"
         *     jdbc-field-name="PRODUCT_ID"
         public abstract java.lang.String getProductId();
         * Sets the productId
         * @param java.lang.String the new productId value
         * @ejb.interface-method
         public abstract void setProductId(java.lang.String productId);
         * Returns the name
         * @return the name
         * @ejb.persistent-field
         * @ejb.persistence
         *    column-name="NAME"
         *     sql-type="varchar"
         * @ejb.interface-method
         * This is needed for JOnAS.
         * If you are not using JOnAS you can safely remove the tags below.
         * @jonas.cmp-field-jdbc-mapping  field-name="name"
         *     jdbc-field-name="NAME"
         public abstract java.lang.String getName();
         * Sets the name
         * @param java.lang.String the new name value
         * @ejb.interface-method
         public abstract void setName(java.lang.String name);
         * Returns the description
         * @return the description
         * @ejb.persistent-field
         * @ejb.persistence
         *    column-name="DESCRIPTION"
         *     sql-type="varchar"
         * @ejb.interface-method
         * This is needed for JOnAS.
         * If you are not using JOnAS you can safely remove the tags below.
         * @jonas.cmp-field-jdbc-mapping  field-name="description"
         *     jdbc-field-name="DESCRIPTION"
         public abstract java.lang.String getDescription();
         * Sets the description
         * @param java.lang.String the new description value
         * @ejb.interface-method
         public abstract void setDescription(java.lang.String description);
         * Returns the basePrice
         * @return the basePrice
         * @ejb.persistent-field
         * @ejb.persistence
         *    column-name="BASE_PRICE"
         *     sql-type="double"
         * @ejb.interface-method
         * This is needed for JOnAS.
         * If you are not using JOnAS you can safely remove the tags below.
         * @jonas.cmp-field-jdbc-mapping  field-name="basePrice"
         *     jdbc-field-name="BASE_PRICE"
         public abstract double getBasePrice();
         * Sets the basePrice
         * @param double the new basePrice value
         * @ejb.interface-method
         public abstract void setBasePrice(double basePrice);
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#ejbActivate()
         public void ejbActivate() throws EJBException, RemoteException {
              System.out.println("ejbActivate() called.");
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#ejbLoad()
         public void ejbLoad() throws EJBException, RemoteException {
              System.out.println("ejbLoad() called.");
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#ejbPassivate()
         public void ejbPassivate() throws EJBException, RemoteException {
              System.out.println("ejbPassivate() called.");
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#ejbRemove()
         public void ejbRemove() throws RemoveException, EJBException, RemoteException {
              System.out.println("ejbRemove() called.");
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#ejbStore()
         public void ejbStore() throws EJBException, RemoteException {
              System.out.println("ejbStore() called.");
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#setEntityContext(javax.ejb.EntityContext)
         public void setEntityContext(EntityContext arg0) throws EJBException, RemoteException {
              this.ectx = arg0;
         /* (non-Javadoc)
          * @see javax.ejb.EntityBean#unsetEntityContext()
         public void unsetEntityContext() throws EJBException, RemoteException {
              this.ectx = null;
    }

    you can try this
    <defaults>
    <datasource>java:/jdbc/test</datasource>
    <datasource-mapping>MySQL</datasource-mapping>
    <create-table>false</create-table>
    <remove-table>false</remove-table>
    </defaults>
    JaimeS

  • What is the format of 0calmonth data in flat file

    Hi,
    What is the format  for  0calmonth field data  in flatfile to load data in to cube.
    Thanks .

    Hi Alex,
    Thanks for your response. Iam providing 0calmonth  field data as 200904 ,200905 and further  then at the time of loading it is throughing error like
         Value '090420 ' of characteristic 0CALMONTH is not plausible     BRAIN     27     
    Please suggest me.
    Thanks.

  • What is the format required in essbase side to show calendar icon in obiee

    Hi All,
    Currently we are bulidng dashboards with Essbase ASO cube as underlined multi-dimensional database.
    Not sure essbase date is not showing as date format.
    what is the format required in essbase side to show calendar icon in obiee
    We tried format as "Obiee Date - Jan 1, 2007 12:00 AM.However no use.
    Can someone assist on this issue how to proceed further
    Thanks,
    SatyaB

    I have actually seen this as a problem with Essbase Data sources...It takes this as Varchar. My time grains are till Month in current system so can't check...
    May be this can help you out http://businessintelligence.ittoolbox.com/groups/technical-functional/hyperion-bi-l/obiee-essbase-as-source-time-dimension-using-between-operator-3399220
    Else , there is unfortunately no workaround.
    Check Christian's comment as well Re: Essbase Date Measures as DATE in OBIEE
    Edited by: Deepak Gupta on 21-Sep-2011 23:48

  • Where does FireFox get the default value of a preference from. What is the format of the file that has the default value?

    Where does FireFox get the default value of a preference from. What is the format of the file that has the default value?. I need the actual default value for a particualr preference.
    About:config does show some default values but I need the source from which about:config picks up the default value.
    Any help in this direction is greatly appreciated.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)

    The prefs that aren't hidden if they are the default are stored in two JavaScript text files in the Firefox program folder
    You can open them via these links in a Firefox tab:
    <code>resource:///defaults/pref/firefox.js
    resource:///greprefs/all.js
    </code>
    ([/forum/1/702598])

  • What are the formats supported by AudioClip?

    What are the formats supported by AudioClip? Is it the same as in Media?

    It is resolved in the FAQ of site JavaFX.

  • When I call nifGetObjectDictionary on a Domain Index, what is the format of data returned

    hello,
    When I call nifGetObjectDictionary on an Active Schedule Domain Index (450) of NI Card, retrieved from S-OD -> DLL Link Schedule OD Index, what is the format of data returned? I received 0801C202FFFF000000 as data and it is not matching with FF-Spec (Field Device Access Agent, page 95).
    Could you please let me know the format/structure of the data i received, so that i can parse them and understand?
    Also let me know is there any API available in NI API to upload/read Schedule Domain?
    Thanks
    Shankar.

    Sorry for replying late!
    We don't have the nifGetObjectDictionary function, so may I make a guess that you mean nifGetObjectDescription? If I'm right, there will be some trouble.
    To be honest, basically we don't support the APIs which are not included in the "NI-FBUS CM Function Reference Manual". In further, would you please let me know how you find this kind of internal functions? We cannot support it until we verify the customer has bought the complete version of APIs package and this package is still in the support period. If it matches your case, would you please help me in the verification? And then we can support the details for your question later.
    On the other hand, we don't have the APIS to upload/read Schedule Domain now.

  • I have an LG Revere 3-What is the format for ringtones?

    I have an LG Revere 3-What is the format for ringtones?

    Supported audio file format for LG Revere 3?
    I asked this question about a month ago and didn't get a satisfactory answer. It seems like the phone software has not been updated from the VN150S in order to support bluetooth transfer of custom audio files.

  • What is the format of LO data sources?

    What is the format of LO data sources?

    Hello,
    for some of your (many) questions you can find answer by yourself, if you read the documentation (as each other in this forum) e.g. LIS-DataSources in documentation of business content. --> help.sap.com
    Regards,
    André
    Edited by: André Klos on Jul 2, 2008 1:54 PM

  • Pre/Post backup script online backup on VM level \Online\Servername - what is the format of datasource?

    Hello, I am trying to set prebackup script for DPM 2012 R2 UR2 on Windows 2003 R2 VM with SQL server 2005 Inside.
    I would like to disable SQLVssWriter during the VM backups  (in DPM backup of \Online\Servername).
    What is the correct format of ScriptingConfig.xml? This is what I have tried but it did not work.
    <?xml version="1.0" encoding="utf-8"?>
    <ScriptConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
    xmlns="http://schemas.microsoft.com/2003/dls/ScriptingConfig.xsd">
       <DatasourceScriptConfig DataSourceName="System Protection ">
         <PreBackupScript>"C:\Sources\DPMscripts\PreBackup.cmd" </PreBackupScript>
         <PostBackupScript>"C:\Sources\DPMscripts\PostBackup.cmd" </PostBackupScript>
         <TimeOut>90</TimeOut>
       </DatasourceScriptConfig>
    </ScriptConfiguration>
    Can you point me to a right direct?

    ok, let's try:
    modified a query like this:
    Use dpmdb
    select ComponentName,caption from tbl_RM_RecoverableObject
    where Caption like cast('%Online%' as ntext)
    order by cast(Caption as nvarchar)
    and I get the table like this:
    E473B7C4-B1EC-49DC-A54C-6A65D36C64B3  Online\LCBUILD2
    Now trying the script:
    <?xml version="1.0" encoding="utf-8"?>
     <ScriptConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
     xmlns="http://schemas.microsoft.com/2003/dls/ScriptingConfig.xsd">
        <DatasourceScriptConfig DataSourceName="E473B7C4-B1EC-49DC-A54C-6A65D36C64B3">
          <PreBackupScript>"C:\Sources\DPMscripts\PreBackup.cmd" </PreBackupScript>
          <PostBackupScript>"C:\Sources\DPMscripts\PostBackup.cmd" </PostBackupScript>
          <TimeOut>90</TimeOut>
        </DatasourceScriptConfig>
     </ScriptConfiguration>
    I'll let you know if it works...

  • What is the format for the DATE date type in SQL

    I just wanted to know what the format is for the Date type in Oracle 10g SQL. I need to be able to specify to the second, but not further than that. Thanks in advance.

    Hi,
    DATE format is configurable and can be easily changed. I suggest the function TO_DATE. For example:
    to_date('10-20-2008', 'MM-DD-YYYY')
    to_date('20/12/08 20:15', 'dd/mm/yyyy hh24:mi')Regards,
    Miguel

  • What is the format for a Client Request JMS message.

    I am trying to send directly to the JMS queue to start a WLI process. From the Workshop browser, the message is received. However, when sending my own JMS message, WebLogic complains with an "Unexpected message format" onMessageException.
    What is the correct format for a WLI Client Request node? A text message? Please help. Thanks - Frank.

    Kai,
    Thanks for the info. I have created a MB channel and a JMS event generator. But now it seems that my problem has simply been moved further out. Case in point: If I send a simple XML text message to the JMS event queue, the WebLogic JPD throws a MBConnectorException ("Could not determine channel type").
    So I am wondering if this is still not the best practice to accomplish what I want. Should I be using a MDB which then simply calls a JCX control that knows how to talk to the WLI start node? The whole idea is that I want to start the workflow with a simple JMS message.
    Thanks in advance,
    Frank

  • HT3559 what is the format of a 500gb drive inside an imac?

    I need help to replace an HDD of a 21.5 mid 2010 iMac with something faster (I'm thinking about a Seagate 750GB SSHD hybrid drive) and for that I need to know what is the physical size (2,5" or 3,5" or the actual measurement of the drive's dimensions) of the HDD (500GB SATA) built in. The idea is to have prepared a new drive so that the replacement goes smoothly.

    Just google the drive in question (or go directly to the Seagate site) + "form factor."  The orginal drive will be 3.5" and have a standard size.
    I don't know what will happen with a hybrid, but you might want to know before plungng ahead that all the drives for that model are Apple proprietary, with special firmware for the reading of the internal temp sensor.
    The usual result of replacing the drive is that the SMC (System Management) receives no input for the temp of the drive and revs the drive fan up to max. One workaround for this, at least with ordinary drives, is to get the free SSD Fan Control.
    http://exirion.net/ssdfanctrl/

  • What is the format required to pass parameters to a component running as a portlet?

    I have just got working the passing of parameters to reports and forms. However, if I run these as portlets, it does not seem to accept the parameters, giving me various errors.
    What is the correct method of passing parameters to portlets?
    null

    Michael
    A search on passing parameter in this forum returned 5 hits; I believe one or more of them will likely answer your question.
    Also check out the FAQ: http://technet.oracle.com/products/iportal/htdocs/portal_faq.htm#CustomPortlets

Maybe you are looking for

  • Can't run flash player in full screen on 2nd monitor

    Hi all! I have a laptop with dual video displays. The main display is the laptop's LCD and the 2nd display is a 19" LCD connected via VGA cable. I want to let a Flash movie loop endlessly on the second monitor while I continue to work on the laptop.

  • Powerbook 12" G4 works with Tiger?

    I have a 12" Powerbook 1GHz PowerPC G4, with 1,25GB of DDR SDRAM, and a hardisk of 120GB. It also has a CD reader (not a combo CD/DVD. I believe the Tiger needs a DVD reader, am I correct?) I'm noticing that new features and internet programs (lake t

  • Do I need to have both RH Server and Office

    If I have the RH server license do I need to buy the  RoboHelp office as well for every single user?

  • Object on desktop wont go into trash

    ive got this game demo i downloaded off of a website, and it didnt work so i decided to throw it away, but then it kept saying it couldnt do it because that it was currently in use by another application and to try again later. how do i get rid of it

  • My phone wont work but i need the esn number how can i get it ?

    how to find esn number if my phone no longer works?