Element entry base on other element entry

how can I do when company Loan element enter company Loan deduction element also auto enter with this entry

Hi,
How are you attaching this loan element (with start date of deduction) to employee. I think you can create indirect element Loan_recovery and pass the deduction_start_date to this indirect element.
If the deduction_start_date is between pay_period_start_date and pay_period_end_date process it else not.
Or else you can attcah the loan_recovery element same way as you are attaching loan element.
Thanks,
Avinash

Similar Messages

  • How we can restrict record in CTL file on the basis of other table ?

    Hello all,
    How we can restrict record in CTL file on the basis of other table ?
    Eg.
    I have following control file to load the records in the table through the sql loader.
    LOAD DATA
    INTO TABLE THIST APPEND
    FIELDS TERMINATED BY "|" TRAILING NULLCOLS
    LNUM POSITION(1) Char "substr(:LOAN_NUM, 4, 13)",
    TSRNUM Char "rtrim:TRAN_SR_NUM)" ,
    TPROCDT Char "to_char(to_date rtrim:TRAN_PROC_DT), 'MMDDYYYY'), 'YYYYMMDD')"      
    I have another table c all TFILE in which I have LNUM. I want to import only those records from input text file using the control file and sql loader in which LNUM is exist in the TFILE.
    So how i can restrict it in the Control File.
    Thanks
    Kamlesh Gujarathi
    [email protected]

    Hello Satyaki De.
    Thank you very much for your suggestion but my Private information is totally apart from this question & I already I have changed each and every information from the question.
    Thanks
    Kamlesh Gujarathi
    [email protected]

  • Viewobject transcient attribute update value base on other field

    Dear All,
    I have a viewobject with a transcient attribute which is calculated based on some other attributes queried from the DB. I have set the default value of the transcient field using the express:
    adf.object.viewObject.getFTType()
    and the getFTType() in the viewObjectImpl will return a string base on other fields' values;
    Then I test it in the AM Model tester and it looks fine. However, when I drag this VO to a Table in the page, the transcient field column always showing the same value on every rows instead of showing different values base on the other fields on each row.
    I've added a button to print the selected row values in the table and after I click on the button, the transcient field column is updated according to my selected row other fields' values and it updates the value for the whole column instead of only the selected row.
    I wonder if there is sth wrong I did? Thanks a lot.
    The getFTType() method is pasted here:
    public String getFTType() {   
    Row row = this.getCurrentRow();
    String ftType = "";
    try {
    if (row.getAttribute("TxType").toString().equals("99")) { // all non-GJs
    if (row.getAttribute("InputFutureTrfDate") != null) { // Future type FT
    if (row.getAttribute("TiMToMYorn") != null) {
    if (!row.getAttribute("TiMToMYorn").toString().toLowerCase().equals("y")) {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT (Future)";
    } else {
    ftType = "Misc FT (Future)";
    } else {
    ftType = "Misc FT M to M (Future)";
    } else {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT (Future)";
    } else {
    ftType = "Misc FT (Future)";
    } else { // non-future FT
    if (row.getAttribute("TiMToMYorn") != null) {
    if (!row.getAttribute("TiMToMYorn").toString().toLowerCase().equals("y")) {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT";
    } else {
    ftType = "Misc FT";
    } else {
    ftType = "Misc FT M to M";
    } else {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT";
    } else {
    ftType = "Misc FT";
    if (row.getAttribute("TxType").toString().equals("11")) {
    ftType = "GJ Interest Income";
    if (row.getAttribute("TxType").toString().equals("12")) {
    ftType = "GJ Bank Charge";
    if (row.getAttribute("TxType").toString().equals("13")) {
    ftType = "GJ Others";
    } catch (Exception e){
    e.printStackTrace();
    return ftType;
    }

    Did you set recalculate on the field you are basing its value on.
    See http://docs.oracle.com/cd/E16162_01/web.1112/e16182/bcintro.htm

  • Delete rows on basis of other table

    I am trying to delete records from table PS_BUN_CM on basis of table PS_BUN_UPDATE ...
    below is the select statment which i want to convert to delete ... Please help
    select *  FROM PS_BUN_CM a
    inner join PS_BUN_UPDATE c on a.MAP_ID = c.MAP_ID
    where a.ps_map_id in ('2400') and (a.las_name = 'NA' or a.las_name = 'na')and (c.LAS_NAME <> '  ');  

    Not sure, how it is deleting all rows at your end. Please see below test
    create table PS_BUN_CM(MAP_ID number,PS_MAP_ID varchar2(10),las_name varchar2(100))
    Insert into PS_BUN_CM(MAP_ID, PS_MAP_ID, LAS_NAME)
    Values(100, '10', 'abc')
    Insert into PS_BUN_CM(MAP_ID, PS_MAP_ID, LAS_NAME)
    Values(100, '100', 'NA')
    Insert into PS_BUN_CM(MAP_ID, PS_MAP_ID, LAS_NAME)
    Values(100, '100', 'na')
    Insert into PS_BUN_CM(MAP_ID, PS_MAP_ID, LAS_NAME)
    Values(1000000, '10022', 'na')
    Insert into PS_BUN_CM(MAP_ID, PS_MAP_ID, LAS_NAME)
    Values(100, '2400', 'na')
    COMMIT
    SQL> select * from ps_bun_cm;
        MAP_ID PS_MAP_ID  LAS_NAME
        100    10         abc
        100    100        NA
        100    100        na
       1000000 10022      na
        100    2400       na
    SQL>
    create table PS_BUN_UPDATE(MAP_ID number,las_name varchar2(100))
    Insert into PS_BUN_UPDATE(MAP_ID, LAS_NAME)
    Values(100, 'xyz')
    Insert into PS_BUN_UPDATE(MAP_ID, LAS_NAME)
    Values(100, '  ') 
    COMMIT
    SQL> select a.*,length(las_name)  from ps_bun_update a;
        MAP_ID  LAS_NAME   LENGTH(A.LAS_NAME)
        100     xyz           3
        100                   2
    SQL>
    SQL>select a.* from PS_BUN_CM a
      2 inner join PS_BUN_UPDATE c on a.map_id=c.map_id
      3 where a.ps_map_id in('2400') and (a.las_name='NA' or a.las_name='na')
      4 and c.las_name='  ';
        MAP_ID  PS_MAP_ID LAS_NAME
        100       2400     na
    SQL> select * from     ps_bun_cm a
      2  where exists(select 1 from ps_bun_update c
      3               where a.map_id=c.map_id
      4               and a.ps_map_id in('2400')
      5               and (a.las_name='NA' or a.las_name='na')
      6               and c.las_name='  '
      7               ) ;
        MAP_ID  PS_MAP_ID  LAS_NAME
           100       2400   na
    SQL> ed
    Wrote file afiedt.buf
      1  delete from     ps_bun_cm a
      2  where exists(select 1 from ps_bun_update c
      3               where a.map_id=c.map_id
      4               and a.ps_map_id in('2400')
      5               and (a.las_name='NA' or a.las_name='na')
      6               and c.las_name='  '
      7*              )
    SQL> /
    1 row deleted.
    SQL> select * from PS_BUN_CM;
        MAP_ID PS_MAP_ID  LAS_NAME
         100   10         abc
         100   100        NA
         100   100        na
       1000000 10022      na
    SQL>

  • MacBook problems with Snow base station - other laptops work fine

    Hi,
    I just purchased a new MacBook to replace an iBook G4 800.
    My snow base station works fine with the old iBook G4 (which has an extreme card) and with a borrowed PowerBook G4 Aluminum 1.5 GHz (also extreme card) but will not work with my new Mac Book. Every time I try to connect - I receive an error "There has been an error accessing "my name" 's network. Sometimes it will connect, other times (most of the time), it will not.
    My MacBook connects fine to my neighbors Linksys access points and our work Lucent access points (which are b also - snow is b).
    I did a search and am reading other people having similiar problems. I was wondering if anyone has resolved their problems. I spent 2 plus hours on the phone with Apple yesterday. They are placing the blame on the older base station (snow) but it is obvious that snow is working fine for other computers.
    Theresa

    I am still a little confused. I can be 2 feet from my base station and will keep hitting "try again" when trying to access my network and will get "an error has occurred" many times and eventually it will connect and I will have an incredibly strong signal. My MacBook will continue to have a great strong signal until it goes to sleep and then I will have a difficult time connecting again. My neighbors base station is a weak signal and I can easily join their network. Every time I connect, I have problems but once connected, it is great.
    I guess it can be interference but I am now wondering if it is related to the snow/graphite base station only. This laptop has no problems joining other b base stations.
    I spent hours on the phone with an Apple wireless support specialist the other night. He wants me to try an Extreme base station. He didn't indicate that he was aware of any MacBook problems (and he mentioned interference and we setup my laptop to only join my network and it didn't make a difference).
    More to come.... IF anyone switched to a Extreme Base Station and that worked fine - please let me know. Though I sort of resent having a functional b base station that works with every other laptop and have to spend $200 towards another base station because of a new laptop.

  • 6930p Video, RECOH8BayController, Base System & Other Drivers

    Hi,
    Dear Moderator / Expert!
    After switching from Win 7 to Win 8.1 on my HP Elitebook 6930p, following drivers are missed to be updated.  I am more concern about the graphic driver, rest of the drivers are not affecting any of my machine's useage. Kindly guide about downloading the followind driver(s). I'll be thankful.
    Video Controller
    PCI\VEN_8086&DEV_2A43&SUBSYS_30DB103C&REV_07
    PCI\VEN_8086&DEV_2A43&SUBSYS_30DB103C
    PCI\VEN_8086&DEV_2A43&CC_038000
    PCI\VEN_8086&DEV_2A43&CC_0380
    Base System Device
    PCI\VEN_1180&DEV_0843&SUBSYS_30DB103C&REV_14
    PCI\VEN_1180&DEV_0843&SUBSYS_30DB103C
    PCI\VEN_1180&DEV_0843&CC_088000
    PCI\VEN_1180&DEV_0843&CC_0880
    RICOH Bay8Controller
    PCMCIA\RICOH-Bay8Controller-F1B2
    PCMCIA\RICOH-Bay8Controller-0000-0000
    PCMCIA\RICOH-0000-0000 
    Unknown Device
    ACPI\VEN_HPQ&DEV_0004
    ACPI\HPQ0004
    *HPQ0004
      Unknown Device
    ACPI\VEN_HPQ&DEV_0006
    ACPI\HPQ0006
    *HPQ0006
    Regards,
    Haroon Zia
    This question was solved.
    View Solution.

    Hi:
    You need these drivers...
    Video:  You may have to manually install the driver.
    http://h20565.www2.hp.com/hpsc/swd/public/detail?sp4ts.oid=3688870&swItemId=ob_76460_2&swEnvOid=4059
    Base System Device & RICOH Bay8Controller:
    http://h20565.www2.hp.com/hpsc/swd/public/detail?sp4ts.oid=3688870&swItemId=ob_76430_3&swEnvOid=4059
    Unknown Device 1:
    http://h20565.www2.hp.com/hpsc/swd/public/detail?swItemId=ob_125640_1
    Unknown device 2:
    http://h20565.www2.hp.com/hpsc/swd/public/detail?swItemId=ob_87706_3

  • Create sales order basis and other

    Good afternoon,
    I need to create a sales order with a copy to another order of sale. Ever used the control of copy of order to order, plus the flow of documents are all linked, ie every order that I create, will be linked to one another ... When you need to check the orders, I see all the flow of documents, where my intereese is only copying the data from order to order.
    Someone has passed this and can share the solution?
    Tks.
    Eduardo Rebelo

    Hello,
    Yes, this is correct solution. But i want the to see the "display document flow" one sales order and not all sales order. If i need to check one sales order, i will go see all sales order the button display document flow.
    Will be a bit confusing to analyze sales orders by button display document flow.
    Lets me know you understand.

  • How to visually separate elements in a pre-recorded song?

    I'm hoping to use Audition in a research project to study patterns in music.  I just downloaded it last night and I'm using the trial period to evaluate if it will meet my needs.  I am running the program on a Mac.
    As stated above, I'm hoping to use Audition in a research project. to study patterns in music.  I need to be able to do this with pre-recorded songs (songs downloaded from iTunes).  I do not need to actually separate vocals or other elements (i.e. only hear one or the other), but I am hoping to be able to visually see the vocals, melody, base, drums, other accompanying instruments separate from each others (see their separate frequency waves).  So for example, I would like to visually see the main vocals increasing in volume, changing from low to high notes, seeing a note sustained for a period of time, and noting how these patterns coincide with other elements in the song. 
    I am very much a novice so I am not able to describe this in "music terminology".  I have seen the "frequency displays" when playing a song that show the right and left channels - but all the elements are merged together making it impossible to really visually see any patterns.  I've tried to play around with some of the options in the effects menu (Amplitude and Compression; Filter and EQ), but I have not found an option that provides what I'm looking for.
    Does Audition provide the feature I'm hoping for?  Can someone help point me in the right direction for achieving this?
    Thanks!!!!!

    Not really.
    The only way to have visually separate elements is to have each element separate.  They'd exist this way in the original recordings prior to the mix but, as soon as they're mixed trying to split them out is like "trying to unbake a cake" (to use a common forum cliche).  If you think about it, this makes sense--440Hz from a human voice is the same as 440Hz from a piano--so in the display (which is a mix of amplitude and frequency) they show up as the same.
    It MIGHT be worth you having a look at things in Spectral View.  This is a useful analytical tool for a lot of things and may show up some interesting stuff--but, even there, I doubt it would give all the info you want.
    This isn't an Audition limitation by the way...I don't know of any audio software that can "unbake the cake" as you need to.
    If it was me, instead of downloading finished songs from iTunes, I'd be approaching hobby musicians and asking/begging for copies of their original, pre-mixed tracks.  There are various home recording forums (indeed, one called "Home Recording") and some there might be able to help.  However, even with the original tracks, be aware that they don't necessarily show the levels graphically--typically there would be a display of the original track plus some sort of automation system (which may show you a line going up and down) indicating what is happening to the levels.

  • Restoring Elements 8 Organizer data

    I'm asking this question on behalf of my parents, who are not highly computer literate.  They use Elements 8 Organizer to keep track of their extensive photo collection, including those of professional art work and many overseas trips.  In April their computer locked up due to a virus and had to be reinstalled from the Windows 7 OS up.  All of their photos had been backed up with Norton 360, but apparently they did not have a mirror of their hard drive--only documents and settings.  Consequently, when Elements 8 was reinstalled, they no longer had the organization of the photos as before.  I am trying to determine if there is a data file somewhere on the hard drive that captures Organizer's folders, tags, etc., by reference, and if that was possibly in the folders that were backed up.  If so, I would think I could just replace the current Organizer data file with their old one, as all the photos have been restored to their original positions in My Pictures.  Can anyone provide the pathway to this file or set of files so I can determine whether or not they can get their original organization back?  Thanks in advance for any help you can offer.

    The organizer stores its data in catalogs.
    Physically, catalogs are folders (one folder per catalog) containing the main component, a sqlite database named 'catalog.pse8db' as well as several other components such as the thumbnail cache.
    By default the catalogs are stored in 'hidden folders' in C:\ProgramData\Adobe\Elements Organizer\catalogs.
    When you are in the organizer, you find the exact location of the current catalog in the Help menu, System Info.
    So, do a search for 'catalog.pse8db' on the old drive.
    If you can find it (make sure by its size that it's not a new empty catalog), you can copy the whole folder either in that same location in the new computer or anywhere else.
    Double clicking on that catalog.pse8db file should open the organizer with this catalog.
    Your problem will be that the organizer will recognize that the drive identification has been changed and show all thumbnails as 'missing'. For the organizer, the drive is defined not only by its letter, but also by the internal serial number of the drive.
    So, you'll have to use the 'reconnect' function of the organizer so that the organizer finds the real location and updates the database.
    http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Quickly_reconnecting_large
    Reconnect missing files | Photoshop Elements | Windows
    Can't edit, open, reconnect photos or media | Incorrect drive letter | Elements 6 or later Organizer | Windows
    Photoshop Elements (PSE) knowledge base.

  • Error: ...expected elements '[EMPTY]'

    Using 2.0.1 version of xmlparserv2.jar, didn't get the
    message: "Element {some element} not complete, expected
    elements '[EMPTY]'.
    Using version 2.0.2, getting this message...
    Is this a bug, or is the field format:
    <{some element} {element params}/>
    no longer supported?
    Robert
    null

    Oracle XML Team wrote:
    : Robert Truitt (guest) wrote:
    : : Using 2.0.1 version of xmlparserv2.jar, didn't get the
    : : message: "Element {some element} not complete, expected
    : : elements '[EMPTY]'.
    : : Using version 2.0.2, getting this message...
    : : Is this a bug, or is the field format:
    : : <{some element} {element params}/>
    : : no longer supported?
    : : Robert
    : Emtpy element syntax is of course still supported. This
    message
    : is the result of a validation failure against your DTD. It is
    : likely a bug in 2.0.1 instead of 2.0.2.
    : If you are not able to resolve it please post a test
    case, .xml
    : and .dtd).
    : Oracle XML Team
    : http://technet.oracle.com
    : Oracle Technology Network
    OK: I have simplified the .dtd and .xml, where it complains of
    the '[EMPTY]' error under 2.0.2, and not under 2.0.1
    :sample.dtd:
    <!-- -->
    <!ENTITY % DateField "
    Month (01|02|03|04|05|06|07|08|09|10|11|12) #REQUIRED
    Day
    (01|02|03|04|05|06|07|08|09|10|11|12|13|14|15|16|17|18|19|20|21|2
    2|23|24|25|26|27|28|29|30|31) #REQUIRED
    Year
    (1998|1999|2000|2001|2002|2003|2004|2005|2006|2007|2008|2009|2010
    ) #REQUIRED
    Hour
    (00|01|02|03|04|05|06|07|08|09|10|11|12|13|14|15|16|17|18|19|20|2
    1|22|23) #REQUIRED
    Minute
    (00|01|02|03|04|05|06|07|08|09|10|11|12|13|14|15|16|17|18|19|20|2
    1|22|23|24|25|26|27|28|29|30|
    31|32|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|48|49|50|51|55
    |53|54|55|56|57|58|59) #REQUIRED
    Second
    (00|01|02|03|04|05|06|07|08|09|10|11|12|13|14|15|16|17|18|19|20|2
    1|22|23|24|25|26|27|28|29|30|
    31|32|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|48|49|50|51|55
    |53|54|55|56|57|58|59) #REQUIRED
    ">
    <!ELEMENT BASE (DateTimestamp) >
    <!ELEMENT DateTimestamp (EMPTY)>
    <!ATTLIST DateTimestamp %DateField;>
    :sample.xml:
    <?xml version="1.0" ?>
    <!DOCTYPE BASE SYSTEM "sample.dtd">
    <BASE>
    <DateTimestamp Month="09" Day="01" Year="1999" Hour="12"
    Minute="00" Second="00"/>
    </BASE>
    null

  • Pictures still visible in the elements catalog.  Memory card is lost, (2 year olds rock!!) :(  Any way to restore?

    Images ARE visible but cannot be reconnected.  PLEASE help!

    tiffanyt85070121 a écrit:
    Images ARE visible but cannot be reconnected.  PLEASE help!
    You are just seeing the small 'thumbnails' created for browsing the catalog. Most probably, your images have been moved, renamed or deleted outside of the organizer. If they have not been deleted, you'll have to search in your explorer/finder to see if they are somewhere on your computer. From the organizer, you can use the 'Information' panel on the right to see where the photos were before disappearing and other information such as 'date taken' which may help you to find them on your computer.
    If you find the files elsewhere or renamed, there is hope to use the 'reconnect' function in the organizer.
    Photoshop Elements (PSE) knowledge base.

  • Best Practice for SAP PI installation to share Data Base server with other

    Hi All,
    We are going for PI three tire installation but now I need some best practice document for PI installation should share Data base with other Non-SAP Application or not. I never see SAP PI install on Data base server which has other Application sharing. I do not know what is best practice but I am sure sharing data base server with other non-sap application doesnu2019t look good means not clean architecture, so I need some SAP document for best practice to get it approve from management. If somebody has any document link please let me know.
    With regards
    Sunil

    You should not mix different apps into one database.
    If you have a standard database license provided by SAP, then this is not allowed. See these sap notes for details:
    [581312 - Oracle database: licensing restrictions|https://service.sap.com/sap/bc/bsp/spn/sapnotes/index2.htm?numm=581312]
    [105047 - Support for Oracle functions in the SAP environment|https://service.sap.com/sap/bc/bsp/spn/sapnotes/index2.htm?numm=105047] -> number 23
          23. External data in the SAP database
    Must be covered by an acquired database license (Note 581312).
    Permitted for administration tools and monitoring tools.
    In addition, we do not recommend to use an SAP database with non-SAP software, since this constellation has considerable disadvantages
    Regards, Michael

  • Freight calculate on Base+Packing+Excise+Freigt

    Hello SAP,
    We have one scenario in MM pricing procedure.
    Base Value + Packing Forward + Excise(10.3) = Subtotal
    Subtotal + Freight = Total
    Total1 + CST(12.5%) = Total2
    Total2 + Octroi = Total 3
    Total3 + LBT
    Example:
    Base Value 100
    Packing Freight 1%
    Excise(10.3%) on 101 10.30
    Freight (Value or %) on 111.40 10
    Total 121.40 + CST(12.5%) 136.58
    Total 136.58 + 5% Octroi 143.44
    Total 143.44 + LBT 2% 146.28
    How to map in SAP Pricing procedure.
    Please suggest if any configure step by step.
    Thanks
    Shital

    for P & F use packing condiiton category, condition class surcharge or discount
    base the percentage condiiton on the gross price condition
    for freight use freight or delivery type ,  surcharge or discount.
    use 6 in subtotals
    bring the taxes from the tax procedure using conditon jexs as statistical entry
    calculate the nett value and base the octroi condition on that step
    bring the value of octroi to the material using account key and accrue into octroi account using accrual key
    add it for total in procedure, make the total statistical and base the other tax on it similar to octroi

  • Accessing data from other SAP system

    Hi experts
    I need to access data from one SAP system from other.  My requirement is , perform applications (programs) in some SAP system, but using/accessing  data from other SAP system .
    For example, when we press F4 we get the match code (search help) for the field ;  that window is alredy created by SAP and it shows the data for that field . Of course the application (ike any other program/application) read the data from the SAP system is being executing ;  well i need execute that match code but show (taking) the data from other SAP system;  i not refer to other MANDT in same system but other SAP system.
    The communication between SAP1 system and SAP2 system is already created from BASIS.
    My doubt is how can i  execute that standard application (search help) but 'invoke' to standard application this take data from other system ?
    I guess i can create Z search help wich call a Z Function (RFC) to get the data required from the other system ;
    or maybe enhance the standar search help to call that Z RFC ;  but standard application search help is already created and this access the data in several ways or places of code , and this has severals sub-windows and search features ; and i just need execute exactly same search help but accesing data from the other SAP system ; so my doubt is, is there some way to indicate to SAP the applications always (wherever) these applications acces the data do it but from other SAP system, 
    like if we 'redirect' the Data Base to other SAP system. 
    SAP1 applications are being executing  -
    >   but all data (records) are taking from SAP2
    Maybe the first suggestion is simply why do not we execute applications in SAP2 instead SAP1 , that's because the version package in SAP2 system (where we have the data) does not support some (non SAP) applications we need to use.
    Excuse the long thread.  Does somebody can help, any idea ?
    Best Regards
    Frank

    Hi Frank,
    Below are my thoughts, these are only conceptual and haven't had an opportunity to try these possibilities, also not sure if this is the right thing.
    1) Create an entry in DBCON using TCode: DBCO for the Database of system SAP2. Now in the application of SAP1 use the "SET CONNECTION" construct as the very first statement, so that consecutive SQL statements will point at the DB of SAP2.
    2) I have read somewhere that the Work Processes are connected to the Default database and i am not sure if you can change this setting, but if you can and provided you have have multiple application servers in your SAP1 landscape, then pick one of the application servers and change the settings on the WP to point at the DB of SAP2, you have the end users login to this particualr app server.
    3) If there are multiple app servers in SAP1 landscape, then choose one of the app servers and change the default database setting to point at DB of SAP2.
    Regards,
    Chen

  • How to connect a Windows computer to Base Station through Ethernet

    I use Road Runner to connect to the internet. My setup is like this.
    Roadrunner comes in to the cable modem. My cable runs from the modem to Airport Base Station. My MacBook Pro sees the base station fine and I'm accessing the internet wireless through Airport. All is well there.
    My wife has a PC running Windows XP. I put my Airport Extreme disk in the PC and it loaded the software.
    I have an ethernet cable plugged into the back of the PC running over to the Base Station to one of the ethernet ports. There is a green light beside the cable on the base station and also on the pc where the cable plugs into it - it blinks off and on on the PC.
    Yet, when I get on the PC, I cannot access the internet. As you can probably already guess, I'm not too saavy on the PC. I have restarted the PC and tried all I know to do, but I still can't connect to the internet. I'm sure I'm missing a setting.
    Can someone please "hold my hand" and walk me through how to set up the PC? I can't get very far on the PC going into Airport Utility because it says I don't have an internet connection.
    Please help! (And talk to me like you're talking to a rock . . )
    Thanks
    Reggie

    Check out the following iFelix article to see if it will help getting the Ethernet-connected PC to access the Internet: Connecting a XP PC to a Airport Network via the LAN port of the Airport Extreme Base Station

Maybe you are looking for

  • "Applications" view in iTunes renders and scrolls sluggishly

    When I'm in the "Applications" section of iTunes (OS X), there's a delay in all the icons displaying, and then further delay as I scroll down a few rows at a time. I'm running a Macbook Pro 2.2GHz C2D / 4 GB RAM / GeForce 8600M GT 128MB, so it should

  • How can I connect 10.4 Mac to Windows Small Business Server 2003?

    I have seen some other discussions touching on this topic and have tried the various solutions but am getting nowhere. I can't connect my iBook, which is running Tiger, to our office's server, a Windows Small Business Server 2003. I am the only Mac u

  • Can you set a distinct ringtone for an incoming number?

    We have a client with a UC560. There is a sip-based call box on extension 321 that can unlock a door. We want the calls to come a specific 7962 handset that sits next to a screen that shows a security camera pointed at that door. We would like the ca

  • Error when downloading Final Cut Pro 10.1.3

    My specs When I first got his MacBook about a month ago, I was still using Mavericks. I bought Final Cut Pro and it downloaded just fine. I upgraded to Yosemite shortly after it became available. I found soon after that supplemental updates for FCP w

  • RMAN backup with NOARCHIVELOG mode

    Hi, Is it possible to EXCULDE TABLESPACE with rman using NOARCHIVELOG database ? Thanks