I have one doubt on system global area while  executing packages

Actually in package we store inter related objects together.
the package contained subprograms will occupy memory in SGA
when we calling subprograms which are present in the package.
if occupy memory in SGA so the packages are how will give performence
compare to the stand alone subprograms?
and the data capacity SGA can store also reduces if subprograms occupy
memory in the SGA. so it is some what degrading of performance.
i want to know while executing subprogrms will these occupy SGA memory
if occupy's the data capacity SGA can store also automatically reduced
how package containde subprograms will give performance?
If u know SGA role let me know?

Hi MrHoffman, thanks for your reply!
I know for a fact that the DNS is set to .local - it's the default one so I've never altered that. The changes that occurred seemed to happen after the recent apple security update was applied. If ".local" causes so much trouble is there a reason that it's the default? (I'm not that technically minded - it's just a wonder more than anything.)
Upon closer inspection I can see that the hostname has had two hyphens added to it, where the spaces are in our business name. (Previously it was named without the spaces, just all typed as one word.)
I guess that if there was a long delay in the DNS update then maybe it would account for the user suddenly being unable to connect/use the server.
As for the users, I know where I can see the list of them, the thing is that previously there were only 4 in the list, now there's 85, including a new "System Administrator". It's functioning normally again, but I guess I was really looking to see if anyone else had seen the user list grow without prompting. If it's normal then that's totally fine with me, but as I say it freaked me aout a little when there are suddenly a bunch of new users on the list.
Cheers again!
M:

