Steps for Automatic PO generation

Hi Guys.
         Can anyone pls help me out in creating a automatic
Purchase Order.have gone across through the thread..
But if any one can explain the step by step process of
the generation of automatic PO..it woud be helpful.
pls help me out with the flow for generation of automatic
PO.
Regards
Jino.

hi,
U've to create the desired doc type for the PO in SPRO (MM > Purchasing > Purchase Order > Define Document Type), then
only can specify the desired doc type in trx ME59N
If you would like to make the automatic creation of PO from PR (frontground) then you should look at Transaction ME59. However, in this case, the following settings shall be made in advance:
OR ...................................................................
1) The automatic PO indicator shall be flagged in both material master data (purchasing view) and vendor master data.
2) The source list shall be maintained where the 'fixed' indicator is ticked.
Once PR is created via MRP running, the vendor is automatically defaulted in the 'fixed vendor' field of the 'Source of Supply' View at Item Details level.
In the event you would like to set up the periodical running of transaction ME59 in background, then in addition to the aforesaid settings, the following steps will also be taken:
1) Go to Transaction ME59, maintain the selection and save it as a variant.
2) Use Transaction SM36 to define a job and give it a name as Z_AUTO_PO.
3) Click button start condition and define when you want the program to run.
4) Click Steps. On the pop-up click ABAP program and then enter RM06BB20 as program name. Enter the name of your variant in field below. Save your step.
regards,
pankaj

