In documentation  , getting scrared, pls suggest

Hi,
I know well configuration , and process flows but getting fear in Real time what type document must be prepared, and by base we collect the info by the end user to prepare documentation, and flow charts ? is there any document questioner?
how can I loss this fear?
For example any documentation if you have pls send to this mail.
[email protected]

Please read:
1) The forum faq (announcment stickey post at he top of this forum) [http://forums.oracle.com/forums/ann.jspa?annID=794]
2) The certification blog on [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39]
3) The oracle certifiaction site has lots currently on [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39]
(View all certifications and drill down to a certifaction or exam), you should be able to find the exam topics.
4) Search in this forums for posts on 1z0-051.
5) If you are serious about Oracle also take time to become familar with the Oracle Technology website [http://www.oracle.com/technology] which has links to documentation and tutorials and other resources.
6) IMPORTANT: Some 'online docs' you may find, or are directed to, or may be offered (particularly braindumps), may be unauthorised materials and using them could end up with you losing credit for any exam/certification you may take.
Hopefully you will find these references and places to search useful.
Rgds - bigdelboy.
Edited by: bigdelboy on 10-Apr-2009 14:39 - did not notice hsawwan had replied earlier and given a good reference.

Similar Messages

  • I have lost my facetime option when moved to another country. pls suggest how can i get it back

    Hi ,
    Recenlty i have bouhgt  new iphone5s from middle east . When i was using the phone over there the facetime was working perfect for me .
    Now when i moved to another country i can not see the facetime option in the iphone .
    Could you pls suggest how can i get it back .

    Hi Stedman ,
    Thanks for the information !!
    I have checked the article and i can clear see that my Wireless carrier support the facetime feature
    so what could be the reason am not able to use the facetime option .

  • I have bought my iphone 5 from UK and now residing in USA. Although my carrier (Ultra Mobile) provides 4G service i only get 3G speed. Also icon "3G" appears on top part of my screen. My model is MD297B/A. Pls suggest to enable 4G on my phone

    i have bought my iphone 5 from UK and now residing in USA. Although my carrier (Ultra Mobile) provides 4G service i only get 3G speed. Also icon "3G" appears on top part of my screen. My model is MD297B/A. Pls suggest to enable 4G on my phone

    It is more than likely the inability of the UK phone to support the US phone bands. You will probably be stuck with 3G and will never be able to get LTE. Also, your warranty is only good in the UK. You might be better of to try and sell that device to someone in the UK and purchase a phone in the US that you can get full service with.

  • Pls suggest Online docs for 1Z0-051

    I am new to the forum and trying to get online Documentation for first exam in the track...Can somebody pls suggest online help and sites related to the OCP..?
    Edited by: user10997331 on Apr 10, 2009 1:02 PM

    Please read:
    1) The forum faq (announcment stickey post at he top of this forum) [http://forums.oracle.com/forums/ann.jspa?annID=794]
    2) The certification blog on [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39]
    3) The oracle certifiaction site has lots currently on [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39]
    (View all certifications and drill down to a certifaction or exam), you should be able to find the exam topics.
    4) Search in this forums for posts on 1z0-051.
    5) If you are serious about Oracle also take time to become familar with the Oracle Technology website [http://www.oracle.com/technology] which has links to documentation and tutorials and other resources.
    6) IMPORTANT: Some 'online docs' you may find, or are directed to, or may be offered (particularly braindumps), may be unauthorised materials and using them could end up with you losing credit for any exam/certification you may take.
    Hopefully you will find these references and places to search useful.
    Rgds - bigdelboy.
    Edited by: bigdelboy on 10-Apr-2009 14:39 - did not notice hsawwan had replied earlier and given a good reference.

  • Hi  urgent pls suggest when i press enter the data disappears...

    hi
    i have develop,ed a module pool for table maintianece
    in which  there are theree fields
    customer number name  email id
    now when i dont press enter at first field ie customer number after entering all data
    and save the data is saved properly for all three fields
    but if after e ntering the customer number i press enter and then enter name and email id
    and save the data for email is not saved and also if i just press enter again the data in email id column which i entered disappears
    can anyone suggest reason and solution for it
    regards
    Arora

    hi
    here is my code
    PROCESS BEFORE OUTPUT.
      LOOP   WITH CONTROL TABLE_ZCUST_EM_CREATE."AT T_ZCUST_EM_CREATE
        MODULE STATUS_0200.
      ENDLOOP.
    *Process after input
    PROCESS AFTER INPUT.
      MODULE CANCEL_200 AT EXIT-COMMAND.
      LOOP WITH CONTROL TABLE_ZCUST_EM_CREATE ."AT T_zcust_em_CREATE ." .".
       MODULE USER_COMMAND_0200.
        CHAIN.
          FIELD t_ZCUST_EM_create-ship_to .
         MODULE set_field_validation ON CHAIN-REQUEST.
        ENDCHAIN.
        MODULE USER_COMMAND_0200.
      ENDLOOP.
    here ship_to is customer number
    ship_to_name is name
    and email id is email id field
    pls suggest on this code also if u want i can give code for the module validation and user commarnd 2000
    as below
    MODULE STATUS_0200 OUTPUT.
      w_lines_200 = sy-loopc.
    *Reading table t_zcust_em_create for screen 200.
      read table t_zcust_em_create
        index table_zcust_em_create-current_line.
    *Refreshing The Internal table 't_zcust_em_temp'
      refresh:t_zcust_em_temp.
    ENDMODULE. 
    MODULE set_field_validation INPUT.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                EXPORTING
                   INPUT         = t_zcust_em_create-ship_to
                IMPORTING
                    OUTPUT       = t_zcust_em_create-ship_to.
      select single kunnr from kna1 into v_kunnr
              where kunnr = t_zcust_em_create-ship_to.
          if sy-subrc = 0.
           select single name1 from kna1 into t_zcust_em_create-ship_to_name
           where kunnr = t_zcust_em_create-ship_to.
          else.
          t_gui1-fcode = 'BACK'.
          append t_gui1.
          t_gui1-fcode = 'EXIT'.
          append t_gui1.
          t_gui1-fcode = 'SAVE'.
          append t_gui1.
          SET PF-STATUS 'AIMS_200' excluding t_gui1.
          message E002 with t_zcust_em_create-ship_to.
             endif. "kna1
    ENDMODULE.                 " set_field_validation  INPUT
    MODULE USER_COMMAND_0200 INPUT.
    *Setting it for select/deselect entries
      move:t_zcust_em_create to t_zcust_em_create_sel.
      append t_zcust_em_create_sel.
      clear:t_zcust_em_create_sel.
    *Getting internal table t_zcust_em_create with control
      read table t_zcust_em_create
             with key ship_to = t_zcust_em_create-ship_to.
    *Getting internal table for create entries: screen-200
      if sy-subrc ne 0 and t_zcust_em_create-ship_to ne space .
        append  t_zcust_em_create     .
        move:t_zcust_em_create to t_zcust_em_create_tmp.
        append t_zcust_em_create_tmp .
        clear:t_zcust_em_create_tmp  ,
              t_zcust_em_create      .
      endif.
      clear:t_cols.
    *Getting the value of  w_fill_200.
      describe table t_zcust_em_create lines w_fill_200.
    ENDMODULE.                 " USER_COMMAND_0200  INPUT
    PLEASE SUGGEST
    REGARDS
    ARORA
      module read_table_value_0200.

  • Pls suggest me some good and compatible external batteries for my hp

    pls suggest me some good and compatible external batteries for my hp pavillion g6 2103 model , i prefer good battery life. 

    What is m.tech?
    You may want to peruse the NI Developer Zone. There's lots of ideas you can get from there. What are you interested in doing? 

  • Pls suggest me to improve the perfomance

    Hi all,
    Pls Suggest me to improve the perfomace of the following query
    problem :
    I have a table say cusotmer that contain hierarchy relation
    customer_id parent_id
    1 2
    2 3
    3
    if i input customer_id =1 then i should get all the hierarchy like
    2,3,
    solution i have taken is
    select /*+ parallel (a,8) */ parent_id from cusotmer a
    start with select customer_id in ( select child_id from leaf)
    connect by prior parent_id=customer_id
    The leaf contains 6.5 million entries and customer contains 75 million entries ..
    currently above query is taking 2 hrs to exceute .
    can some one suggest ways to improve the perfomance..
    Thanks,
    Aneesh A

    Have you tried removing the parallel hint and executing the query? Sometimes forcing a parallel hint can degrade performance.
    HTH!

  • PATTERN is driving me crazy, pls. suggest me good syntax

    Hello
    Bcz of i placed PATTERN under DISPLAY tab, am getting errosrs like "Integer has too many digits", "Empty is too long"...I am guessing these are all bcz of some SPACES on these value fields, but not sure from where these spaces are coming? may be user entered some value and just moved the cursor/space bar right hand side, not sure, how to truncate space in BINDING tab's pattern?
    I have 12 value fields in my form, they are for quantities, volumes, price, amounts. I put them as Decimal fields and each field has its own length, as mentioned below
    1) Volume field - Decimal field - Limit leading digits as 15 and Limit trailing digits as 3
    I put the Pattern only on Display tab as below (I didn't put any pattern any other tab, like Binding, Edit, Valiodation tabs)
    By selecting the num.integer on SELECT TYPE left side, I put as below
    null{}|zero{}|num.integer{}
    (Checked Allow Empty, Allow Zeros check boxes)
    Pls. help me by telling What is the correct syntax i need to put here?
    Do i need to put pattern also any other tab, like under BINDING tab, if so, psl. let me know the syntax?
    By selecting the num.decimal on SELECT TYPE left side, I put as below
    null{}|zero{}|num.decimal{}
    (Checked Allow Empty, Allow Zeros check boxes)
    Pls. help me by telling What is the correct syntax i need to put here?
    Do i need to put pattern also any other tab, like under BINDING tab, if so, psl. let me know the syntax?
    2) Price field - Decimal field - Limit leading digits as 14 and Limit trailing digits as 4
    Pls. help me by telling What is the correct syntax i need to put here?
    Do i need to put pattern also any other tab, like under BINDING tab, if so, psl. let me know the syntax?
    Pls. help me by telling What is the correct syntax i need to put here?
    Do i need to put pattern also any other tab, like under BINDING tab, if so, psl. let me know the syntax?
    3) Subsidy in % field - Decimal field - Limit leading digits as 2 and Limit trailing digits as 2
    Pls. help me by telling What is the correct syntax i need to put here?
    Do i need to put pattern also any other tab, like under BINDING tab, if so, psl. let me know the syntax?
    Pls. help me by telling What is the correct syntax i need to put here?
    Do i need to put pattern also any other tab, like under BINDING tab, if so, psl. let me know the syntax?
    Thank you

    Thank you.
    Pls. let me know
    1) My understading from your answer is, i need NOT to put any PATTERN in BINDING tab? am i correct?
    2) Sure, i will put the suggested below syntax, but pls. let me know do i need to select any entry from the left side box (as shown in the black box in below screen shot?) and then i put the suggested below syntax/patern? or i don't need to select any entry from the left box as shwon in below screen shot as black box?
    null{'Enter a Number'}|num{zzz,zzz,zzz,zzz,zz9.999}
    3) For example, if i select num.deciaml {} option.....then the blue high lighted part is coming as trail part to the syntax? is it OK, let it come?
    4) So, i guess, for 2 leading and 2 training length, i need to put below pattern, am i correct?
    null{}|num{z9.99}
    Edit pattern would be for 2,2 is as below, am i correct?
    null{}|num{z9.888}
    5) Do i need to check the ALLOW EMPTY and ALLOW ZERO check boxes? or not?
    6) By chance, if user put spaces, then I want to truncate spaces / delete the spaces in the middle of data or anywhere in the data/field, so can i use as below? if not, pls. suggest me for get rid off spaces from anywhere in the field, bcz i am guessing these crap spaces is causing an issues for me
    null{'No data'}|num{zzz,zzz,zzz,zzz,zz9.999}
    Thank you

  • How do I get Calendar to suggest name and address from Contacts on my iPhone 5 in iOS 8?

    How do I get Calendar to suggest name and address from Contacts on my iPhone 5 in iOS 8?

    Restore it from your backup.

  • I have an ipad 2, MC769x it is running 4.3.3 (8j2) i have been trying to upgrade to ios 5 or higher but a) I don't have a software update option on my Settings / General screen. And b) when I go into itunes I don't get tihe options suggested on the forums

    I have an ipad 2, MC769x it is running 4.3.3 (8j2) i have been trying to upgrade to ios 5 or higher but a) I don't have a software update option on my Settings / General screen. And b) when I go into itunes I don't get tihe options suggested on the forums. I really want to upgrade my ipad as I want to buy and install some apps that are only available from ios5 onwards. I have been a big apple fan but I am now wondering if my ipad2 was a mistake.

    If your are using IOS 4, see below.
    http://support.apple.com/kb/HT4972

  • How to get rid of suggestions in safari

    How do i get rid of suggestions that come under search engines like google or youtube?

    Hi..
    Try clearing your History.
    From your Safari menu bar click History > Clear History

  • Authorization object coding -problem. Pls suggest.

    Hi experts
    I have created authorization fields and assigned in objects properly.
    My case is i am calling the transaction ZMAST which is create through table maintenance(ZMASTER) of the table ZMASTER.
    Now where to implement this coding part and how to do.
    Please explain me clearly the steps , the following coding part i put in dialog programming right now and can you tell me will this code work fine.
    If we can do in Table maintenance Events, do we need to write in standard program. pls suggest me on this.
    WHEN 'MAST'.
    AT SELECTION-SCREEN.
    AUTHORITY-CHECK OBJECT 'ZRAJ_TEST1'
    0 ID 'ACTVT' FIELD '03'.
    IF sy-subrc <> 0.
    MESSAGE 'No authorization' TYPE 'E'.
    ENDIF.
    CALL TRANSACTION 'ZMAST'.
    Thanks in advance.
    Regards
    Rajaram

    Hi,
    The coding can be done in the "Events" section of the table maintenance.
    Chk this link for further help on this:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/how%20to%20implement%20events%20in%20table%20maintenance.doc
    Best Regards,
    Anjali

  • Pls suggest is there any free application to Lock the selected folder on new I pad

    Pls suggest is there any free application to Lock the selected folders on new I pad

    There won't be any. iOS is a sandboxed OS and third-party apps won't be able to prevent access to other apps.

  • Can u someone pls suggest the accesspoint model

    hi all i am new to cisco wireless and also to wireless. i am looking for 2 acces-point which can function as bridges also in workgroup. plus i am ubying a wireless controller for pushing qos,vlans,rf band management,security,802.1x, wep and ids features on to the accesspoints. i am basically requiring this for lab purposes only and not for production.
    can anyone pls suggest me which accesspoint will give this features which will be economical also.
    regards
    sebastan

    Sebastan,
    If you need AP's that can function as a bridge, and be associated to a controlle, you should go with the 1030. It can run as a bridge, to another 1030, or it can be a regular access point.

  • Hi I am using iphone 4, since last few days i am facing problem in touch screen at times it doesn't work at all for 5-10 mins and then it works out itself. Can anyone pls suggest what the problem is and how it can be sorted out?

    Hi I am using iphone 4, since last few days i am facing problem in touch screen at times it doesn’t work at all for 5-10 mins and then it works out itself. Can anyone pls suggest what the problem is and how it can be sorted out?

    Did you recently updated to 7.0.4? Even for me same also issues.

Maybe you are looking for