What's report name show list of public holiday?

Dear all,
I want to view the list of public holiday on production system. Please help me to view this.
Thanks for your susports.
Huyen Nguyen

Hi Dude,
We have a Function Moudule to get the details of public hoilday...
HOLIDAY_GET Provides a table of all the holidays based upon a Factory Calendar &/ Holiday Calendar.
HOLIDAY_CHECK_AND_GET_INFO Useful for determining whether or not a date is a holiday. Give the function a date, and a holiday calendar, and you can determine if the
date is a holiday by checking the parameter HOLIDAY_FOUND.
Example: HOLIDAY_CHECK_AND_GET_INFO
data: ld_date like scal-datum default sy-datum,
lc_holiday_cal_id like scal-hcalid default u2018CAu2019,
ltab_holiday_attributes like thol occurs 0 with header line,
lc_holiday_found like scal-indicator.
CALL FUNCTION u2018HOLIDAY_CHECK_AND_GET_INFOu2019
EXPORTING
date = ld_date
holiday_calendar_id = lc_holiday_cal_id
WITH_HOLIDAY_ATTRIBUTES = u2018Xu2019
IMPORTING
HOLIDAY_FOUND = lc_holiday_found
tables
holiday_attributes = ltab_holiday_attributes
EXCEPTIONS
CALENDAR_BUFFER_NOT_LOADABLE = 1
DATE_AFTER_RANGE = 2
DATE_BEFORE_RANGE = 3
DATE_INVALID = 4
HOLIDAY_CALENDAR_ID_MISSING = 5
HOLIDAY_CALENDAR_NOT_FOUND = 6
OTHERS = 7.
if sy-subrc = 0 and
lc_holiday_found = u2018Xu2019.
write: / ld_date, u2018is a holidayu2019.
else.
write: / ld_date, u2018is not a holiday, or there was an error calling the functionu2019.
endif.
Checking dates
DATE_CHECK_PLAUSIBILITY Check to see if a date is in a valid format for SAP. Works well when validating dates being passed in from other systems.

