Report to link invoices with attached documents

I am trying to spool a report from the oracle back end, for some senior staff at my organisation. The report would contain approved invoices along with their electronically attached documents. I have a similar query that works( see below) the problem is this query only accurately ties invoice ID's(PK1_Value) for invoices that were created using "AP_INVOICES" enitity_name, but majority of our users dont have the payables responsibility and hence can only create using the "AP_INVOICES_INTERFACE" enitity_name, and I cant tie the PK1_VALUE in the fnd_attached_documents table to the invoice ID, Please I need urgent help to locate (a) what PK1_VALUE is being used by AP_INVOICES_INTERFACE (b) How I can reference INVOICE_ID with that value.
SELECT SUP.vendor_name SUPPLIER, INV.invoice_num INVOICE,
INV.invoice_amount AMOUNT, INV.remit_to_supplier_name,
INV.description, APVL.approval_history_id, APVL.approver_name, DOC.url
FROM ap_suppliers SUP, ap_invoices_all INV, ap_inv_aprvl_hist_all APVL,
fnd_documents DOC, fnd_attached_documents ATCH
WHERE SUP.vendor_id = INV.vendor_id
AND INV.invoice_id = APVL.invoice_id
AND INV.invoice_id = ATCH.pk1_value
AND DOC.document_id = ATCH.document_id
AND INV.wfapproval_status = 'WFAPPROVED'
AND ATCH.entity_name = 'AP_INVOICES'
AND APVL.response = 'APPROVED'
AND INV.cancelled_by IS NULL
ORDER BY SUPPLIER, INVOICE, APVL.approval_history_id
Thanks in anticipation.

