External link for documentation in Query

Hi,
in a query I have trained the display document link for Date and Masterdata. When I select the link I can visualize the content of the document created in BW. 
I have the necessity, instead, that when I call the link of the document from the query it has directly or indirectly aim also (double jump) to an external link where the documentation there is (example: in the document contain link: http://www.lg.com/). It is possible?
Thanks.

Hi Kams,
I have not made sense of well perhaps. In the property of the query I am able setting the visualization of the in partnership documentation to every InfoObject. On Click the "leaflet" opens in the web all documents associated for the InfoObject. My problem is that the documentation resides on an external link to BW and therefore I want to make to aim not to the Repository SAP but to an iperlink that open the documentation of that object. Is it possible?
If I use the RRI, in the context menu opens only on the characteristics in drill down and not on all those contained in the query as instead it happens if imposes the visualization of the documentation.
Thanks.
Best Regards.
Charly

Similar Messages

  • Getting message :Can not implement column link for this detailed query.converting to group query.

    Hi Team,
    I have build two query report.
    Q1 qury:
    SELECT   hp.party_name "CUSTOMER_NAME",
             hl.address1,
             hl.address2,
             hl.address3,
             hl.city,
             hl.state,
             hl.postal_code,
             hca.account_number "CUSTOMER_CODE",
             aps.cash_receipt_id,
             hcsu.LOCATION "LOCATION",                                                                                                 -- Added by Kanchan
             rct.trx_number "INVOICE_NUMBER",
             --ar.receipt_number,
             HOU.Name "Company Name",
             rbs.NAME "SOURCE_NAME",
             aps.GL_DATE "GL DATE",
             rct.trx_date "INVOICE_DATE",
             --SUBSTR(TRUNC(rct.trx_date),4) "INVOICE_PERIOD",
             rct.term_due_date "DUE_DATE",
             arc.NAME "COLLECTOR_NAME",
             rctl.line_number "SR_NO",
             DECODE (rctl.memo_line_id, NULL, rctt.description, decode( rctt.description, arml.description, rctt.description , rctt.description || ' ' || CHR (10) || arml.description))  "DESCRIPTION",
              rctl.uom_code "UNIT_OF_MEASURE",
             rctl.quantity_invoiced "QUANTITY",
             rctl.unit_selling_price "UNIT_RATE",
             ROUND (rctl.extended_amount) "AMOUNT",
             arn.text "COMMENTS",
             rct.customer_trx_id "TRX_ID",
             rct.org_id "ORG_ID",
             rct.INVOICE_CURRENCY_CODE,
             hca.cust_account_id "CUSTOMER_ID"
        FROM ra_customer_trx_all rct,
             ra_cust_trx_types_all rctt,
             ar_payment_schedules_all aps,
    --         ar_receivable_applications_all acra,
    --         ar_cash_receipts_all ar,
             ra_batch_sources_all rbs,
             hz_cust_site_uses_all hcsu,
             hz_cust_acct_sites_all hcas,
             hz_party_sites hps,
             hz_cust_accounts hca,
             hr_all_organization_units HOU,
             hz_parties hp,
             hz_locations hl,
             ra_customer_trx_lines_all rctl,
             ar_memo_lines_all_tl arml,
             hz_customer_profiles hcp,
             ar_collectors arc,
             ar_notes arn
       WHERE rct.cust_trx_type_id = rctt.cust_trx_type_id
         AND rctt.TYPE = 'INV'
         AND rct.complete_flag = 'Y'
         AND rct.batch_source_id = rbs.batch_source_id
    --     AND acra.cash_receipt_id = ar.cash_receipt_id
    --     and acra.applied_customer_trx_id = rct.customer_trx_id
         AND rct.org_id = rbs.org_id
         and hou.organization_id=rct.LEGAL_ENTITY_ID
         AND rct.bill_to_customer_id = hca.cust_account_id
         AND aps.customer_trx_id = rct.customer_trx_id
         AND hca.party_id = hp.party_id
         AND rct.bill_to_site_use_id = hcsu.site_use_id
         AND rct.org_id = hcsu.org_id
         AND hcsu.cust_acct_site_id = hcas.cust_acct_site_id
         AND hcsu.org_id = hcas.org_id
         AND hcas.party_site_id = hps.party_site_id
         AND hps.location_id = hl.location_id
         AND rct.customer_trx_id = rctl.customer_trx_id
         AND rct.org_id = rctt.org_id
         AND rctt.org_id = rctl.org_id
         AND rctl.memo_line_id = arml.memo_line_id(+)
         AND rctl.line_type = 'LINE'
         AND rct.bill_to_site_use_id = hcp.site_use_id(+)
         AND hcp.collector_id = arc.collector_id(+)
         AND rct.customer_trx_id = arn.customer_trx_id(+)
         AND Nvl(arn.note_id,0) = Nvl((SELECT MAX (note_id)
                              FROM ar_notes arnt
                             WHERE arnt.customer_trx_id = rct.customer_trx_id),0)
         AND rct.org_id                 = :p_org_id
      --AND rct.batch_source_id = :p_batch_src_id
    AND TRUNC(aps.gl_date)  BETWEEN TRUNC(:p_trx_date_low)  AND TRUNC(:p_trx_date_high)
    --AND ar.receipt_number='660754'
      --and hca.cust_account_id=937288
    and hca.cust_account_id=5436   --291784      ----5637 --5436
    -- and rct.trx_number= 15762455 --15195934   --15044822
    -- AND hca.account_number ='NDDGSP035'    
    &LP_TRX_NO
    &LP_CUST_NO
    ORDER BY hca.account_number,
             rct.trx_date,
             rctl.line_number
    and Q2 query :
    select  customer_id,
            NVL(receipt_amount+receipt_amount2,0)Payment
       from
    SELECT   distinct hca.cust_account_id "CUSTOMER_ID" ,
                            (SELECT DISTINCT
                            --e.customer_id CUST_ID,
                            SUM((a.amount) * NVL (a.exchange_rate, 1)) Receipt_Amount
                            FROM ar_cash_receipts_all a,
                            ar_cash_receipt_history_all b,
                            ar_receipt_classes d,
                            ar_customers e,
                            hz_party_sites hzps,
                            xx_ar_addresses_v g,
                            hz_cust_acct_sites_all h,
                            hz_cust_site_uses_all f,
                            hr_organization_units_v i
                            WHERE b.cash_receipt_id = a.cash_receipt_id
                            AND a.org_id = i.organization_id
                            AND a.receipt_method_id = d.receipt_class_id
                            AND e.customer_id=g.customer_id
                            AND hzps.party_site_id = h.party_site_id
                            AND h.party_site_id = g.party_site_id
                            AND f.site_use_code = 'BILL_TO'
                            AND f.cust_acct_site_id = h.cust_acct_site_id
                            AND g.language_description = 'American English'
                            AND b.first_posted_record_flag = ('Y')
                            --and e.customer_id=937288
                            and e.customer_id= hca.cust_account_id --5436 --291784  --5436
                            AND f.site_use_id = a.customer_site_use_id
                            AND E.CUSTOMER_ID = A.PAY_FROM_CUSTOMER          ---- ADDED
                             AND TRUNC (b.gl_date) BETWEEN TRUNC(:p_trx_date_low)  AND TRUNC(:p_trx_date_high)
                            AND a.org_id = :p_org_id) Receipt_amount,
                            ( SELECT
                            distinct --e.customer_id CUST_ID,                --SMAN_10OCT2013_Added distinct_Requested by Biju
                            SUM((-1 * a.amount) * NVL (a.exchange_rate, 1)) Receipt_AMOUNT
                            FROM ar_cash_receipts_all a,
                            ar_cash_receipt_history_all b,
                            ar_receipt_classes d,
                            xx_ar_addresses_v g,
                            ar_customers e,
                            hz_party_sites hzps,
                            hz_cust_acct_sites_all h,
                            hz_cust_site_uses_all f,
                            hr_organization_units_v i
                            WHERE b.cash_receipt_id = a.cash_receipt_id
                            AND a.org_id = i.organization_id
                            AND a.receipt_method_id = d.receipt_class_id
                            AND e.customer_id=g.customer_id
                            AND hzps.party_site_id = h.party_site_id
                            AND h.party_site_id = g.party_site_id
                            AND f.site_use_code = 'BILL_TO'
                            AND f.cust_acct_site_id = h.cust_acct_site_id
                            AND g.language_description = 'American English'
                            AND a.status IN ('NSF', 'REV', 'STOP')
                            AND a.reversal_date IS NOT NULL
                            AND b.status = 'REVERSED'
                            AND E.CUSTOMER_ID = A.PAY_FROM_CUSTOMER          ---- ADDED
                            AND f.site_use_id = a.customer_site_use_id
                            --and e.customer_id=937288
                            AND e.customer_id= hca.cust_account_id --5436 --291784 --
                            AND TRUNC (b.gl_date) BETWEEN TRUNC(:p_trx_date_low)  AND TRUNC(:p_trx_date_high)
                            AND a.org_id = :p_org_id
                            ) receipt_amount2
                   FROM ra_customer_trx_all rct,
             ra_cust_trx_types_all rctt,
             ar_payment_schedules_all aps,
             ra_batch_sources_all rbs,
             hz_cust_site_uses_all hcsu,
             hz_cust_acct_sites_all hcas,
             hz_party_sites hps,
             hz_cust_accounts hca,
             hr_all_organization_units HOU,
             hz_parties hp,
             hz_locations hl,
             ra_customer_trx_lines_all rctl,
             ar_memo_lines_all_tl arml,
             hz_customer_profiles hcp,
             ar_collectors arc,
             ar_notes arn
       WHERE rct.cust_trx_type_id = rctt.cust_trx_type_id
         AND rctt.TYPE = 'INV'
         AND rct.complete_flag = 'Y'
         AND rct.batch_source_id = rbs.batch_source_id
         AND rct.org_id = rbs.org_id
         and hou.organization_id=rct.LEGAL_ENTITY_ID
         AND rct.bill_to_customer_id = hca.cust_account_id
         AND aps.customer_trx_id = rct.customer_trx_id
         AND hca.party_id = hp.party_id
         AND rct.bill_to_site_use_id = hcsu.site_use_id
         AND rct.org_id = hcsu.org_id
         AND hcsu.cust_acct_site_id = hcas.cust_acct_site_id
         AND hcsu.org_id = hcas.org_id
         AND hcas.party_site_id = hps.party_site_id
         AND hps.location_id = hl.location_id
         AND rct.customer_trx_id = rctl.customer_trx_id
         AND rct.org_id = rctt.org_id
         AND rctt.org_id = rctl.org_id
         AND rctl.memo_line_id = arml.memo_line_id(+)
         AND rctl.line_type = 'LINE'
         AND rct.bill_to_site_use_id = hcp.site_use_id(+)
         AND hcp.collector_id = arc.collector_id(+)
         --and hca.cust_account_id=5436 --291741--5436
         AND rct.customer_trx_id = arn.customer_trx_id(+)
         AND Nvl(arn.note_id,0) = Nvl((SELECT MAX (note_id)
                              FROM ar_notes arnt
                             WHERE arnt.customer_trx_id = rct.customer_trx_id),0)
         AND rct.org_id                 = :p_org_id
    AND TRUNC(aps.gl_date)  BETWEEN TRUNC(:p_trx_date_low)  AND TRUNC(:p_trx_date_high)
    So here i am linking Q1 query with Q2 by Customer_ID data link. But after doing the same , i am getting message. Moreover, when i am running my report , my q2 query runs for all customer_id , which i already hardcoded in  Q1 query.
    Please help on this issue.
    Regards
    Sachin

    Dear Siva,
    Can yoiu please run this code in sql directly , and paste here the results?
    You please try as below syntax
    SELECT SYSDATE,
    CASE
    WHEN TO_CHAR (SYSDATE, 'DAY') = 'MONDAY' THEN 'IT IS MONDAY'
    WHEN TO_CHAR (SYSDATE, 'DAY') = 'TUESDAY' THEN 'IT IS TUESDAY'
    END
    FROM DUAL
    Edited by: O.Developer on Jan 7, 2013 8:54 AM

  • No external Linking for a animated gif

    Hi there,
    i want to paste an animated gif into my iWeb webpage with an enternal link - but there is no option to do this!
    I already tried to lay over a rectangle, because here it is possible to link to an external page.
    The prob here is, that after publishing the page, no linking is available.
    Can somebody help me?
    Thx,
    M.

    M:
    Welcome to the Apple Discussions. How did you configure the rectangle. I believe the object must have a color and some opacity. Set the color to the default white and the opacity to 1%. Then publish again and give it a try. Be sure it's in front of the gif and not behind.
    I found it advantageous to publish to a folder on my desktop while I'm testing my site as it's so much quicker to publish, check, edit and republish. Then when I've got it right I publish to .Mac.
    Do you Twango?

  • Clicking on External Link in Safari Opens New Tab

    I think it has to do with one of the preferences I've set within Safari but I just can't put a finger on which one.
    Basically, I reinstalled Yosemite 10.10.3 on my MacBook Pro 13" (Late 2013) about a week ago. And then I tinkered with Safari preferences.
    Since then, whenever I click on an external link, for example, an email address, Safari opens a New Tab instead of launching my Mail app.
    Not sure how to do undo this.

    From the Mail menu bar, select
              Mail ▹ Preferences... ▹ General ▹ Default email reader: Mail
    If you don't use Mail, you may be able to set the preference in the mail client you do use.

  • KM Search and External Link Question

    Q1: I have created a Meta Data Properties for a Folder, so any document Created in this folder will require these data to be entered, I want to put a Filter Option on the this folder Iview where user can filter data on the basis on Meta data Property or Search document based on Multiple Meta Data Property using TREX or any other search.
    Q2. If I create a External link to a document in KM folder, will TREX search in that document.
    Thanks in Advance
    Jagraj Dhillon

    Hi Jagraj,
    Q1: You have to define the Meta Property as Indexable than you can use TREX for searching for documents with the specific value of this property. Of cause you can as well filter the documents when displaying the content of the folder. In this case you have to implement a resource list filter.
    Q2: TREX is able to index links as well.
    The question is it you really mean External Links for referencing documents in KM folders because normaly you do this by an internal link. A external link in most cases is a reference outside the portal. Nevertheless see http://help.sap.com/saphelp_nw70/helpdata/en/73/66c090acf611d5993700508b6b8b11/frameset.htm so you can see you can define a parameter indexContentOfExternalLink and you can define a parameter IndexInternalLinks. In this case the index will contain as well the content of the links.
    Best Regards
    Frank

  • IBN live app download link for C6-01?

    Anyone from INDIA who can give of a download link for IBNlive mobile app link? It had been installed by default and I accidentally removed it. Visiting Nokia store does not have this app anymore. I did visit m.IBNlive.com/app . This directs me to Nokia store which in turn states the app is currently not available. The problem seems to be with belle. It is wellknown that the said app works well with belle, but it has been removed from store for belle. If you select Anna as your OS it available download. Can Anyone provide me an external link for this app?
    In Love With My C6-01:Now running on Nokia Belle!
    Solved!
    Go to Solution.

    Upon N8 Belle it only works in "Portrait mode" and you have to longpress upon Menu key to reveal open applications to close as "Exit" button doesn't work, which maybe sufficient reason to warrant not being made available to Symbian Belle devices!
    Happy to have helped forum with a Support Ratio = 42.5

  • Failed to lookup External Link

    Hi,
    I just upgraded to EP7 SP12 and deployed the ESS BP.  When I try to preview Content Administration -> Portal Content -> Content Provided by SAP -> Employee Self Service -> iViews -> Benefits and Payment -> Benefits Participation, we see the below error.
    com.sapportals.portal.prt.runtime.PortalRuntimeException: Failed to lookup External Link for: portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.iviews/com.sap.pct.erp.ess.benefits_payment/com.sap.pct.erp.ess.benparticipation
    Any one have any ideas?
    Your help is greatly appreciated.
    Regards,
    Rick

    I did some more research. It seems like we are having the same problem on another portal server. So I don't think I caused the problem. This is coming from the standard business planning pages like planning wizard, planning modeler, etc.

  • Looking for documentation of scheduling agreement

    Dear friends,
    Please kindly let me know if you know where to find the documentation of business process documentation of Scheduling agreement(SA)..
    Also,,Can a PO created reference the SA?
    As I realized that SA could be shown on MD04 a after source list to it..if I am able to create a PO reference SA, Could PO replace SA on MD04?
    Your advice will be deeply appreciated,
    Thanks,
    Linda

    Hi
    Refer the below link for documentation on SA
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/75/ee1fa755c811d189900000e8322d00/frameset.htm
    Check the below link also
    http://www.sap-img.com/materials/what-is-outline-and-scheduling-agreement.htm
    Thanks !
    E.Avudaiappan

  • Is there a limit for external links in TOC using RoboHelp 9.2?

    Hi,
    This is my first time posting to the Adobe forums. Here is my problem.
    I have been maintaining help projects using RoboHelp 9.2 for quite some time now to generate WebHelp. I now have four large projects that are linked through a URL in each project's TOC.  Example: I have projects A B C D. In A's TOC, I include a link to B C D default topics. In B's TOC, I include a link to A C D default topics. And so on ... The fourth project (D) is new.
    The problem I've encountered is with the image appearing in the TOC next to the external link entry for project D in the generated WebHelp.  The image showing up for project D is different from the other two, even though the properties for that page are exactly the same as the other two.  This happens in all three remaining projects (A B C). Even when I change the image (from the image index), the same image (i.e. the standard image for a topic page) appears regardless.
    What should appear in all cases is image 13.gif.
    (I'll have to figure out later why 19.gif is selected in the properties dialog, whereas 13.gif is actually showing up in WebHelp. Doh.)
    Any ideas?
    thanks,
    denise

    karl219 wrote:
    1-Time machine seems to be coming up often in the discussions.If my backup is on my external hard drive, why would space be taken up on my macbook hard drive?
    Read the first extract for the definition of backup snapshots and how they are handled by the OS.
    2-Shoud I delete older backups? If for example, all I need from Time Machine is the latest backup done today, can I get rid of the 2+ yeras of backups, or do they not take up that much space?
    No.  Time Machine should be on a separate HDD and will take care of deleting backups when necessary on that drive.
    3-Back to the issue, considering I don't have access to a an apple store for the next few months, what is my best plan of action?
    I would consider installing a larger internal HDD.  Capacities to 1 TB are now available.
    4-I am considering buying a new macbook 15inch, and get more space, however, I'm scared that the same problem will happen again. Is this common on all macs? Will using Time Machine to "Restore" my backups bring along the issues as well?
    All Macs using Time Machine will experience the same conditions.  The problem is that many users do not under stand what 'Other' is and that leads to confusion.  There are many essential OS files in that category that should not be touched as well as some user files.  The issue is not to reduce 'Other' as such, but reduce the total amount of data on the HDD if space is becoming a premium.
    Please read these two extracts:
    http://pondini.org/OSX/LionStorage.html
    http://pondini.org/OSX/DiskSpace.html
    Ciao.

  • BI-IP How to display  doc/comments links for InfoProviders in other Query.

    Hi All,
    We are using standard document feature to store document/comment about the plan data shown in the planning query. Relevant characteristics have the property 'characteristics is document attrib' turned on/selected for this purpose.
    Finally the comments attaching absolutely correct.  But  I can`t  display icon- "Document links for InfoProvider " in the cell and attached document  in any another query. Besides that query, where this comment was attached.
    This problem is described in SAP Library ( Link:[http://help.sap.com/saphelp_sem40bw/helpdata/EN/a6/607e3ddf01910fe10000000a114084/frameset.htm]).
    Please, help me delete dependence of relevance in the query.

    Hi,
    if the documents don't appear in other queries, then the characteristic values that the documents are linked to are most likely different. Check the values in RSA1 > Documents.
    Also understand that in 7.0 there are now two possible document repositories:
    http://help.sap.com/saphelp_nw70/helpdata/en/42/594e3c6bf4233fe10000000a114084/frameset.htm
    A migration might be required for historical documents:
    http://help.sap.com/saphelp_nw70/helpdata/en/43/c1475079642ec5e10000000a11466f/frameset.htm
    Regards,
    Marc
    SAP NetWeaver RIG

  • Link between documentation for chars value and chars

    Hi,
    we need to find out sap transaction or report for link between documentation of chars value and chars.
    we know for specific chars through CT04 and going to VALUES sub-tab then selecting perticular chars value and clicking on the documentation for value.

    Go to transaction CT10 and select display option 'Allowed values'. You will have the characteristics along with their values.

  • External links in Business package for web editing

    Hello,
    We are testing Busines package for web editing (BPfWE) for 2 requirements: to show web content in portal and also to show external links in portal.
    But we have problem with the latter (external links). Does anyone know how to add external links (web pages from different server) to BPfWE so we could browse internal and external web pages at one location? The problem is, that I can create new external link in Knowledge management, but unlike other documents, I can't publish it to BPfWE.
    So far, we've found 2 solutions:
    1. Separate BPfWE content (use it for internal pages) and classic Knowledge management content (use it for external pages) with different navigation tabs.
    2. Create HTML document with javascript to open external web page and publish it with BPfWE.
    But both solutions are quite strange and I still hope that external links could be shown in BPfWE as well and in some easier way. Could someone help?
    Thank you,
      Marek Jenej

    Hi Russel,
    There is a short description in the portal content studio catalog you might have seen already. Some screens have been added recently, the planed presentation is delayed for some technical reasons, so please use the following links meanwhile.
    English presentation (link expires July, 10th):
    http://sapmats-de.sap-ag.de/download/download.cgi?id=W3MUIX6K0852QVVBQO8KUPVRSIE4OCXSJT7MOYYTAKITJ4TJ1A
    German presentation (link expires July, 10th)::
    http://sapmats-de.sap-ag.de/download/download.cgi?id=AWJ14Y2T7R2T3KSWAPYM3JH6AW5FTAV2MRFOY01VP7GCGK41I3
    If you need some technical information, please let Martin or me know, as we are the main contact persons for this package (please check our business cards for mail/phone details).
    Please not that this is not a SAP "product", but a ready made consulting solution offered by SAP Consulting Germany. If you are interested in this package, let's discuss details together with SAP Australia (from your flag I suppose you are located in Australia).
    Kind regards,
    Bernd

  • Disable warning dialogs for external links in PDF?

    Greetings. I'm at the final stages of an interactive PDF and during the review cycle, the client is noticing warning boxes each time they open a link to an external web address. I'm fairly sure that if you are using a purchased Acrobat instead of the free reader, you have the option on the first external link to allow access for all links. But, if you are using the free reader, every time you activate a different external link, you must "allow" it to open (is this true?). Those messages are annoying the client (in spite of the wisdom of the security). Is there anything I can do on the creation side to disable those warnings?
    The document is being created using InDesign CS6 in OSX-10.9.5.
    Thanks!
    Tim

    The warnings can be disabled by configuring their security user preferences, which are the same in Acrobat and Reader. In Reader 11, look at:
    Edit > Preferences > Trust Manager > Internet Access from PDF Files outside the web browser > Change Settings

  • External directory database link for CME 4.0

    Is it possible to link CME 4.0 with external phone directory database?
    Thanks
    AD

    Yes, you can use an external database for your Corporate Directory on the ip phones, such as an enterprise LDAP directory. See the below link for more info:
    http://www.cisco.com/univercd/cc/td/doc/product/voice/c_callmg/4_0/sys_ad/4_0_1/ccmsys/a04ldap.htm
    Please rate helpful posts!

  • Change default behavior for opening external links

    Is there a Robohelp setting I can change so that, by default, external links in WebHelp open in a new tab or browser?

    Hi there
    Unfortunately there never has been to my knowledge.
    You may wish to make the suggestion so a future version can have it. (Link is in my sig)
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

Maybe you are looking for

  • Time Machine - New Computer

    Good morning, I've just bought a new Pro after my MacBook died. I had a 1TB hard drive to back up my MacBook using Time Machine. If I plug it into my new Pro will Time Machine create a new backup folder? I don't want to restore the data from the hard

  • ORA-20100: "The parameter is incorrect." on XE version

    error still exists - even when i uninstall .NET 2.0 Framework - i hava recent ODT for XE and XE database ( from OTN) on this same machine - this is a big problem for me because XE lacks of integrated JVM in database.

  • Stalls when trying to connect new site

    The bar moves about 1/2 way across the site I want to open then stalls.  Sometimes eventually it will open.  Otherwise I have force close and start agin. What could be causing this? I'm using 6.02 and 10.7.5

  • Itune.exe-Corrupt File

    I have an Ipod Nano which has been working fine for a long while. Today for no apparent reason, I got I got the following error message when I attached the ipod to the usb wire: "itune.exe-corrupt file ipod_control/iTune/iTunesPrefs is corrupt and un

  • Transactions tables (((urgent)))

    hi can we know the tables used by the transactions i have got the program name and then through se80 we can c the module pool but i want a diff way and i also dont want sql trace i want to know the tables used for co03. when i run this transaction co