Similar Messages

  • Calendar that shows South African Public Holidays

    Hi .....I need help please i am looking for a calendar app to download for my Blackberry Z 3 so that I can see what public holidays are comming and what day or tell me how i can get the calendar that on my phone to update so that it shows the publick holidays,does anyone know????
    please help thanks

    Looks like this app may be what you are looking for
    BlackBerry World - 2015 Global Holidays Calendar 
    Did someone help you? Click Like! Did a post solve your issue? Click Accept as Solution!
    Follow me on Twitter or Google+ and subscribe to the Inside BlackBerry Help Blog

  • Query for the list of publich holidays from the Project Server 2010 for reporting

    I would like to get the list of public holidays that is configured in the calendar from the reporting database. I am not sure if this information is available in the database.
    Please can you provide with the sql query . thanks
    Simi

    I just put together this query based on what Elli J did. My problem was to come up with a way to define a calendar-based "grace period" extension of the baseline finish date for a project. The grace period had to be based on a scale factor (here 1.1) applied
    to the project's official baseline duration. I then had to project forward, using the standard calendar, to the relevant grace period finish date on a per-project basis.
    Anyway, here is what I came up with. Note that I eliminated the SUM operations as unnecessary, and I also had to account for the fact that the official calendar days queryable using resource by day base capacity can "run out" before it should, so that it
    has to be extended by tacking on regular weekdays after that.
    SELECT
        P.ProjectUID,
        P.ProjectName,
        ProjectBaseline0StartDate = PSTB0.TaskBaselineStartDate,
        ProjectBaseline0FinishDate = PSTB0.TaskBaselineFinishDate,
        ProjectBaseline0DurationInDays = ROUND(PSTB0.TaskBaselineDuration / 8, 0),
        ProjectBaseline0GracePeriodDurationInDays = ROUND(ROUND(PSTB0.TaskBaselineDuration / 8, 0) * (GracePeriodParameters.MultiplierExcludingBase), 0),
        ProjectBaseline0GracePeriodFinishDate =
            SELECT TimeByDay
            FROM
                 SELECT
                     TimeByDay,
                     DayRank = RANK() OVER (ORDER BY TimeByDay)
                 FROM
                    -- Query all calendar days in standard calendar, using resource base capacity as proxy
                    -- Actual calendar data is not available in any of the MSPS relational databases.
                     SELECT TBD.TimeByDay
                     FROM dbo.MSP_TimeByDay TBD
                     JOIN dbo.MSP_EpmResourceByDay RBD ON TBD.TimeByDay = RBD.TimeByDay
                     JOIN dbo.MSP_EpmResource R ON R.ResourceUID = RBD.ResourceUID
                     WHERE
                        R.ResourceBaseCalendar = StandardCalendarInformation.CalendarName AND
                        TBD.TimeByDay > PSTB0.TaskBaselineFinishDate AND
                        RBD.BaseCapacity > 0
                    UNION
                    -- Extend genericallly with weekdays if the calendar days queried above run out too early
                    SELECT TBD2.TimeByDay
                    FROM dbo.MSP_TimeByDay TBD2
                    WHERE
                        TBD2.TimeDayOfTheWeek IN (2,3,4,5,6) AND
                        TBD2.TimeByDay > PSTB0.TaskBaselineFinishDate AND
                        TBD2.TimeByDay > StandardCalendarInformation.LatestDateWithNonZeroCapacity
                UnrankedUnion
            RankedUnion
            WHERE RankedUnion.DayRank = ROUND(ROUND(PSTB0.TaskBaselineDuration / 8, 0) * (GracePeriodParameters.MultiplierExcludingBase), 0)
    FROM dbo.MSP_EpmProject P
    LEFT JOIN dbo.MSP_EpmTask PST ON PST.TaskIsProjectSummary = 1 AND P.ProjectUID = PST.ProjectUID
    LEFT JOIN dbo.MSP_EpmTaskBaseline PSTB0 ON PSTB0.BaselineNumber = 0 AND PST.TaskUID = PSTB0.TaskUID
    CROSS JOIN (SELECT 1.1 AS MultiplierIncludingBase, 0.1 AS MultiplierExcludingBase) GracePeriodParameters
    CROSS JOIN
        SELECT TOP 1 CalendarName = C.CAL_NAME, LatestDateWithNonZeroCapacity = TBD.TimeByDay
        FROM dbo.MSP_TimeByDay TBD
        JOIN dbo.MSP_EpmResourceByDay RBD ON TBD.TimeByDay = RBD.TimeByDay
        JOIN dbo.MSP_EpmResource R ON R.ResourceUID = RBD.ResourceUID
        JOIN [Demo2010A_PWA_Published].dbo.MSP_CALENDARS C ON R.ResourceBaseCalendar = C.CAL_NAME
        WHERE C.CAL_IS_STANDARD_CAL = 1 AND RBD.BaseCapacity > 0
        ORDER BY TBD.TimeByDay DESC
    StandardCalendarInformation
    - William Schmidt

  • Public Holiday Calender

    Dear All,
                I want to Maintain Public Holiday Calender with the below holidays in ECC 6.Suggest me
    1.     REPUBLIC DAY     SATURDAY      26.01.2008
    2.     MAHASHIVRATRI      THURSDAY      06.03.2008
    3.     HOLIKA DAHAN      SATURDAY     22.03.2008
    4.     RAM NAVAMI     MONDAY      14.04.2008
    5.     INDEPENDENCE DAY     FRIDAY     15.08.2008
    6.     RAKSHABANDHAN     SATURDAY     16.08.2008
    7.     GANDHI JAYANTI      THURSDAY     02.10.2008
    8.     DUSSEHRA      THURSDAY      09.10.2008
    9.     DIWALI      TUESDAY      28.10.2008
    10.     GOVERDHAN POOJA      WEDNESDAY
         29.10.2008
    Thanks,
    Alam

    Go to SCAL t code
    1. Double-click with the mouse on the Execute symbol, select the option Public holidays and choose the function Display.
    2. Check whether the list of public holidays displayed contains all the public holidays that you need.
    If you want to see detailed information on any public holiday, choose the function Display def.
    3. If you need other public holidays, return to the initial screen of the maintenance transaction, and choose the function Change.
    4. Choose the function Insert, and now make the following entries:
    Public holiday type
    Date or calculation rule
    Public holiday text (short and long)
    If required: Sort criterion, religious denomination or public holiday class (for notes on this, press the F1 Help).
    Save the definition.

  • Eliminating Weekends and user defined public holidays.

    Hi, This is my query to date:
    WITH cla_case AS
    ( SELECT 1 event_no, to_date('01/10/2011','dd/mm/yyyy') discover_date, to_date('02/10/2011','dd/mm/yyyy') notification_date from dual union all
    SELECT 2 event_no, to_date('02/10/2011','dd/mm/yyyy') discover_date, to_date('03/10/2011','dd/mm/yyyy') notification_date from dual union all
    SELECT 3 event_no, to_date('03/10/2011','dd/mm/yyyy') discover_date, to_date('04/10/2011','dd/mm/yyyy') notification_date from dual
    cla_event AS
    ( SELECT 1 event_no, to_date('02/10/2011','dd/mm/yyyy') incident_date from dual union all
    SELECT 2 event_no, to_date('02/10/2011','dd/mm/yyyy') incident_date from dual union all
    SELECT 3 event_no, to_date('03/10/2011','dd/mm/yyyy') incident_date from dual
    SELECT
    round(cc.notification_date - GREATEST(cc.discover_date,ce.incident_date)) Days_To_Report
    FROM
    cla_case cc,
    cla_event ce
    WHERE
    cc.cla_event_no = ce.cla_event_no
    Problem is that I need to firstly eliminate weekends and then public holidays. I have read about creating a calendar where you list the public holidays but I have no idea how to do that.
    Here is the link for the South African public Holidays: http://www.blaauwberg.net/public_holidays.php This is for 2010 - 2012. I'll need as far back as 2008 but I can find that info at a later stage.
    Thanks!
    Banner:
    Oracle Database 11g Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE 11.2.0.2.0 Production"
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production

    @ Bravid
    I added the following to the non_working_days table:
    --2008 Public Holidays
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('01-JAN-2008 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('21-MAR-2008 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('24-MAR-2008 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('28-APR-2008 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('01-MAY-2008 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('16-JUN-2008 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('24-SEP-2008 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('16-DEC-2008 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('25-DEC-2008 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('26-DEC-2008 00.00', 'Public_Holiday')
    --2009 Public Holidays
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('01-JAN-2009 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('10-APR-2009 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('13-APR-2009 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('27-APR-2009 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('01-MAY-2009 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('16-JUN-2009 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('10-AUG-2009 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('24-SEP-2009 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('16-DEC-2009 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('25-DEC-2009 00.00', 'Public_Holiday')
    --2010 Public Holidays
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('01-JAN-2010 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('22-MAR-2010 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('02-APR-2010 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('05-APR-2010 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('27-APR-2010 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('16-JUN-2010 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('09-AUG-2010 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('24-SEP-2010 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('16-DEC-2010 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('27-DEC-2010 00.00', 'Public_Holiday')
    --2011 Public Holidays
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('21-MAR-2011 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('22-APR-2011 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('25-APR-2011 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('27-APR-2011 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('02-MAY-2011 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('18-MAY-2011 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('16-JUN-2011 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('09-AUG-2011 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('16-DEC-2011 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('26-DEC-2011 00.00', 'Public_Holiday')
    --2012 Public Holidays
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('02-JAN-2012 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('21-MAR-2012 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('06-APR-2012 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('09-APR-2012 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('27-APR-2012 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('01-MAY-2012 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('09-AUG-2012 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('24-SEP-2012 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('17-DEC-2012 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('25-DEC-2012 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('26-DEC-2012 00.00', 'Public_Holiday')
    --2013 Public Holidays
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('01-JAN-2013 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('21-MAR-2013 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('29-MAR-2013 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('01-APR-2013 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('01-MAY-2013 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('17-JUN-2013 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('09-AUG-2013 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('24-SEP-2013 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('16-DEC-2013 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('25-DEC-2013 00.00', 'Public_Holiday')
    INSERT INTO non_working_days (DAY, DAY_TYPE) VALUES ('26-DEC-2013 00.00', 'Public_Holiday')
    However when I run your query it doesn't register the dates that I have inserted into the non_working_days table.
    I suspect I have to make some sort of alteration to:
    non_working_days AS
    (     SELECT NEXT_DAY(TO_DATE('01/01/2008','DD/MM/YYYY') + 7 * (rownum -1),'SATURDAY') day, 'WEEKEND' day_type FROM dual connect by level <=500 UNION ALL
         SELECT NEXT_DAY(TO_DATE('01/01/2008','DD/MM/YYYY') + 7 * (rownum -1),'SUNDAY') day,'WEEKEND' day_type FROM dual connect by level <=500
    However as a SQL beginner I'm not sure how to do this to incorporate my values.
    Please advise. Thank-you VERY MUCH!!!!!!

  • Creation of Public Holiday Calendar !!

    Dear Experts/Gurus,
    I know to create a holiday calendar but my query is what is the advantage in creating a Public Holiday with Fixed date and Floating Public holiday.
    I want to know what is the advantage & disadvantes using 1) Fixed date and 2) Floating Public holiday. Please let me know asap.
    Rgds,
    Vikrant

    Hi,
    Holidays which fall on a fixed day of any year will be defined as Fixed public Holidays (Ex:- Independence Day, Republic day, Christmas etc) whereas holidays for which no fixed day is allocated is defined as a Floating Holiday (Ex:- Ramzan, Dusheera, Diwali etc)
    Such a provision is made because we can define a holiday calender for a number of years. As a fixed holiday is always present we can assign it for the entire period (as long as the holiday calender is valid)
    The floating hilidays need to be defined for a particular year
    Hope this helps
    Regards
    Raghu

  • How to extract all the list of reports names available in the WEBI public?

    can anyone please help me how  to extract all the list of reports names which are available in the WEBI Public folder?
    I ran the VB macro downloaded from net but that is extracting all crystal,deski & webi reports..
    but i want only webi list of reports..
    Please help me to achieve this?
    Thanks
    Radha

    Is this about Business Objects WEBI? You might want to post in the BOBJ forums instead.[BOBJ Forums|/community [original link is broken];

  • How to create a report to show BA, Report Names, Owner and shares

    Hello,
    Does anyone have any sql that will show the Business Area, Report Name, Owner and who it is shared with?
    I can get the three last items with no problem; the difficulty is including the BA Name.
    This is for Discoverer v 4.
    Many thanks
    Rachael

    Hi,
    Thanks a lot. I am really new to the Discoverer Arena. We are currently using EUL5. Can you please direct me to the correct product to be installed and how will I actually get all the related worksheets for a specific workbook. Currently I have access to EUL5 tables. Is it what you are referring to? However using the EUL5 schema tables I cannot get the related worksheets of a particular workbook.
    Would be really helpful if you could tell me in detail to solve this? I am somewhat confused heaps of Oracle products. Any other takers welcome
    Thanks
    Thomas

  • Report output showing in technical names

    Hi,
    When I execute a query, input variables and report out put are shown up generally in InfoObject descriptions before.  Just suddenly what happened don't know these reports are showing up output in Technical names, Input variables and the report as well.  Where do you make this to set as default to display in InfoObjects descriptions input variables and the report as well instead of technical names.  Kindly help, I appreciate your answers.  Thanks
    regards,
    reddy
    Edited by: chreddeppa on Oct 21, 2011 8:13 PM

    Sometime it happens because of the lanugate setting of the browser.
    If the browser is internet explorer, you can go to Tools > Internet Option > General > Language and if you are using English, it should be added there (and I guess as first language).
    Try if it solves your issue.
    Regards,
    Gaurav

  • SSRS Reports level how to find out All tables names & columns list to display dynamically SQL Query????

    Hi Team,
    I Have one requirement,In SSRS Reporsitory 3000 reports are available.
    My end user requirement All 3000 reports are used Table names & columns list of each wise to display single table or single result set.
    I find out all 3000 reports details are diplayed single results set like
    Report Id,Path,Dataset,Source Query Text,Datasource
    In Source Query Text  column level All reports Queries are available but I want Each Report wise Table name & columns List.If any solution Please share me.
    Regards
    Rama

    Hi Ramakoteswara,
    According your description, you want to show used tables and columns of each report, and display is into a single result set. Right?
    In this scenario, we don't know where to find a column contains the Source Query Text. With my understanding, in Reporting Services, we have Catalog table in ReportServer DataBase, it has a column called Content stores the report code (.xml). In the
    code we can find the Query and Fields. Then you need to use VB/C# code to parse each .xml code of each report and fetch out the table name and columns. We do not support writing any queries against SSRS DataBase or parsing data records in any
    table.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Briefing Book Title shows the name of the Analysis along with Report Name

    Hi,
    When I add a report to the briefing books, The title of the PDF document shows the report name and below that it also shows the name of the analysis. Normally we save our analysis with some standard naming conventions having some special characters. Client does not need that name in the PDF.
    How can I stop the Analysis Name to appear on the briefing book?
    Please suggest.
    Thanks
    Gaurav A.

    That's a great question, and it seems like something that should be standard with iCal.
    The only thing I could think of would be to add the patient as an invitee, but that still wouldn't solve the problem of having their name be the title of the appointment. But the auto-complete function is there.
    The other option (which is more convoluded) would be to use Filemaker Pro. It is extremely powerful and customizable and there are plenty of people out there who know how to develop for it. This option would be more expensive, but it could also be custom-tailored to your needs.
    Those aren't great answers so I'm interested to see what others say. I'd like to implement it into my own iCal app.

  • Someone's wireless name showed up on my airport list

    I click on the name and it required a password.
    Is this listed only because a neighbor is within range or has someone been able to get to my computer through the airport. I did have a password when I originally followed the Utility or Administer app directions.
    Also, how do I change the name I gave my airport. Tried going back to the Utility. The one I used would be to obvious to a neighbor.
    I have not used the airport since this other "name" showed up, and removed any files I suspected were airport related. I would like to reconnect to the airport, but not until I know if it's safe.
    I tried understanding the Knowledge Base on security passwords, but I couldn't get passed the "WEP" or "HEX", etc. Article assumed a reader knows more than I do.
    iBook, 2 USB, Firewire, G3   Mac OS 9.2.x  

    I agree, all you're seeing here is the presence of someone else's network that's within range. Not to worry.
    The name given to your network is a setting that's held by your wireless router. If you're using an Apple Airport base station, then... well, I'm going to take a shot here, because I've never used one. I think what you need to do is to load up the Airport Setup Assistant application, which is located in your Applications/Utilities folder. You should be able to change the network name (and password, if you like) there. There is also an Airport Admin Utility that allows for advanced configuration of the base station. In either case, these applications will talk to the base station for you to make the changes.
    If you're using a third-party router, like me, then you probably need to use your web browser to access the router's configuration pages, log in to the router with its administrator password, and make your change there. You may see the network name referred to as the "SSID", it's the same thing.
    You may also find another setting to "hide" your network's SSID. I did this with mine. The router won't advertise its presence then, meaning that when you view the list of available networks, yours won't be listed. It's still there to be used, but to get to it you have to choose "Other" and type in the name. (Once you're connected, it will appear on the list.) This isn't a robust security feature, anyone who is sufficiently determined can still find your network, but it's good for discouraging casual snoops.
    There's one more setting you might be interested in, and that's the network name of your own computer. To change this, go to System Preferences and choose the Sharing icon. The Computer Name setting is up at the top.
    Hope this helps.
    Joe

  • What report can show Release & re-release value of SAP contract

    Hi Gurus
    What report can show Release & re-release value of SAP contract... Can you please suggest..
    Thanks in advance
    subbu

    Hi,
    We have standard report available to view the release /un-release in Purchasing document category (K-Contract-Sched.agreement,F-PO,A-RFQ) . In standard transactions ME80RN -General Evaluations, It will list out the report which is include your release document header like release group.code,strategy,status of release indicator (Y/N). For this expected output,you will need to choose the dynamic selection(shift+F4) with this you have to double click your expected requirement fields.
    I hope this will fulfills your requirement.
    Regards,
    Thiru

  • What is difference between interactive list and interactive reports?

    what is difference between interactive list and interactive reports?

    hi check this..
    interactive report/list means any input(double click or single click or user command ) on the screen will results a new screen with the corresponding fields....this is upto 20 levels only check this..
    report .
    start-of-selection.
    write:/ 'this is the source list'.
    at line-selection .
    if sy-lsind = 1 .
    write:/ ' this is the 1st list'.
    elseif.
    if sy-lsind = 2 .
    write:/ ' this is the 2 list'.
    if sy-lsind = 3 .
    write:/ ' this is the 3 list'.
    if sy-lsind = 4 .
    write:/ ' this is the 4 list'.
    if sy-lsind = 5 .
    write:/ ' this is the 5 list'.
    if sy-lsind = 6 .
    write:/ ' this is the 6 list'.
    if sy-lsind = 7 .
    write:/ ' this is the 7 list'.
    if sy-lsind = 8.
    write:/ ' this is the 8 list'.
    if sy-lsind = 9 .
    write:/ ' this is the 9 list'.
    if sy-lsind = 10 .
    write:/ ' this is the 10 list'.
    endif.
    regards,
    venkat

  • Report to show Document Templates linked to what business partners

    Hi all,
    I want to write a report to show what default document print templates are linked to what business partners. eg. InvoiceTpye1 is used by Customers 1,6,and 8 etc etc. 
    However I am not aware of what tables hold this info.  Does anyone know?
    Many thanks in anticipation
    Damian

    Hi Damian,
    The table you are looking for is: RDFL
    Thanks,
    Gordon

Maybe you are looking for