Similar Messages

  • FUNCTION MODULE FOR AUTOMATIC MAIL GENERATION

    Hello,
    I want to generate an automatic mail of a scheduled report on everyday basis.
    the output spool req of scheduled report in generated n saved inside the system.
    Could you please help me in generating automatic mail through that saved spool request?
    Regards,
    Krutika

    hi,
    use:
    DATA: lv_filesize    TYPE i,
            lv_buffer      TYPE string,
            lv_attachment  TYPE i,
            lv_testo       TYPE i.
      DATA: li_pdfdata  TYPE STANDARD TABLE OF tline,
            li_mess_att TYPE STANDARD TABLE OF solisti1,
            li_mtab_pdf TYPE STANDARD TABLE OF tline,
            li_objpack  TYPE STANDARD TABLE OF sopcklsti1,
            li_objtxt   TYPE STANDARD TABLE OF solisti1,
            li_objbin   TYPE STANDARD TABLE OF solisti1,
            li_reclist  TYPE STANDARD TABLE OF somlreci1,
            li_objhead  TYPE soli_tab.
      DATA: lwa_pdfdata  TYPE tline,
            lwa_objpack  TYPE sopcklsti1,
            lwa_mess_att TYPE solisti1,
            lwa_objtxt   TYPE solisti1,
            lwa_objbin   TYPE solisti1,
            lwa_reclist  TYPE somlreci1,
            lwa_doc_chng TYPE  sodocchgi1.
      CONSTANTS: lc_u           TYPE char1  VALUE 'U',
                 lc_0           TYPE char1  VALUE '0',
                 lc_1           TYPE char1  VALUE '1',
                 lc_pdf         TYPE char3  VALUE 'PDF',
                 lc_raw         TYPE char3  VALUE 'RAW',
                 lc_ordform     TYPE char15 VALUE 'ZORDCONFIRM_01',
                 lc_attachment  TYPE char10 VALUE 'ATTACHMENT'.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = lc_pdf
          max_linewidth         = 132
        IMPORTING
          bin_filesize          = lv_filesize
        TABLES
          otf                   = pv_otfdata
          lines                 = li_pdfdata
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          err_bad_otf           = 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.
      LOOP AT li_pdfdata INTO lwa_pdfdata.
        TRANSLATE lwa_pdfdata USING ' ~'.
        CONCATENATE lv_buffer lwa_pdfdata INTO lv_buffer.
        CLEAR lwa_pdfdata.
      ENDLOOP.
      TRANSLATE lv_buffer USING '~ '.
      DO.
        lwa_mess_att = lv_buffer.
        APPEND lwa_mess_att TO li_mess_att.
        CLEAR lwa_mess_att.
        SHIFT lv_buffer LEFT BY 255 PLACES.
        IF lv_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    Object with PDF.
      REFRESH li_objbin.
      li_objbin[] = li_mess_att[].
      DESCRIBE TABLE li_objbin LINES lv_attachment.
    Object with main text of the mail.
      lwa_objtxt = space.
      APPEND lwa_objtxt TO li_objtxt.
      CLEAR lwa_objtxt.
      DESCRIBE TABLE li_objtxt LINES lv_testo.
    Create the document which is to be sent
      lwa_doc_chng-obj_name  = text-008.
      lwa_doc_chng-obj_descr = text-008.
      lwa_doc_chng-sensitivty = lc_0.
      lwa_doc_chng-obj_prio = lc_1.
      lwa_doc_chng-doc_size = lv_testo * 225.
    Pack to main body.
      CLEAR lwa_objpack-transf_bin.
    header
      lwa_objpack-head_start = 1.
    The document needs no header (head_num = 0)
      lwa_objpack-head_num   = 0.
    body
      lwa_objpack-body_start = 1.
      lwa_objpack-body_num   = lv_testo.
      lwa_objpack-doc_type   = lc_raw.
      APPEND lwa_objpack TO li_objpack.
      CLEAR lwa_objpack.
    Create the attachment.
    Fill the fields of the packing_list for the attachment:
      lwa_objpack-transf_bin = gc_x .
    header
      lwa_objpack-head_start = 1.
      lwa_objpack-head_num   = 1.
    body
      lwa_objpack-body_start = 1.
      lwa_objpack-body_num   = lv_attachment.
      lwa_objpack-doc_type   = lc_pdf.
      lwa_objpack-obj_name   = lc_attachment.
      lwa_objpack-obj_descr  = text-008.
      lwa_objpack-doc_size =  lv_attachment * 255.
      APPEND lwa_objpack TO li_objpack.
      CLEAR lwa_objpack.
      lwa_reclist-receiver   = pv_emailid.
      lwa_reclist-rec_type   = lc_u.
      lwa_reclist-notif_del  = gc_x.
      lwa_reclist-notif_ndel = gc_x.
      APPEND lwa_reclist TO li_reclist.
      IF li_reclist IS NOT INITIAL.
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data              = lwa_doc_chng
            put_in_outbox              = gc_x
          TABLES
            packing_list               = li_objpack
            object_header              = li_objhead
            contents_bin               = li_objbin
            contents_txt               = li_objtxt
            receivers                  = li_reclist
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.
        IF sy-subrc <> 0.
             MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.

  • DPR_ATTRIBUTES - Automatic number generation of Project ID

    Dear All,
    I am using the method 'SET_DEFAULTS_UPON_CREATION' in  BAdi 'DPR_ATTRIBUTES'  for automatic number generation of Project ID in cProjects.
    I am able to change the project ID with my new number in CS_ATTRIBUTES. But the same is not getting populated to cprojects screen.
    My code --
      FIELD-SYMBOLS:
        <ls_attributes> TYPE dpr_ts_project_int.
      CASE flt_val.
        WHEN cl_dpr_co=>sc_ot_project.
         ASSIGN cs_attributes TO <ls_attributes>.
          CALL FUNCTION 'NUMBER_GET_NEXT'
            EXPORTING
              nr_range_nr = '01'
              object      = 'ZXX'
            IMPORTING
              number      = g_pid.
          CONCATENATE g_ptype g_pid INTO g_newpid SEPARATED BY '-' .
            MOVE g_newpid TO <ls_attributes>-project_id.
    ENDCASE.
    While debugging the new project ID can be viewed in CS_ATTRIBUTES.
    Can you please let me know what might be the issue for not populating on cprojects.

    Hi Matthias,
    Thanks for the reply.
    Can you please help me where exactly the external_id attributes needs to be changed.
    Your help is greatly appreciated.
    Matthias

  • Enhancement for Automatic Serial Number Generation

    Hi,
    Has anybody worked on the enhancement iqsm0001?
    If so, please give me some idea on how to use this enhancement for automatic serial number generation.
    Thanks for your kind help.
    Regards,
    Renjith Michael.

    Hi Renjith,
    You can check the following link, Hope it helps you to some extent:
    Re: Implement unique serial number within a client
    And you can also try user exit EXIT_SAPLIPW1_001 for Automatic serial number assignment.

  • Automatic invoice generation for service contract

    Hello,
    I want to create the  automatic invoicce generation for service contract based on the order.
    whenever i raise service contract order system should create the invoice automatically.
    could please let me know the settings?

    Hi JP Reddy
    You can schedule VF04/VF06 for your requirement, such that VF06 will run every 15/30 minutes and will generate billing document for your contracts automatically.
    Else go for Z extension development which will assign as output type to your contract and once triggered it will create invoice.
    try and revert

  • Automatic PO generation while doing MIGO

    Hi,
    Please guide me the details configuration and data maintain steps to enable automatic po generation at the time of doing MIGO with the movement type .
    Thanks in Advance,
    Regards,
    Soumen

    Settins
    a) Define and asing standard purchasing Organization at the Enterprice structure configuration
    Note: You can use the same normal purchasing organization you use for procurement as a standard.
    b) Activate automatic PO indicator for movement type 101 in coustomizig
    materials management - inventory management - goods receipt - create purchase order automatically
    c) Define purchasig document type
    materiales management - purchasing - define default values for puchasing document type
    d) Infor record for the standard purchasing organization and the vendor mater record.
    Note: You can use the same normal purchasing organization you use for procurement as a standard.
    e)The material has to be valuated
    And when you use de MIGO use movement type 101 as an non ordered item.
    regards,
    MC

  • EDI configuration for automatic IV

    Hi,
    What all are the steps to do EDI configuration for automatic
    IV in an intercompany scenario. In an STO scenario I
    want the invoice to generated automatically in the receiving
    company based on the issuing company's invoice.
    regards
    Magi

    HI,
    I have done these setttings . I have done the settings for partner type KU (customer) and partner type LI (vendor) in
    WE20.
    But IDOCs are not getting generated. Is there anything else
    to do to trigger the generation of IDOCS?
    regards
    magi

  • Automatic PR generation during third party sales order

    When I am create third party Sales order , systems automatically tries to creates the PR . Ok its fine and as expected . But system asks for Account assignment. Where I can give that account assignment during the auto PR at Sales order

    Hi,
    In Automatic PR generation during 3rd party sales order,the account category determination depends on following configuration:
    Step 1:
    Sales & Distribution-->Sales->Sales Documents->Sales Document Item->Define Item Categories--
    Check this configuration
    Step 2:
    Sales & Distribution-->Sales->Sales Documents->Sales Document Item->Define Schedule line CategoriesUnder this configuration ,for your scheduline item category ,check following entries ,Order type-NB ,Item Category---5 & Acct.Assingment category (3rd Party).
    Step3:
    Sales & Distribution-->Sales->Sales Documents->Sales Document Item--->Assign Schedule line Categories
    Then Assign the schedule line category to 3rd Party Item category defined .
    From this when PR get generated then acct.assingment category get populated automatically .
    Thanks,
    AMIT

  • Automatic IDOC  generation !

    How to automate an idoc generation when the credit memo is created !
    Can any one tell me the approach  and the steps !

    Hi,
    You dont need to write a code in userexit, just check this IDOC type : GSVERF01.(TCODE: WE60 or WE30)
    Thru this you can create an IDOC for Credit memo.
    Thru message control option we can achieve that.
    Read this.. it will help u.
    Message Control
    The objective of Message Control is the exchange of information between various partners and the launching of subsequent processing that is partner-independent. Message Control provides interfaces to make this possible.
    You can use the Message Control interfaces to describe various data combinations along with the required processing. If one of these data combinations is found to be applicable during the processing of an application object, the appropriate processing is started (synchronously or asynchronously).
    Message Control is a "service program" for other applications. It is initiated via ABAP function modules. Information about which programs carry out the subsequent processing is managed in tables . The conditions determining when programs are called are often very complex and also depend on the individual customer situation. Message Control offers the flexibility needed to represent these various situations .
    Purpose
    The output or follow up processing of partner-dependent messages is automated via Message Control. The application then calls the Message Control via the specified interfaces.
    You can use these interfaces to describe various data combinations along with the required processing. If one of these data combinations appears during processing, the appropriate processing is started (synchronously or asynchronously). You can define processing with several different methods, for example as a workflow, print output or as an IDoc dispatch for EDI.
    Implementation considerations
    SD and MM applications always use Message Control for message output. You carry out Customizing of the Message Control in the application’s Customizing. The Message Control is also sometimes described here as "output control".
    Integration
    Message Control is a "service program" for other applications. It is initiated via ABAP function modules. An application that uses Message Control must
    Call the Message Control
    Transfer files which should be compared with the combinations defined in Customizing.
    Provide a processed program, that is called from the Message Control, if the transferred data corresponds with the combinations defined in Customizing
    Features
    The condition technique in the R/3 System is used to formulate the data combinations required. If the current application data corresponds to the conditions defined in Customizing, message determination was successful and created a message default. If the application supports it, the proposal can be changed (processed).
    As a result the message is processed immediately or at a defined time. The processing status of the message is stored in a status record. If the application supports it, a processing log is written as well.
    Message Control scenarios:
    1. The credit limit has been exceeded in a sales order, whereupon the block indicator is assigned. The Message Control should respond to the block indicator by printing out this customer’s account history.
    2. A document is released and receives a corresponding status in its data record. The Message Control should thereupon issue a release message.
    There are also applications which can "switch off" message determination and directly generate the message default.
    Structure
    Condition Components and Condition Records
    The individual objects of the Message Control which are relevant in the message determination process and can be configured in Customizing or the application transaction are explained.
    Message determination
    This section describes how the condition component hierarchy is evaluated and how the condition tables are accessed. Different scenarios, which can be realized by special strategies when Customizing the condition component, are used as examples.
    Message Default and Message Editing
    The result of message determination is a message default that can be edited manually in the application, if this function is available in the application. If not, any messages found are forwarded directly for automatic processing.
    Message processing
    This explains how the message found can be processed.
    Regards.

  • Short dump while executing job SM:EXEC SERVICES for EWA alert generation

    Hello All,
    I'm getting short dump error while executing job SM:EXEC SERVICES for EWA alert generation.I'm using EHP1@SP22 of Sol Man.
    Please find the logs
    Error in the ABAP Application Program
    The current ABAP program "SAPLDSVAS_PROC" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "RDSVASCABAP_TRANS__________073
    " in include "RDSVASIABAP_TRANS__________073 " in
    line 1782:
    "Field "STATEMENT_SUMMARY001019" is unknown. It is neither in one of th"
    "e specified tables nor defined by a "DATA" statement. "DATA" statement"
    The include has been created and last changed by:
    Created by: "SAP "
    Last changed by: "SAP "
    Error in the ABAP Application Program
    The current ABAP program "SAPLDSVAS_PROC" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    If anyone came across such kind of dump, please reply asap, due to this, i could not generate EWA report for R/3 system 6.04.
    Thanks,
    Anand.

    >
    Anand Tigadikar wrote:
    > Thx Paul, but i already did checked this note and its not solving my issue
    Dear Anand,
    Did you perform a complete service definition replacement for SDCC/SDCCN as described in the note?
    These are manual steps you need to perform on the system and are not code corrections.
    I would suggest you perform it, if you have not, and check the SDCCN logs to review the process ran cleanly.
    Note: Please make sure SDCC_OSS is functioning and a connection to SAP can be made before
    deleting the service definitions.
    If you have already replaced the service defintions on the Solution Manager system, then no point doing it again. However checking a note and applying it are not the same thing. So I am uncertain if you replaced the service definitions or not. The dump you are getting in SM:EXEC SERVICES suggests its due to a problem with the service definitons. The recommendation is to replace them according to the process described in SAP Note 727998. If you have not done so please do so.
    If you have successfully replaced the service definitions are you still getting the same dump, or has it possibly changed?
    Regards,
    Paul

  • Steps for free goods, purchase order and sales order

    Hi all,
    I am just starting to learn SAP and would appreciate it anyone can guide me along with navigation/steps for the below questions:
    1) can we create free goods automatically when purchase order is generated?
    2) Can we duplicate data from the purchase order to the inputs of sales order?
    Thank you so much for your help!

    Hi Experts,
    I set Free Goods determination Inclusive Calculation Rule 1=Pro Rata and Cal Rule 2=Unit reference both are working fine.
    When trying for cal Rule 3 it gives error message "The system determined free goods with quantity 0 for item 000010
    Means for 10Ton of A product 10% means 2To are free. If I apply quantity in multiple of 10 i.e.10, 20 30 free goods are determined, delivery & billing is working well.
    But if I apply 25Ton or 38ton, it is not even giving minimum discounts say for 25ton, it should give atleast 20ton equivalent fre goods. I checked in rounding rule OB90 where my company code3000 is giving 10 2 digit for USD currency. I set like this. When I checked pricing for condition type R100 it says requirement 055 not fulfilled. However I have maintained Req 055 & BaseType 28 in pricing procedure.
    For cal rule 3 what else setting I should check.
    Early reply with detail steps shall be highly appreciated.
    Thanks

  • Project settlement to CO-PA and BAdI for automatic creation of rules

    Hello SAP experts!
    I have managed to implement settlement rule strategy to CO-PA for sales project WBS-elements, which automatically creates the settlement rules for WBS-elements with billing indicator. One or more sales order items are assigned to the WBS-elements. When the system derives settlement rules, it generates profitability segments that contain the characteristic values of the WBS elements and the sales orders assigned to them. The problem is, that only one single settlement receiver is determined for each WBS-element. And if more that one sales order item is assigned to the same WBS-element only those characteristics are copied to the settlement rule that are same in all sales order items.
    For example; it products are different in all sales order items, the automatically created settlement rule does not contain the characteristic value product or neighter other caracteristics derived from product.
    Do You have experience of using BAdI for influencing the generation of settlement rules? What it actually makes possible?
    Br, Nina

    Dear Waman,
    thank you for your reply !
    Yet - this still does not solve our problem. In that note (and also in the related note 201445) there is no valuable information included concerning transaction currency:
    Our WBS elements (and also other cost objects, e.g. sales order items) are being debited in all of the three currencies.....but the credit (during settlement) only takes place in two of them:  object and CO area currency.
    I really appreciate additional help on this. It would be hard to believe that we are the only SAP customer having this kind of problem.
    Best regards,
    Thomas

  • Steps for creation of DSO in BI7.....

    Hi,
    Can anyone help me out with the steps for creation of DSO in BI7.....
    Points will be assigned...
    Cheers
    Shankar

    Hi Shankar,
    Procedure of creation of DSO in BI7 :
    1.Select the InfoArea to which the new DSO object is to be assigned, or create a new InfoArea. Choose Modeling--> InfoProvider --> Create InfoArea.
    2.Choose Create DSO Object in the context menu for the InfoArea.
    3.Specify a name and a description for the DSO object, and choose Create.
    If you want to create a copy of an existing DSO object, specify the DSO object that you want to use as a template.
    You get to the DSO object maintenance screen.
    4. Transferring InfoObjects:
    On the left side of the screen, there are various templates to choose from, which allow you to get a better overview in relation to a particular task. For performance reasons, the default setting here is an empty template. Using the pushbuttons, select an InfoSource (only the InfoObjects for the communication structure of the InfoSource are displayed), an InfoCube, an DSO object, or an InfoObject catalog.
    On the right side of the screen you define the DSO object. Using the Drag&Drop function, assign the InfoObjects in the key fields and in the data fields. It is possible to select several InfoObjects at once. The system assigns navigation attributes automatically. These navigation attributes can be switched on for reporting in BEx.
    Thanks
    Reshu

  • BAPI for Automate direct debit proposal creation for selected customers.

    Hello ABAP Gurus,
    Requirement is - Changing the process for Automate direct debit proposal creation for selected customers from a custom BDC program to a BAPI.
    Explanation -
    Currently as per the process, we are using a BDC call transaction program for F110 - Automate direct debit proposal creation for selected customers. The main pupose of this BDC program is to automate F110 Bank Run for A/R (Selected Customers Only). It creates payment proposal which is the first step in order to create payment runs.This program will run in background.
    We wanted to change the process from a BDC call transaction process to a BAPI call . In this process I am trying to chase for a valid BAPI in order to sync to my requirement.
    It would be appreciate for your << removed >> response.
    Thank you.
    Regarsd,
    Kumar.
    Edited by: Rob Burbank on Nov 11, 2009 3:33 PM

    Hello gurus,
    Is there any implicit or explicit enhancement point for F110 process or is there any alternative for payment proposal creations?
    is there any BAPI for F110 functionality?
    can you please let me know.
    Thank you
    Regards,
    Kumar.

  • Connection steps for SAP BW and R/3

    Hi Every Body,
    Can you please explain me detail about the connectivity between R/3 and BW.
    General steps which am aware is as follws;-
    SAP R/3 steps to be performed
    1.     Define Logical system---->(e.g ABC100)
    2.     Assign client to logical system -->(100)
    3.     Define RFC Destination.(Here I assume I have to give Destination user name and password should be the user which have SAP_ALL authorization) Am I right.
    SAP BW Steps:-
    4.     Define Logical system---->(e.g ABC100)
    5.     Assign client to logical system -->(100)
    6.     Define RFC Destination.(Here I assume I have to give Destination user name and password should be the user which have SAP_ALL authorization) Am I right.
    Then in BW Environment in RSA1->Source Systems->right click and choose Create
    There are two options available for R/3 system one is Manual and one is Automatic.
    For Manual  creation we give RFC Destination should be BW system and Logical system should be R/3 and Source system name is xyz.
    Is there any other steps am missing.What about the inbound and outbound Idoc Parameters.
    I feel this will help while transferring data to BW.am I right.
    Please clearly explain the steps for R/3 and BW connectivity.
    Regards,
    VJ

    Hi,
    <i>For Manual creation we give RFC Destination should be BW system and Logical system should be R/3 and Source system name is xyz.</i>
    RFC Destination should be R/3 system. NOT BW system.
    <i>should i make connection with only R/3 200(Data Client) to BW</i>
    Yes you have to connect to 200 only. Not to 100.Other wise you will not get data from R/3 to BW.
    <i>What is the Use of Transport Button in RSA6.Post Processing data sources.</i>
    It will be used to create Trasnport requests on DS .
    <i>Suppose if i activate data source from Customizing client(100)and click on Transport button in RSA6 if there is connection with this client to BW. What is the Impact.</i>
    It will not give any impact on BW. Actually it ask you to create a Transport requset by Prompting the message box. After click on create button and entering the description, it will create a transport request.
    <i>Clearly explain me in detail what happen when i choose Transport Button in RSA6 for BC data sources.</i>
    It is must and should process. Because you will not activate(using of RSA5) the DS in quality R/3 system. So to use this DS in QA system, you will import the Transport request creatd in DEV r/3.
    In your case, you will use client 100 for activating the DS and creating Transport reuests. And then these DS are automatically available in client 200, because DS are Client independent.
    With rgds,
    Anil Kumar Sharma .P

Maybe you are looking for

  • ITunes 11.1.5 crash under 10.9.2

    MBP 7,1, 2.4gHz Intel Core 2 Duo, 4GB DDR3 Ram, 750GB hard drive with version 10.9.2 iTunes 11.1.5 iTunes crashed on every launch, safe mode didn't work. Re-install using a fresh copy from apple.com didn't work. Attached is the crash log: Process:   

  • Acrobat 8 reinstallation issues

    This has more to do with CS3 than Acrobat. I got my cs4 trial, installed it, but everything crashed as soon as it started up. Disgusted with another crappy Adobe installation issue, I uninstalled CS4. However, Since in CS's just updates old versions

  • How to change room names

    Using air port express , how do you change room names , eg. Living room , bedroom?

  • BC4J /  JDBC Failover BUG ?

    I have developed an ADF / BC4J application which works. In our environment we have a failover configuration I coded this approach for my ADF applications. My Custom connect string in the connection wizard for the BC4J is: jdbc:oracle:thin:@ (DESCRIPT

  • Upgrade to 3G

    I currently have a plan with at & t with my 1st gen iPhone. I was just wondering if there is a possibility for me to upgrade to a 3G without having to cancel my current plan and start a new one. I'm only wondering this because when OS 3.0 is released