Similar Messages

  • System Global Area

    Hi,
    Can any one please tell me about System global area.
    And what is the importance of SGA in Pl/sql.Please share information if any one have sound Knowlodge in this.
    Thanks,
    Sanjeev.

    Hello,
    The System Global Area (SGA) is a group of shared memory areas dedicated to
    an Oracle instance. However it is not a concept utilized by Berkeley DB, hence
    this question is better suited for another forum.
    Thanks,
    Sandra

  • Hi,all i'm murali,i have one doubt

    hi,all i have one doubt most of the times repeated in the interview ,plz solve me.
      1.    how will u raise exception management in function modules?
      2.    how to create a  check box?
      3.    in a invoice how can i find the sales order
       these r the questions plz give me the perfect answers for these .
    waiting  for reply.
    murali.

    Murali,
    1.
    Exceptions
    Our function module needs an exception that it can trigger if there are no entries in table SPFLI that meet the selection criterion. The exception NOT_FOUND serves this function:
    Source Code
    Having defined the parameter interface and exceptions, we can now write the source code of our function module. To do this, choose Source code in the Function Builder. This opens the ABAP Editor for the include program L of the exception or OTHERS occurs in the EXCEPTIONS addition of the CALL FUNCTION statement, the exception is handled by the calling program.
    If the calling program does not handle the exception
    The RAISE statement terminates the program and switches to debugging mode.
    The MESSAGE ..... RAISING statement display the specified message. How the processing continues depends on the message type.
    If the calling program handles the exception, both statements return control to the program. No values are transferred. The MESSAGE ..... RAISING statement does not display a message. Instead, it fills the system fields SY-MSGID, SY-MSGTY, SY-MSGNO, and SY-MSGV1 to SY-MSGV4.
    Source Code of READ_SPFLI_INTO_TABLE
    The entire source code of READ_SPFLI_INTO_TABLE looks like this:
    FUNCTION READ_SPFLI_INTO_TABLE.
    ""Local interface:
    *"       IMPORTING
    *"             VALUE(ID) LIKE  SPFLI-CARRID DEFAULT 'LH '
    *"       EXPORTING
    *"             VALUE(ITAB) TYPE  SPFLI_TAB
    *"       EXCEPTIONS
    *"              NOT_FOUND
      SELECT * FROM SPFLI INTO TABLE ITAB WHERE CARRID = ID.
      IF SY-SUBRC NE 0.
        MESSAGE E007(AT) RAISING NOT_FOUND.
      ENDIF.
    ENDFUNCTION.
    The function module reads all of the data from the database table SPFLI where the key field CARRID is equal to the import parameter ID and places the entries that it finds into the internal table SPFLI_TAB. If it cannot find any entries, the exception NOT_FOUND is triggered using MESSAGE...RAISING. Otherwise, the table is passed to the caller as an exporting parameter.
    Calling READ_SPFLI_INTO_TABLE
    The following program calls the function module READ_SPFLI_INTO_TABLE:
    REPORT DEMO_FUNCTION_MODULE.
    PARAMETERS CARRIER TYPE S_CARR_ID.
    DATA: JTAB TYPE SPFLI_TAB,
          WA   LIKE LINE OF JTAB.
    CALL FUNCTION 'READ_SPFLI_INTO_TABLE'
         EXPORTING
              ID        = CARRIER
         IMPORTING
              ITAB      = JTAB
         EXCEPTIONS
              NOT_FOUND = 1
              OTHERS    = 2.
    CASE SY-SUBRC.
      WHEN 1.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO.
      WHEN 2.
        MESSAGE E702(AT).
    ENDCASE.
    LOOP AT JTAB INTO WA.
      WRITE: /  WA-CARRID, WA-CONNID, WA-CITYFROM, WA-CITYTO.
    ENDLOOP.
    The actual parameters CARRIER and JTAB have the same data types as their corresponding interface parameters in the function module. The exception NOT_FOUND is handled in the program. It displays the same message that the function module would have displayed had it handled the error.
    2.  PARAMETERS p_check  AS CHECKBOX .
    3.You can find the information in table VBFA.
    VBELV - Your Sales Order Number
    VBTYP_N - 'M'
    VBELN is the invoice number.
    Don't forget to reward if useful.....

  • I have a the Spring 2011 iMac and I am looking to connect both my Bose Companion 2's with my new Companion 20's together to have one single audio system, any suggestions on how this can be done?

    I have a the Spring 2011 iMac and I am looking to connect both my Bose Companion 2's with my new Companion 20's together to have one single audio system, any suggestions on how this can be done?

    FIxed my problem!
    After years the problem was solved somply!
    Go to System preferences
    Go to Ethernet
    Go to Advance
    Go to Hardware
    The just make the changes like in the pictures below

  • Hi experts              i have one doubt  while running dunning where can i see previous dunning notices.  vendor /customer

                    hi experts
             i have one doubt  while running dunning where can i see previous dunning notices.  vendor /customer

              hi
               thanks for you answer
    regards
    naveenkumar

  • Actually i have one doubt in message class

    Actually i have one doubt in message class. I want create message for following logic.
    If the records already exits in database table ,
    whatever  input i will given in input fields like  entry type and material no ,it will need in message.
    i want rise the error message in my code like "Record entry type B Material no 029585888 already exits in database table".
    I done the coding like.........
    in SE80.
        IF sy-subrc = 0.
          MESSAGE e039 with zdbt-enttyp
                            zdbt-matnr.
        ENDIF.
    in SE91.
    Record  entry type &1 Location &2 already exits in database table.
    is it correct? it s not working properly..
    could you advice me.......

    Hello Raju
    The only possible problem I see is that in your report you send a message of the wrong message class. Assuming that your message class is ZMSG then assure that your report begins with:
    REPORT zreport MESSAGE-ID zmsg.
    IF sy-subrc = 0.
    MESSAGE e039 with zdbt-enttyp
    zdbt-matnr.
    ENDIF.
    Regards
      Uwe

  • I have one doubt on Checkbox Conditions

    Hi Friends,
    I have one doubt on Checkbox Conditions. I had download data into Excel Format. My requirement is suppose I have select 4 checkbox into table click on Download I want to download 4 records into Excel Format.
    Now I have Select 4 Checkbox click on download button total records is downloaded
    My Req:: I have select 4 checkbox into table click on Download I want to download 4 records into Excel Format.
    So I had done Coding also. What I am doing that coding is
    1.     I have to create one Value Node(IPoDetails_ExcelData)
    2.     Now Data is available in this Value Node (PoDetails_OutTab)
    3.     what I am doing here Get the data from this value node (PoDetails_OutTab) and set that data to this Value Node (IPoDetails_ExcelData). Finally add the data to this Value Node (IPoDetails_ExcelData).
              Could you check my code. If any problem in that code pls help me.
    public void onActiondownloadToExcel(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActiondownloadToExcel(ServerEvent)
         IPrivatePO_Details_ResultView.IPoDetails_ExcelDataNode ExcelNode = wdContext.nodePoDetails_ExcelData();
              IPrivatePO_Details_ResultView.IPoDetails_ExcelDataElement ExcelEle;   
        wdComponentAPI.getMessageManager().reportSuccess("ExcelNode:"+ExcelNode);   
              IPrivatePO_Details_ResultView.IPoDetails_OutTabNode StockNode = wdContext.nodePoDetails_OutTab();
         wdComponentAPI.getMessageManager().reportSuccess("StockNode:"+StockNode);
              IPrivatePO_Details_ResultView.IPoDetails_OutTabElement StockEle ;     
    //wdComponentAPI.getMessageManager().reportMessage(IMessageCO_EnterStockDetails.SF_UPLOAD, null ,false);
                for(int i = 0 ;i<StockNode.size();i++)
                        {                         //wdComponentAPI.getMessageManager().reportSuccess("StockNode.size:"+StockNode.size());
                             StockEle = StockNode.getPoDetails_OutTabElementAt(i);
                             //wdComponentAPI.getMessageManager().reportSuccess("StockEle:"+StockEle);
                             if(StockEle.getCheckBox()== true)
                         {                         wdComponentAPI.getMessageManager().reportSuccess("StockNodeCheck:"+StockEle.getCheckBox());
                             ExcelEle = ExcelNode.createPoDetails_ExcelDataElement();// Create Element
                             wdComponentAPI.getMessageManager().reportSuccess("ExcelEle:"+ExcelEle);               
                                  ExcelEle.setConf_Shp_Date(StockEle.getConf_Shp_Date());                           wdComponentAPI.getMessageManager().reportSuccess("Conf_Shp_Date:"StockEle.getConf_Shp_Date());                         wdComponentAPI.getMessageManager().reportSuccess("ExcelEleConf_Shp_Date:"ExcelEle.getConf_Shp_Date());
                                  ExcelEle.setMaterial(StockEle.getMaterial());
                                  ExcelEle.setMatl_Desc(StockEle.getMatl_Desc());
                                  ExcelEle.setOa_Quantity(StockEle.getOa_Quantity());
                                  ExcelEle.setOpn_Quantity(StockEle.getOpn_Quantity());
                                  ExcelEle.setPo_Item(StockEle.getPo_Item());
                                  ExcelEle.setPo_Number(StockEle.getPo_Number());                         wdComponentAPI.getMessageManager().reportSuccess("Po_Number:"StockEle.getPo_Number());                         wdComponentAPI.getMessageManager().reportSuccess("ExcelElePo_Number:"ExcelEle.getPo_Number());
                                  ExcelEle.setPo_Status(StockEle.getPo_Status());
                                  ExcelEle.setUom(StockEle.getUom());
                                  ExcelEle.setStat_Date(StockEle.getStat_Date());
                                  ExcelEle.setQuantity(StockEle.getQuantity());
                                  ExcelEle.setDeliv_Date(StockEle.getDeliv_Date());
                                  ExcelEle.setExpt_Shp_Date(StockEle.getExpt_Shp_Date());
                                  ExcelEle.setVendor_Material(StockEle.getVendor_Material());
                                  ExcelNode.addElement(ExcelEle);                    wdComponentAPI.getMessageManager().reportSuccess("H:::ExcelData::::"+ExcelNode.currentPoDetails_ExcelDataElement());
                                  wdComponentAPI.getMessageManager().reportSuccess("H:::ExcelData::::"+ExcelEle.getPo_Item());
    //                         wdThis.wdGetCO_POPendingController().downloadToExcelFile();
    //                         wdThis.wdGetCO_POPendingController().DownLoadToExcel();// Popup Window
                        //wdThis.wdGetCO_POPendingController().downloadToExcelFile();
                        //wdComponentAPI.getMessageManager().reportSuccess("Giiiiii");
                        ///wdThis.wdGetCO_POPendingController().DownLoadToExcel();
                        if(ExcelNode.size()>0)
                             //wdThis.wdGetCO_POPendingController().downloadToExcelFile(wdContext.nodePoDetails_ExcelData(),getReportingDelays());
                             //wdThis.wdGetCO_POPendingController().Downlaod();
                             //wdThis.wdGetCO_POPendingController().downloadToExcelFile();// This is Download Excel Data
    IThis is method in CC-downloadToExcelFile and This is Open Popup window DownLoadToExcel(). This method also in CC
                             wdThis.wdGetCO_POPendingController().DownLoadToExcel();
                             wdContext.nodePoDetails_ExcelData().invalidate();
              else     {
                     wdComponentAPI.getMessageManager().reportException("Please select any one po item from the table",true);
        //@@end
    Regards
    Vijay Kalluri

    Hi Vijay,
    Please try to use this to implement your scenario:
    public void onActiondownloadToExcel(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
         //@@begin onActiondownloadToExcel(ServerEvent)
         IPrivatePO_Details_ResultView.IPoDetails_ExcelDataElement ExcelEle = null;
        for(int i = 0; i< wdContext.nodePoDetails_OutTab().size(); i++)
                  ExcelEle = wdContext.createDetails_ExcelDataElement();
                  Here check condition for selected table checkbox column in nodePoDetails_OutTab()
                  if (wdContext.nodePoDetails_OutTab().getPoDetails_OutTabElementAt(i).get<Table Column Attribute>.getMdoNo
                                 ().equalsIgnoreCase("TRUE")
                           // Here you need to code for setting table row value in the node Details_ExcelData. Like same as below
         ExcelEle.set<Table column Name>(wdContext.nodePoDetails_OutTab().getPoDetails_OutTabElementAt(i).get<Table 
                                          Column Attribute>.getMdoNo())
         wdContext.nodeDetails_ExcelData().addElement(ExcelEle);
    Hope it helps
    Regards
    Arun

  • Lsdaq doesn't list any card but i have one in the system.daqmx installed ok.

    I have installed Daqmxbase8 in my RHEL5 system.All installation went ok.After restarting the machine while running lsdaq, i have seen it not displaying any NI boards.But I have ,
    one NI4461 card, which is listed in  'lspci command ' , as Unknow device fronm  NI.Why lsdaq is not giving any listing?

    more data... well I tried various BIOS settings (after borrowing a keyboard that could get into BIOS) but it doesn't look like it's a BIOS issue alone. it looks that at some point the system GRUB might be involved.
    it looks like as soon as both kingstongs are in only one gets recognised by the BIOS. when I stick in the no name Chinese USB I can choose in BIOS the boot priority of the two. probably Toshiba would also provide such an options. so I guess I need to get a Toshiba or something and then set it up as secondary boot?! but why won't it work with 2 Kingstons?
    By the way can I sue 64 GB FAT USB 32 to do system backups with rdiff-backup? I am guessing that not but I am not sure if backups get compressed - do they keep the file ownership and permissions?
    I tried various options (removed all flags from Kingston, reformatted it as fat32) - Kingston 8GB is where the OS is installed - google docs sheet of results:https://docs.google.com/spreadsheets/d/1IzcvabodrpaQKqiZDT0rPhBfn2DSutcCRCerWOVc0DE/edit?usp=sharing 

  • I HAVE ONE DOUBT ON DML  OPERATIONS?

    KINDLY GIVE ANSWERS PLZ
    ANOTHER QUESTION:
    I AM SELECTED ONE TABLE THAT TIME TABLE WILL BE LOCKED OR NOT?
    IF I SELECT A TABLE THE OTHER USER CAN ACCESS THE SAME??
    ANOTHER QUESTION:
    I AM OPENED TWO SQL* PLUS IN MY SYSTEM. ARE THEY COMES UNDER SINGE SESSION?
    OR TWO DIFFERENT SESSIONS?
    WITH THOSE CAN I FELL LIKE TWO DIFFERENT USERS?
    ANOTHER QUESTION:
    I AM UPDATEING MY TABLE AT THE TIME THE TOTAL TABLE WILL BE LOCKED
    AT THE SAME TIME OTHER USERS ALSO TRYING FOR SAME TABLE CAN HE EVEN SELECT THE TABLE???????
    AS PER MY KNOWLEDGE HE CAN NOT ACESS THE TABLE. AM I THINKING RIGHT?
    ANOTHER Q?
    MORE THAN ONE PROGRAMMER CAN SELECT A TABLE AT THE SAME TIME?
    ADVACED THANKS.

    KINDLY GIVE ANSWERS PLZ
    ANOTHER QUESTION:
    I AM SELECTED ONE TABLE THAT TIME TABLE WILL BE LOCKED OR NOT?
    IF I SELECT A TABLE THE OTHER USER CAN ACCESS THE SAME??
    A SELECT would not lock a table.
    ANOTHER QUESTION:
    I AM OPENED TWO SQL* PLUS IN MY SYSTEM. ARE THEY COMES UNDER SINGE SESSION?
    OR TWO DIFFERENT SESSIONS?
    Two Different Sessions
    WITH THOSE CAN I FELL LIKE TWO DIFFERENT USERS?
    Didn't quite get your question.
    ANOTHER QUESTION:
    I AM UPDATEING MY TABLE AT THE TIME THE TOTAL TABLE WILL BE LOCKED
    Only those rows which you are UPDATing will be locked.
    AT THE SAME TIME OTHER USERS ALSO TRYING FOR SAME TABLE CAN HE EVEN SELECT THE TABLE???????
    Yes. SELECT is always permitted
    ANOTHER Q?
    MORE THAN ONE PROGRAMMER CAN SELECT A TABLE AT THE SAME TIME?
    yES.
    ADVACED THANKS.
    Some users consider using Upper case to be Shouting/Offensive.

  • I have one doubts, Why does the screen go out automatically in way rest and activate when pressing any does key?

    I am a little scared, since for one week I received to the new Macbook Pro 13 i7, and does few days was working of strange way, since it was beginning to extinguish automatically the screen at any time and any key activates when pressing to enter the open session. I want to know if something is being put rare or is normal, or if desbalanceé the adjustment of economizer or screen or whatever it appears in the panel of system preferences. I have reestablished them almost all, but the problem persists.
    I need aid. I do not want that it passes nothing to him and that everything is working well.
    I will be thankful for its answers to them. Especially to the technical support

    I belive that upgrade to 10.8.4 has troubles.
    After this my macbook pro started to go to sleep even that I was working with it.
    This morning it became too much. I had worked fine in the evening and this morning the keyboard would not response. Each keypress made sound an evel "click sound".
    I ended up needing to reboot the computer.

  • Amrish i have one doubt

    Amrish,
    I have 15 items in sales order, but how the system do the delivery is
    it has to take one item per day and should deliver upto 15 days....
    how it possible???
    If we do manually it is possible... but this should do automatically...
    for this i have go for sm35?

    Hi,
    I think you will have to go for a BDC.
    Second option to to split the scedule lines in 15 days automatically.
    And schedule the program for delivery creation on daily basis,so this should create a seprate delivery for each line item.
    Again a big Z coming into picture.
    Regards,
    Amrish Purohit

  • Hi friends i have one doubt on price indicator.

    for subcontrcacting semifinished goods what should be the price control indicator( V/ S ). and i also like to know why.

    Hi.
    Price control indicator is totally depends on the customer requirement.
    If you opt for standard price you have the liberty to change over to moving avg price at any time.
    Also systems will, calculate the moving avg price and it will be displayed in the material master but this is only for statistical use only.
    But when you choose price control as V initially, you cannot revert back to S unless Costing department evaluates it.
    If it helps award me.
    Cheers!!!
    Umakanth

  • I have one doubt on BAPI

    Hi Experts,
    I am created RFC function module for placing in BOR, but it is not released ,
    can any one tell me anything happens or not.
    Thanks,
    Ravindra.

    Please search before posting, please use meaningful subject lines.
    Thread locked
    Thomas

  • Dear All, thanks in advance i have one doubt please clarify this  what it is can we delete the payroll result in production client .yes we can delete the payroll result by PU01 Tcode .But my question is

    what are the scenarios we delete the payroll results ,can we suggest the client to delete the payroll result.

    Hi,
    I would not recommend that you delete the payroll results. What is your issue? Can you provide more background, there may be other options...
    Will

  • I have one doubt in javabeans plz tell me

    Can we create buttons with reusable components (beans).
    If yes, how can we make use it.

    Yes,
    u can create reusable component in Java Beans even button also, its easy.
    Bye
    Prabhat

Maybe you are looking for

  • Flip4Mac not working in safari 5

    hi guys, just noticed as i tried to listen to jazz fm that the flip4mac app thats streams wmas no longer works in safari 5, i think im on the latest version of flip4mac, anyone else got this problem or should i try reinstalling? Heres the link im try

  • PI 7.1 wssecurity tag in wsdl

    Hi All, Recently our XI 3.0 system upgraded to PI 7.1, now when we have created the webservice we have seen extra xmls tabs about the ws policy document tags. In XI 3.0 system we did't find any extra these tags.. xmlns:wsp="http://schemas.xmlsoap.org

  • Possible to store a variable in one comp and accessible to all other comps.

    Hi There, This question is mainly for architectural reasons.  Is there a way within the After Effects project file, to declare a global variable that is accessible to all comps?  I want to simply define a variable, set its value, and have that variab

  • Cheque Lot in B-One

    Hi All,                     Can anybody guide me how to set up the cheque lot in B-one.I want cheque no  from--- and --to like 1-100,105-160 Thanks and Regards, Shekhar

  • XPath+XSLT: Re-adding parts of the document after XPath eval. (fragment)

    Hello all, Sorry, I know that this is not strictly a Java related problem, but who knows if there are standard API functions for that... Imagine this simple XML document: <document>    <meta>      [some deeper structs]    </meta>    <content>       <