991923 wrote:
@Billy
This is an oracle related question, and its not an in-built developed model. I was actually refered to this forum from oracle support.Billy is correct. Whilst it may be an Oracle question, it is not an SQL or PL/SQL related question.
Your question is referring specifically to functions and entities that are only available to people using one of Oracle Apps type things (I don't use them myself)... So probably one of the forums in the E-Business suite (https://forums.oracle.com/forums/category.jspa?categoryID=3) would be more suitable.
Oracle Support would not (or certainly should not) be referring someone to ask their question in the forums if it is an urgent commercial issue as these forums are not for commercial support.
In these forums, nothing is "urgent" and it is considered rude to presume otherwise, both to the volunteers who help here, and to the other people who would like their questions answered.
The reason i mentioned the tables AP_INVOICES_ALL and AP_INVOICES_INTERFACE is to give as much information about my problem as possible.That's great, but those tables do not exist as part of the standard Oracle database installation, and this SQL and PL/SQL forum is for questions related to the SQL and PL/SQL languages, not for questions related to specific applications that people here are unlikely to have, and for which, when they are Oracle provided applications, they have their own specific forums.

Similar Messages

  • Link invoice with Business Document

    Hi all,
    I am looking for a way to link my invoices (from R/3 Invoice overview) with the original scanned invoice in TIFF format (business document).
    I can see that this is possible using the "Attach Business Document" feature in the change invoice sreen, but I do not want to set this link up manually.
    Is there anyway assign a "business document" to an invoice (or the other way around) automatically?
    Thanks!

    ....you can use GOS (generic object serivces) to add attachments.
    Here is a SD billing example....
    Add this program to an output type in transaction NACE
    *& Report  ZZCREATE_ATTACH                                             *
    *& Triggered by billing output-type ZRD4                               *
    *& Create a "service for object" attachement URL
    report  zzcreate_attach.
    tables: nast.
    data: tmp_vbeln like vbrk-vbeln.
    data:
    *--Object_a
        p_botype like obl_s_pbor-typeid,
        p_bo_id  like obl_s_pbor-instid,
    *--Object_b
        p_docty  like obl_s_pbor-typeid,
        p_msgtyp like sofm-doctp,
        p_url(300),
        p_title(30),
    *--Relationship
        p_reltyp  like mdoblrel-reltype.
    *-Include for BO macros -*
    include : <cntn01>.
    types: begin of ty_message_key,
            foltp     type so_fol_tp,
            folyr     type so_fol_yr,
            folno     type so_fol_no,
            doctp     type so_doc_tp,
            docyr     type so_doc_yr,
            docno     type so_doc_no,
            fortp     type so_for_tp,
            foryr     type so_for_yr,
            forno     type so_for_no,
           end of ty_message_key.
    data : lv_message_key type ty_message_key.
    data : lo_message type swc_object.
    data : lt_doc_content type standard table of soli-line with header line.
    data : tmp_oblguid16 type oblguid16.
    *&      Form  entry
    *       text
    *      -->RETURN_CODE  text
    *      -->US_SCREEN    text
    form entry using return_code us_screen.
      perform create_url.
      return_code = 0.
    endform.                    "ENTRY
    *&      Form  create_url
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form create_url .
      if nast-objky+10 ne space.
        nast-objky = nast-objky+16(10).
      else.
        nast-objky = nast-objky.
      endif.
      tmp_vbeln = nast-objky.
    *-Load class. -*
      class cl_binary_relation definition load.
      class cl_obl_object      definition load.
    *-Set default values -*
      p_botype = 'VBRK'.
      p_bo_id  = tmp_vbeln.
      p_docty  = 'MESSAGE'.
      p_msgtyp = 'URL'.
      p_title  = 'Web Hotel'.
      p_reltyp = 'URL'.
      p_url = 'www.mydoc.tiff'.                   "Here you must add your URL !!!
    *-First derive the Attachment's ( MESSAGE )document type. -*
      p_docty = 'MESSAGE'.
      case p_reltyp.
    *   In case of URls
        when 'URL'.
          p_msgtyp = 'URL'.
    *   In case of Notes / Private Notes
        when 'NOTE' or 'PNOT'.
          p_msgtyp = 'RAW'.
        when 'ATTA'.
          p_msgtyp = 'EXT'.
    *   Not implemented as yet...exit
          exit.
        when others.
    *    ....exit
          exit.
      endcase.
    *-Create an initial instance of BO 'MESSAGE' - to  -*
    *-call the instance-independent method 'Create'.   -*
      swc_create_object lo_message 'MESSAGE' lv_message_key.
    *-Define container to pass the parameter values -*
    *-to the method call in next step.              -*
      swc_container lt_message_container.
    *-Populate container with parameters for method-*
      swc_set_element lt_message_container 'DOCUMENTTITLE' p_title.
      swc_set_element lt_message_container 'DOCUMENTLANGU' 'E'.
      swc_set_element lt_message_container 'NO_DIALOG'     'X'.
      swc_set_element lt_message_container 'DOCUMENTNAME' p_docty.
      swc_set_element lt_message_container 'DOCUMENTTYPE'   p_msgtyp.
    *-'DocumentContent' is a multi-line element ( itab ). -*
    *-In case of URLs..it should be concatenated          -*
    *-with &KEY& in the begining.                         -*
      case p_msgtyp.
        when 'URL'.
          concatenate '&KEY&' p_url into lt_doc_content.
          append lt_doc_content.
    *-In case of Notes or Private Notes, get the data -*
    *-from files on appl server or from wherever ?    -*
    *-(remember background).                          -*
        when 'RAW'.
          lt_doc_content = 'Hi How r u?' .
          append lt_doc_content.
    *-In case of File attachments upload file -*
        when 'EXT'.
      endcase.
      swc_set_element lt_message_container 'DocumentContent' lt_doc_content.
      swc_call_method lo_message 'CREATE' lt_message_container.
    *-Refresh to get the reference of        -*
    *-create 'MESSAGE' object for attachment -*
      swc_refresh_object lo_message.
    *-Get Key of new object -*
      swc_get_object_key lo_message lv_message_key.
    *-Now we have attachment as a business object instance.      -*
    *-We can now attach it to our main business object instance. -*
    *-Create main BO object_a -*
      data: lo_is_object_a type sibflporb.
      lo_is_object_a-instid = p_bo_id.
      lo_is_object_a-typeid = p_botype.
      lo_is_object_a-catid  = 'BO'.
    *-Create attachment BO object_b -*
      data: lo_is_object_b type sibflporb.
      lo_is_object_b-instid = lv_message_key.
      lo_is_object_b-typeid = p_docty.
      lo_is_object_b-catid  = 'BO'.
    *-TRY -*
      call method cl_binary_relation=>create_link
        exporting
          is_object_a            = lo_is_object_a
    *    IP_LOGSYS_A            =
          is_object_b            = lo_is_object_b
    *    IP_LOGSYS_B            =
          ip_reltype             = p_reltyp
    *    IP_PROPNAM             =
    *    I_PROPERTY             =
         importing
           ep_link_id             = tmp_oblguid16
    *    EO_PROPERTY            =
    endform.                    " create_url

  • Problems with attached documents in Mail and Docs To Go

    Hello everybody.
    I've found a problem with attached documents in Mail. In fact, if I click on attached documents with .doc (microsoft office word 97-2004) and files in .docx Office Open .xml, the iPad doesn't open them, also if I click in "Open with Docs To Go (which should support these files' format)".
    How can I do? There's an application or another way to open these files?
    Other Informations:
    Docs To Go version: 5.2.2

    Update the patch to the Sapgui.
    Regards,
    Ignacio.

  • Document Distribution with attached documents coming across in BIN format

    Hello all,
    I have 3 dist types defined in the system.  RML, RMA, and INT
    RMA sends to SAP Office and includes a link to the document defined in DMS and seems to work correctly.
    RML sends the document to SAP Office as an attachment but the attached documents always is in BIN format and cannot be opened by the application.
    INT sends to my external email but has the same problem as above, the attachment is always in a BIN format and cannot be opened.
    This works the same with several different applications in DMS, Word, Excel, Text Files, etc.
    Can anyone give me an idea what I may be missing in config that is keeping this from working correctly.  We are running SAP ECC 6.0
    Thanks,
    Bill

    Hi Bill,
    Please check the following customizing in your system:
    1) Please check you have maintained suitable length of syntax group for
    Windows NT. Please maintain it more than 20.
    Please proceed as follows to correct this entry:
    Run the tcode SPRO
    Implementation Guide for R/3 Customizing (IMG)
    Cross-Application Components
      Document Management System
       Document Distribution
        General Settings
         Platform-Independent File Names
          Maintain file names and file paths across all clients
           Syntax group definition
    2) Please check the 'File processing' value for distribution type 'INT'.
    Please set it as '2'.
    Further please check note 355048 and as mentioned your settings in transaction DC30 for the workstation applications.
    Best regards,
    Christoph

  • APP - F110 - Payment of multiple invoices with different document type

    Hi
    Vendor X has been assigned with payment method same with two document types. One document type got 4 invoices and other document type got 1 invoice.
    During payment run (F110) for each document type, the system picked up both the document type but listed them as two separate lines in the proposal list. When we process the payment the system also created two payment documents.
    Is there a way for these two document types to be processed as a single proposal and payment.
    Any suggestion how can we process these invoices together in a single proposal/payment document?
    Thanks & Regards,
    Sam

    Thanks

  • Report showig all invoices with payment block

    Hello Colleagues,
    Can someone please tell me if there's a report displaying payment blocks on invoices ? Payment blocks placed manually by AP people and payment blocks placed by the workflow ?
    Thanks as ever!

    Hello Antoinette,
    One additional thing to consider is that they can use the dynamic list selection to only propose all open invoices with a payment block and save this as a variant.  Then the layout I mentioned below could also be saved as a user specific layout and saved as part of the selection variant.
    I would understand, however, that the query would make sense if they want to see specific things on the output and want to select based on a predefined list of selection criteria.
    Hope things work out.

  • MM Invoice with FI documents

    Hi All,
    In MIRO, we display Logistic Invoice which posted, if we click on follown-Documents, system will show all FI documents number.
    Could anybody tell me from which table system store, i.e MM invoice along with FI documents number.
    Regards,
    Venkat

    Hello Venkat,
    RBKP and RSEG tables store data related to MM Invoice (created by MIRO transaction).
    In BKPF table, for field AWKEY, if you put concatenated the values from RBKP-BELNR (Invoice Doc. Number) and RBKP-GJAHR (Fiscal Year), you will be able to get the respective FI document.
    Hope it helps you!
    Regards,
    Daniel.

  • Automatical creation of activities with attached document

    Hello,
    I want to create activities with an attached document, but that should work automatically. I just have the bp-numbers for creating the new activities , and for attaching the documents, the documentname is equal the bp-number. Now I should now how to do this in crm ?
    Are there some programms/bapis etc.
    Thanks and best regards
    Gerd

    Hi
    First configure Release Statergy such that All PR's generated from MRP should be converted into PO  with out Release Procedure  and Other manually generated PRs should be converted in to PO after Release Procedure only......( For that you have to create Doc.type as a one charecter....Table: CEBAN...Field: BSART  and MRP generated PRs should have one document type and Other manually created PRs should have diff. Doc. type)
    Then follow the below steps..
    1)In Material Master,Purchasing view....you maintain Purchasing Group and Check Auto PO Check Box.
    2)In Vendor Master,Purchasing Date view Maintain Purchasing group and check Auto PO Check Box..
    3)Maintain Proper  PIR with Valid Conditions
    Then after creation of PR from MRP...assign source for the PRs IN ME57..
    If you configure release Statergy  such that PRs generated thro MRP need not under go Release procedure ....then go to T.Code: ME59  and convert all PRs in to PO...
    In this way without having any user exit you can solve your problem...We are doing in this way only..
    Reward if useful
    Regards
    S.Baskaran

  • Archive Link problem with redundant document names

    Hi all,
    I have a tricky problem in archive link. I would like to attach some different documents to an HR/PD Organisation unit ( objekttyp pdotype_o )
    All customizing works fine but the problem is, all documents attached to one busines object ID have the same name ( in this case objectnumber.pdf)
    I am not lucky with this issue because  the users must be able to see all documents ( via document finder ) attached to the org. unit  and all what the users get, is a list of  one or more documents with exactly the same name.
    In some cases this are about 10 different documents and this issue is a very bad solution because users have to open all attached docs to recognize which one they need.
    During the import/check in of the documents via transaction OAAD and OAWD, SAP renames the original document name.pdf  into the related object ID.pdf and there is no way to rerename it or influence this process.
    I tried to use some scan software with SAP interface but unfort. with the same result because software of this kind use the archive link interface too and cannot influence the process of check in and rename.
    Has anybody an idea ( third party software, customer development or something like this ) to prevent this problem and give me the possibility to stay with the original document names or change it after check in?
    Thank you in advance
    Rayko

    How you fix this problem?
    I'm with the same problem. Could you help me please?
    Edited by: broullon on Jul 16, 2009 5:31 PM

  • Problems with attach documents in solman

    Hi Experts,
    I need to attached to my organizational business structure (in Tx SOLAR01 and SOLAR02) many templates documents of functional and technical specifications and have a problem with that.
    When I make the solar_project_admin transaction and click onto project template buttom to create a personal document the system gives me a warning message:
    "Documentation types in SAP namespace cannot be copied
    Message no. SPROJECT371
    Diagnosis
    You tried to copy documentation types in the SAP namespace into the template. This is not possible.
    System Response
    The documentation types were not copied."
    Could you please tell me how can I create my own document (SOLAR01 Y SOLAR02) to attached onto the structure?.
    Tks!
    Ignacio.

    Update the patch to the Sapgui.
    Regards,
    Ignacio.

  • Link check with clearing documents

    I have a situation where, users cleared vendor manually.
    Now when we look at the cleared line item from FBL1N and select the payment to look at the check details, It doesn’t allow me to see check details from there. “It says No check information exist for this line item”
    What should I do in order to link the link the check with that payment so that I can see even check info for line items from FBL1N?

    Hi,
    I am sure you cannot print checks using transaction code F-44. This transaction is used only for clearing the Vendor open items either to a GL Account or debits and credits in a Vendor account.
    I guess, user would have used F-44 and posted the amount to the Bank account or Bank clearing account. This will not update even the check register. May be the check is written manually.
    The solution to resolve this is to reverse the document created using F-44 using transaction code FBRA (reverse and reset) and post a new document using transaction code F-58. This will update the check register as well as tracking of documents clearing for the payment.
    Thanks
    Murali.

  • Naming, arranging linked photos with Excel document info

    Hello!
    I am attempting to make a newspaper layout consisting for graduates from our local high schools. I have been provided a disc with literally hundreds of pictures. The photos in the layout need to be arranged in alphabetical order, but the file names are non-sequential numbers that are not in order. However, I have been given an Excel document that has the file name with the name of the student in the cell next to it.
    Is it possible to somehow use this data in the Excel document to properly arrange the images like I need them in the layout? If it has to be done manually, that's fine, but I thought it would be worth a shot to ask. We have InDesign CS3 and CS4.
    Thank you!

    It's probably easier to solve this outside of InDesign.
    Construct a spreadsheet with string contatenation that produces commands to rename the files. Under Windows:
    RENAME 1234.JPG F4332.JPG
    or under Mac OS X:
    mv 1234.jpg f4332.jpg
    And then save the results to a .BAT file (Windows) or a .sh file (OSX) and then execute it (filename.bat or "sh file.sh").
    Then all your files are renamed and you should be able to autoplace them in InDesign.
    Or you could use Data Merge.

  • Simple report list output sent as attachment thru email

    Hi All,
    Here's my task : I need to schedule a bi-weekly report that obviously runs in the background and produces output. From that output, I want to capture (with no manual intervention) the list output to an attachment and email a recipient. I've looked over code snippets and understand most of the <b>LIST</b> functions, but most deal with uploading a file from the frontend, which I do not want. Any ideas? Thx in advance.
    Jim

    Hi
    see the sample report to send mail as attachement
    modify it as per your requirement
    Mailing with Attachment by ABAP Coding  
    Refer this link:
    Mail with attachment.
    FORM send_list_to_basis .
      DATA: w_path      LIKE rlgrap OCCURS 0 WITH HEADER LINE,
            lt_index    TYPE sy-tabix,
            doc_type(3) TYPE c,
            descr       LIKE it_objpack_basis-obj_descr,
            temp_data   LIKE w_path,
            temp1       TYPE string,
            tab_lines   TYPE i,
            langu(15)   TYPE c,
            expirydate  TYPE so_obj_edt,
            L_FILE1(100).
      CONCATENATE 'C:\' sy-repid '_' sy-datum '.XLS' INTO L_FILE1.
      W_PATH-FILENAME = L_FILE1.
      APPEND w_path.
      CLEAR w_path.
      wa_doc_chng-obj_descr  = 'User List not logged on for 180 days'.
      wa_doc_chng-obj_langu  = 'E'.
      wa_doc_chng-obj_expdat = sy-datum.
      CLEAR w_subject.
      CONCATENATE 'Please find attached document with list of users'
                  'not logged on for 180 days for client' sy-mandt
                  INTO w_subject SEPARATED BY space.
      it_objtxt_basis-line = w_subject.
      APPEND it_objtxt_basis.
      CLEAR it_objtxt_basis.
      it_objtxt_basis-line = text-004.
      APPEND it_objtxt_basis.
      CLEAR it_objtxt_basis.
      CLEAR w_tab_line.
      DESCRIBE TABLE it_objtxt_basis LINES w_tab_line.
      READ TABLE it_objtxt_basis INDEX w_tab_line  INTO l_cline.
      wa_doc_chng-doc_size =
       ( w_tab_line - 1 ) * 255 + STRLEN( l_cline ).
      CLEAR it_objpack_basis-transf_bin.
      it_objpack_basis-head_start = 1.
      it_objpack_basis-head_num   = 0.
      it_objpack_basis-body_start = 1.
      it_objpack_basis-body_num   = w_tab_line.
      it_objpack_basis-doc_type   = 'RAW'.
      APPEND it_objpack_basis.
      CLEAR it_objpack_basis.
      LOOP AT w_path.
        temp1 = w_path.
        descr = w_path.
        CALL FUNCTION 'STRING_REVERSE'
          EXPORTING
            string  = descr
            lang    = 'E'
          IMPORTING
            rstring = descr.
        CALL FUNCTION 'STRING_SPLIT'
          EXPORTING
            delimiter = '\'
            string    = descr
          IMPORTING
            head      = descr
            tail      = temp_data.
        CALL FUNCTION 'STRING_REVERSE'
          EXPORTING
            string  = descr
            lang    = 'E'
          IMPORTING
            rstring = descr.
        CALL FUNCTION 'STRING_SPLIT'
          EXPORTING
            delimiter = '.'
            string    = descr
          IMPORTING
            head      = temp_data
            tail      = doc_type.
        CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            filename      = temp1
            filetype      = 'BIN'
            header_length = 0
            read_by_line  = 'X'
            replacement   = '#'
          TABLES
            data_tab      = it_upload.
        DESCRIBE TABLE it_upload LINES tab_lines.
        DESCRIBE TABLE it_objbin_basis LINES lt_index.
        lt_index = lt_index + 1.
        LOOP AT it_upload.
          wa_objbin_basis-line = it_upload-line.
          APPEND wa_objbin_basis TO it_objbin_basis.
          CLEAR wa_objbin_basis.
        ENDLOOP.
        it_objpack_basis-transf_bin = 'X'.
        it_objpack_basis-head_start = 0.
        it_objpack_basis-head_num   = 0.
        it_objpack_basis-body_start = lt_index.
        it_objpack_basis-body_num   = tab_lines.
        it_objpack_basis-doc_type   = doc_type.
        it_objpack_basis-obj_descr  = descr.
        it_objpack_basis-doc_size   = tab_lines * 255.
        APPEND it_objpack_basis.
        CLEAR it_objpack_basis.
      ENDLOOP.
      it_reclist_basis-receiver = '[email protected]'.
      it_reclist_basis-rec_type = 'U'.
      APPEND it_reclist_basis.
      CLEAR it_reclist_basis.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = wa_doc_chng
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = it_objpack_basis
          contents_txt               = it_objtxt_basis
          contents_bin               = it_objbin_basis
          receivers                  = it_reclist_basis
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
      IF sy-subrc EQ 0.
        SUBMIT rsconn01 WITH mode = 'INT' AND RETURN.
      ENDIF.
    ENDFORM.                    " send_list_to_basis
    Reward points if useful
    Regards
    Anji

  • Attached documents cause Mail to quit

    A week ago Mail stated to quit unexpectedly every time I tried to open an email with attached documents, or to send one with attachments. I tried setting up another user and the same email account works fine for the new user. I am not certain if this is significant, but I notice that when in the new user when I go to Mail > Preferences I see the account listed and highlighted, but in my usual user doing the same thing I see no account listed- although when i hit the Edit button in that window it brings up my account details. Any ideas?

    When an application crashes (i.e. quits unexpectedly), the system writes information about the state of the application at the moment of the crash to a log file. That information is called a crash report and makes troubleshooting easier. In order to find and post the relevant part of the crash report here, proceed as follows:
    1. Open ~/Library/Logs/CrashReporter/Mail.crash.log. The whole crash log appears in a Console window (you can also open that file with any text editor). It may contain many crash reports. We only want the latest, which is located at the bottom of the file.
    2. Look for a line that begins with “Date/Time:” as close to the bottom as possible, and another that says “Thread N Crashed:”, where N is a number. Select everything from the “Date/Time:” line to the lines immediately following “Thread N Crashed:”. Copy that text and paste it in your post. Do not post the whole crash log, and do not include anything beyond the lines immediately following “Thread N Crashed:” either, just the relevant part.
    Take a look at the following thread for examples of what a crash report looks like:
    http://discussions.apple.com/thread.jspa?threadID=466701
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder, i.e. ~/Library is the Library folder within the user’s home folder.

  • Attaching document on hierarchy nodes

    Hello,
    I have problems with attaching documents on hierarchy nodes. I have created a hierarchy with only postable nodes. Now it is possible to attach documents on nodes, but here I don't see any practicable option for the users to attach the document on only a node, because when they select a node and want to attach a document, in the selection of the document is this node and all nodes and leafs beneath. So the document would be shown on all nodes beneath.
    Is here a good option for the users to attach documents?
    I also tried to disable the resolve of hierarchy nodes as described in note 627907. Now it is no problem to attach a document on a node, but in the query the document-links aren't shown any more.
    Has anybody any experience with this?
    Thank you in advance for your help.
    Alex

    Hi,
    Have you set the "Display documents for masterdata/data" in Web Application Designer?
    This is a setting you make on your Table-Item.
    Silje

Maybe you are looking for

  • Ipad 2 iOS 6 Update App Question

    Hi, i just downloaded the new iOS 6 for my ipad 2 and i have a question...why doesn't it have youtube anymore as an app that you can't get rid of? i downloaded the youtube app, that's new, but it's only for ipod. how come the youtube app is still on

  • HT201269 how do i get my notes onto my new phone? and my apps!!

    how do i get my apps and notes from my old pnone to my new one?

  • Footprint of J2ME applications using an emulator

    Is there a way to find out the total footprint of a J2ME application? Thus it should calculate the actual maximum required amount of memory by a certain application.

  • Which Java API's must a Expert Java Developer know thoroughly ?

    There are more than 3000 classes in Java how can Java Developer remember or be aware of most of them if he wants to become a Core Java Expert. Concepts like Object Orientation, Java Programming Syntax, Operators, Flow Control, Exceptions, Assertions,

  • Make the help feature better

    ...by which I mean: FASTER - in the olden days of CS3, I could click on help, type in a query, press return and have the answer right there in a few seconds. Now the help system has grown so ridiculously bloated that it takes about a minute just to l