Who can tell me what's mean the parameter "-g" of buildserver.

buildserver -f "-g" -o ...
i looked for the the manual for buildserver but i can't found it.

Hi Jamxia,
The doc says
http://edocs.bea.com/tuxedo/tux81/rfcm/rfcmd7.htm#1750061
Compatibility
In earlier releases, the -g option was allowed to specify a genoption of sql or database. For upward compatibility, this option is a synonym for the -r option.
So it is same usage with -r option with compatibility consideration. But please note your example is not proper since buildserver will think "-g" as an argument of -f. -f specifies the source code wanted in the compile.
Wayne

Similar Messages

  • Who can tell me what are the functions of the following subdirectories?

    Who can tell me what are the functions of the following subdirectories? How are they classified?
    oracle@hostp ~$ cd $ORACLE_HOME
    oracle@hostp db_1$ ls
    {color:#0000ff}
    assistants demo jdbc network oui slax
    bin diagnostics jdk nls owm sqlj
    cdata has jlib oc4j perl sqlnet.log
    cfgtoollogs hostp_db10g jre odbc plsql sqlplus
    clone hostp_rcatalog ldap olap precomp srvm
    config hs lib OPatch racg sysman
    crs install log opmn rdbms uix
    css {color:#000000}install.platform{color} md oracore relnotes wwg
    ctx inventory mesg oraInst.loc {color:#ff6600}root.sh{color} xdk
    dbs javavm mgw {color:#ff6600}ord root.sh.old{color}
    {color}
    dbs javavm mgw ord root.sh.old

    Hi,
    Here we go:
    - assistants:      configuration Assistants
    - bin:      binaries for all products
    - ctx:      interMedia Text cartridge
    - dbs :     contain initsid.ora, lksid (initiation files, password files,etc)
    - instal:l      install related files
    - lib:      Oracle product libraries
    - jlib:      Java classes
    - md:      Spatial cartridge
    - mlx      Xerox: Stemmer (for interMedia Text cartridge)
    - network:      Net8
    - nlsrtl :      NLS run-time loadable data
    - ocommon:      common files for all products
    - odg:      data gatherer
    - opsm:      Parallel Server Manager Components
    - oracore:      core libraries
    - ord:      data cartridges
    - otrace:      Oracle TRACE
    - OPatch: Patches to the DB
    - plsql :     PL/SQL
    - precomp:      precompilers
    - rdbms :      server files and libraries required for the database
    - slax:      SLAX parser
    - sqlplus :     SQL*Plus
    For more Information you can refer to:
    - http://www.stanford.edu/dept/itss/docs/oracle/10g/em.101/b12140/3_oui_oracle_homes.htm
    - http://www.dba-oracle.com/linux/important_files_directories.htm
    Cheers,
    Francisco Munoz Alvarez
    http://www.oraclenz.com

  • Who can tell me how to get the CRT for BBPCRM patch 8

    hello ,
    my solution patch level is SAP_BASIS     700     0011     SAPKB70011     SAP Basis Component
    SAP_ABA     700     0011     SAPKA70011     Cross-Application Component
    PI_BASIS     2005_1_700     0011     SAPKIPYJ7B     PI_BASIS 2005_1_700
    ST-PI     2005_1_700     0003     SAPKITLQI3     SAP Solution Tools Plug-In
    SAP_BW     700     0012     SAPKW70012     SAP NetWeaver BI 7.0
    SAP_AP     700     0008     SAPKNA7008     SAP Application Platform
    BBPCRM     500     0007     SAPKU50007     BBPCRM
    CPRXRPM     400     0002     SAPK-40002INCPRXRPM     SAP xRPM/cProjects/cFolders 4.00 (ABAP)
    ST     400     0010     SAPKITL420     SAP Solution Manager Tool
    ST-A/PI     01G_BCO700     0000     -     Servicetools for other App./Netweaver 04
    ST-ICO     150_700     0007     SAPK-15077INSTPL     SAP Solution Manager Implementation Cont
    ST-SER     700_2005_2     0002     SAPKITLOC2     SAP Solution Manager Service Tools
    But now , i find some CRM function can not be used , for example , i could not create a servcie message and monitor , if i create a service message and monitor the message , an abap dump occurs ,  the dump error is
    CALL_METHOD_NOT_IMPLEMENTED
    CX_SY_DYN_CALL_ILLEGAL_METH 
      Error in the ABAP Application Program
      The current ABAP program "CL_EX_CRM_APPOINTMENT_BADI====CP" had to be
       terminated because it has
      come across a statement that unfortunately cannot be executed.
    i try to upgrade the BBPCRM patch to 8 . the system tell me that you should need a CRT for the patch . i try to find the CRT, Unfortunate , i could't find it . who can tell me how to find the CRT . thanks !

    Hi Tony,
    Please, refer to note 892412. Here you can find the patch level required depending on the solman used. I can tell u that we have applied this note and currently we create service messages. Check this patch levels first.
    Regds,
    Jose Sorli

  • Who can tell me how to use the  transction "KKRC"?

    who can tell me how to use the  transction "KKRC"?
    Please explain me all the steps to be required.
    Thanks in advance!

    hi..
    http://help.sap.com/bp_bl603/BBLibrary/Documentation/181_BPP_EN_BR.doc
    KKBC HOE Transaction code Error
    Regards

  • Who can tell me how to use the FM "SSF_FUNCTION_MODULE_NAME"?

    I wants to known the FM "SSF_FUNCTION_MODULE_NAME" in every detail and particular.
    it would be best show me a demo.
    thanks very much !

    Hi,
    PARAMETERS:
      P_FORM TYPE TDSFNAME. " ------> This parameter is for passing the smartform name
    DATA:
      FM_NAME TYPE RS38L_FNAM." -----------> This will get the function module  name of the smartform
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME           = P_FORM
      IMPORTING
        FM_NAME            = FM_NAME
      EXCEPTIONS
        NO_FORM            = 1
        NO_FUNCTION_MODULE = 2
        OTHERS             = 3.
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    " This function module is called with the Function module of the smart form when there are no FORM
    " interface parameters declared, if you have any form interface parameters those cannot be passed through
    " this function module
      CALL FUNCTION FM_NAME
    * EXPORTING
    *   ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
    *   CONTROL_PARAMETERS         =
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
    *   OUTPUT_OPTIONS             =
    *   USER_SETTINGS              = 'X'
    * IMPORTING
    *   DOCUMENT_OUTPUT_INFO       =
    *   JOB_OUTPUT_INFO            =
    *   JOB_OUTPUT_OPTIONS         =
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    " when you have any form interface parameters defined in the smartform then you should call the
    " function module of the smart form and remove the function module name give the parameter
    " FM_NAME to it so you call the smart form through the smartform name
    regards
    sarves

  • Who can tell me what's wrong about the weblogic server?

    Fri Nov 24 09:30:19 CST 2000:<I> <ServletContext-General> *.jsp: initialization complete
    Fri Nov 24 09:31:11 CST 2000:<E> <HTTP> Connection failure
    java.net.SocketException: Connection shutdown: JVM_recv in socket input stream read
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java, Compiled Code)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    Fri Nov 24 09:33:12 CST 2000:<E> <ServletContext-General> Servlet failed with Exception
    java.net.SocketException: socket write error (code=10053)
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java, Compiled Code)
    at weblogic.servlet.internal.ChunkUtils.writeChunks(ChunkUtils.java, Compiled Code)
    at weblogic.servlet.internal.ServletOutputStreamImpl.flush(ServletOutputStreamImpl.java, Compiled Code)
    at weblogic.servlet.internal.ServletOutputStreamImpl.writeStream(ServletOutputStreamImpl.java, Compiled Code)
    at weblogic.servlet.FileServlet.sendFile(FileServlet.java:199)
    at weblogic.servlet.FileServlet.service(FileServlet.java:56)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:105)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:742)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:686)
    at weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:247)
    at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:361)
    at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)

    I am experiencing the same error, did you find out what was going on.

  • Can not open my iPhone everytime the screen become like this in the picture. Who can tell me what happen?

    http://youtu.be/4-oBzdAtk-8

    it can't even connect to the iTune. And here in Cambodia there is no Apple Store.

  • Who can tell how to solve about the apple ID, because my apple ID was been disabled since two last week. And, i tried change my password through iForgot. Anyone? Thanks.

    Anyone? Thanks ;) tell me
    How to solve about the "apple ID has been disabled"?

    I am having the same issue. I just got my Iphone4 on Friday and no matter what I do to confirm my AppleID, it says its been disabled. Anyone have any ideas?

  • Who can tell me how to find the leave request Webdynpro for ABAP iview

    Hi,Expert,
    As I know Portal only has Webdynpro for java iview for leave request iview in the past.
    but someone tell me SAP portal has delivered some new standard WebDynpro for ABAP iview.
    I have a requirement to create a employee role for new Leave Request service created by WD ABAP . Under Content Provided by SAP in Content Administration, I couldn't find the iView assocated to the leave request except the Java one. Is there have any Employee Self-Service Web Dynpro ABAP workset ?
    thanks
    Olivia

    The business package for ESS based on Webdynpro for ABAP is available only for ECC 6.0 EHP5.
    If you are on EHP5, you may choose to use this version of the BP.
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/25/340b0507434193adbfe3f8fc8896c7/frameset.htm
    Leave Request application:
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/1f/a073be62744fcca7e1fae9942f0031/frameset.htm
    Thanks,
    Shanti

  • Who can tell me how to stop the face reading program? I don´t want to have it on my Mac

    I want to stop the face reading programm on my Mac. I would like to delete it. Thank you!

    Exactly what face reading program are you talking about? Did you download and install it?
    Also, please furnish relevant information: Mac model/year.

  • What does mean the error "System status DELT is active"?

    Hi Gurus,
    Can somebody tell me what does mean the error "System status DELT is active"?

    Hi Disha,
    I m getting the same message while trying to update the contract using FM "bbp_pd_ctr_update".
    When  I go and check the Item or header it is not marked for Deletion. Is there any table or field which indicates that it is marked for Deletion.
    Any help on this is highly appreciated.
    Regards
    Surender

  • Who can tell me?

    Hello everybody!!!
    Im trying to send to the other computer (or localy to myself) video stream from my Webcamera. I have captured device, made processor, and now I would like to send. To do so, I chose solution based on RTPManager. It looks like that:
    //getting data source, so we can create SendStream later on
              System.out.println("Getting output DataSource from processor.");
              DataSource rtpOutputDataSource = processor.getDataOutput();
              //creating RTPManager to handle the session,
              //initialization with host address
              System.out.println("Creation of RTPManager");
              try{
                   rtpSessionManager = RTPManager.newInstance();
                   SessionAddress hostAddress = new SessionAddress();
                   rtpSessionManager.initialize(hostAddress);
              }catch (Exception e){
                   System.out.println(e.toString());
                   System.exit(-1);
              //create address of recipients and add as the target
              //to RTPManager and adding listeners
              System.out.println("Applying target address.");
              try {
                            //sending to myself 10.9.0.82
                   InetAddress receiverAddressIP = InetAddress.getByName("10.9.0.82");
                   targetAddress = new SessionAddress(receiverAddressIP,2232);
                   rtpSessionManager.addTarget(targetAddress);
                   rtpSessionManager.addSessionListener(this);
                   rtpSessionManager.addRemoteListener(this);
                   rtpSessionManager.addSendStreamListener(this);
              }catch (Exception e){
                   System.out.println(e.toString());
                   System.exit(-1);
              //create and start the stream of video data
              System.out.println("Starting streaming");
              try{
                   SendStream streamToSend = rtpSessionManager.createSendStream(rtpOutputDataSource,0);
                   streamToSend.start();
              }catch (Exception e){
                   System.out.println(e.toString());
                   System.exit(-1);
              System.out.println("Sending....");After appearing a string "Sending.." I run JMStudio and try to "Open RTP Session" with IP value: 10.9.0.82 and port: 2232, and nothing happends (It waits 60 seconds for data ?). Who can tell me what i do wrong? Please help me. :)
    Besr regards

    Alright, I've read your post again, so let me see if I understand you correctly. You want to erase your phone, but then cannot use the phone because it will not allow you to erase it because of Find My iPhone? If that is the case, then you need to log into iCloud and select erase all content and settings there, then remove it from the iCloud account. That will allow you to access the device. However, if you are not the original owner of the phone, it may be that it is asking for a different Apple ID and password than yours. Which is the case?

  • When I plug in my iPad 2 to my laptop to sync, it says "the file iTunes library itl" cannot be read because it was created by a newer version of iTunes. Can someone please tell me what this means? How do I correct it? Thanks!

    When I plug in my iPad 2 to my laptop to sync, it says "the file iTunes library itl" cannot be read because it was created by a newer version of iTunes. Can someone please tell me what this means? How do I correct it? Thanks!

    The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes".
    Try the following user tip:
    Empty/corrupt iTunes library after upgrade/crash

  • When i try to start itunes i get a message saying that the MSVCR80.dll file is missing and to reinstall itunes.  When I try to reinstall itunes it tells me that I have an Error 7 (windows error 126).  Can anybody tell me what this means?  Thanks

    When i try to start itunes i get a message saying that the MSVCR80.dll file is missing and to reinstall itunes.  When I try to reinstall itunes it tells me that I have an Error 7 (windows error 126).  Can anybody tell me what this means?  Thanks

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • I called *611 to check mr order status for the Iphone 6 plus.  It said 'recieved and activated'.  can anyone tell me what that means?

    When i called *611 to check my order statud for my 6+ it said 'revieved and activated'
    Can anyone tell me what that means?

        Hello ElAnBr10! So sorry for any confusion over your order status. I would take that comment ("received and activated") to mean exactly as it sounds: The device was shipped, received and activated. In order to confirm that, I propose we take a detailed review. I've sent you a direct message as a follow up to your post. Please reply there!
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

Maybe you are looking for

  • Issues with setting up ATT 3g. ATT reconizes the setup but IPAD 2 won't connect with 3g network

    Setup brand new IPAD 2 ATT wifi +3G.  Everything went smooth even setting up the ATT cellular data connect.  ATT reconized the purchase however the IPAD will not erconize the 3G function when the wifi is turned off.  I have an Iphone 4 and the 3G net

  • Hard Drive "Input Output" Error When Attempting to Format

    A friend just gave me a nice PowerBook that seems to be in need of a fresh OS and when attempting to format the hard drive I am getting an "Input Output" error.  Any suggestions to overcome this issue and format the drive?

  • Easy Cost Planning (SAP) in Tender Process

    Hi All, I am using SAP ECC 6.0 EHP 4. I wanted to know if Easy Cost Planning in SAP PS can be used to cost a project initially while Tendering process.Or is there any other tcodes in SAP for tender process? I created Costing Models for most of the po

  • DVD-Rs not reading on Sony DW-Q28A

    Hi eveyone, I've got a Dual 2Ghz G5 running 10.4.8 with a Sony DW-Q28a Superdrive that is refusing to mount a couple of Verbatim DVD-R 8x data discs from our photo archive. The discs will spin for a bit, then be regarded by OS X as blank discs. Howev

  • A Parsing problem...

    Hi Guys... I am writing a program that is used to write memos. The memos when stored are writen in XML format, they have a title and the body. The problem is that when the file is read by parsing it using a XML parser the memos dont show the body, th