Unix version of Reports 6i does not generate html

Hi: It generates xml but not html. Keeps asking for a file which is there. Any pointers?
Thanks
Prasad

Hello,
We need more information in order to help. How are you requesting the report (command line, URL, ?). What file is it asking for?
Regards,
The Oracle Reports Team --skw
null

Similar Messages

  • The timekeeping system we use does not like HTML 5 so what is the latest version of Firefox that does not use HTML 5?

    We have been told by our timekeeping system provider that the latest versions of FireFox, Chrome and IE are not compatible with their websites at this time. I was told that it was because of the use of HTML 5 by the more recent versions of these web browsers. I need to download the most recent version of FireFox that does not use HTML 5. Can anyone tell me which version this would be?

    It isn't "Timesheet Next Generation", is it? We had a thread on that here: [https://support.mozilla.org/questions/961306 Websites using php and mysql stopped sorting drop down lists properly starting last week. Did something change?]
    Unfortunately, HTML5 is a large specification with a lot of parts that has been implemented in pieces over the course of several years. It would be really helpful if your vendor could indicate what EXACTLY is not compatible and then it could be researched. Otherwise, you'd have to use trial and error. Either way, you would end up with an older browser that isn't safe to run on the internet. It could be time to consider other vendors...

  • Mailing the Report Output-Does not generating file name

    Dear Gurus,
           The below program fulfils the "mailing the report" requirement .it sends the out put as an attachment in XLS format.But one problem exists i.e.,it does not generate  filename.It gives the filename as ".XLS"(DOT XLS).
    What should be done that system generates a filename?
    *& Report  ZTESTMAIL                                                   *
    REPORT  ZTESTMAIL                               .
    tables: ekko.
    parameters: p_email type somlreci1-receiver.
    types: begin of t_ekpo,
    ebeln type ekpo-ebeln,
    ebelp type ekpo-ebelp,
    aedat type ekpo-aedat,
    matnr type ekpo-matnr,
    end of t_ekpo.
    data: it_ekpo type standard table of t_ekpo initial size 0,
    wa_ekpo type t_ekpo.
    types: begin of t_charekpo,
    ebeln(10) type c,
    ebelp(5) type c,
    aedat(8) type c,
    matnr(18) type c,
    end of t_charekpo.
    data: wa_charekpo type t_charekpo.
    data: it_message type standard table of solisti1 initial size 0
    with header line.
    data: it_attach type standard table of solisti1 initial size 0
    with header line.
    data: t_packing_list like sopcklsti1 occurs 0 with header line,
    t_contents like solisti1 occurs 0 with header line,
    t_receivers like somlreci1 occurs 0 with header line,
    t_attachment like solisti1 occurs 0 with header line,
    t_object_header like solisti1 occurs 0 with header line,
    w_cnt type i,
    w_sent_all(1) type c,
    w_doc_data like sodocchgi1,
    gd_error type sy-subrc,
    gd_reciever type sy-subrc.
    t_object_header = 'Text.xls'. append t_object_header.
    *START_OF_SELECTION
    start-of-selection.
    Retrieve sample data from table ekpo
    perform data_retrieval.
    Populate table with detaisl to be entered into .xls file
    perform build_xls_data_table.
    *END-OF-SELECTION
    end-of-selection.
    Populate message body text
    perform populate_email_message_body.
    Send file by email as .xls speadsheet
    perform send_file_as_email_attachment
    tables it_message
    it_attach
    using p_email
    'Example .xls documnet attachment'
    'XLS'
    'PO'
    changing gd_error
    gd_reciever.
    Instructs mail send program for SAPCONNECT to send email(rsconn01)
    perform initiate_mail_execute_program.
    *& Form DATA_RETRIEVAL
    Retrieve data form EKPO table and populate itab it_ekko
    form data_retrieval.
    select ebeln ebelp aedat matnr
    up to 10 rows
    from ekpo
    into table it_ekpo.
    endform. " DATA_RETRIEVAL
    *& Form BUILD_XLS_DATA_TABLE
    Build data table for .xls document
    form build_xls_data_table.
    *CONSTANTS: con_cret TYPE x VALUE '0D', "OK for non Unicode
    *con_tab TYPE x VALUE '09'. "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    constants:
    con_tab type c value cl_abap_char_utilities=>horizontal_tab,
    con_cret type c value cl_abap_char_utilities=>cr_lf.
    concatenate 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
    into it_attach separated by con_tab.
    concatenate con_cret it_attach into it_attach.
    append it_attach.
    loop at it_ekpo into wa_charekpo.
    concatenate wa_charekpo-ebeln wa_charekpo-ebelp
    wa_charekpo-aedat wa_charekpo-matnr
    into it_attach separated by con_tab.
    concatenate con_cret it_attach into it_attach.
    append it_attach.
    endloop.
    endform. " BUILD_XLS_DATA_TABLE
    *& Form SEND_FILE_AS_EMAIL_ATTACHMENT
    Send email
    form send_file_as_email_attachment tables pit_message
    pit_attach
    using p_email
    p_mtitle
    p_format
    p_filename
    p_attdescription
    p_sender_address
    p_sender_addres_type
    changing p_error
    p_reciever.
    data: ld_error type sy-subrc,
    ld_reciever type sy-subrc,
    ld_mtitle like sodocchgi1-obj_descr,
    ld_email like somlreci1-receiver,
    ld_format type so_obj_tp ,
    ld_attdescription type so_obj_nam ,
    ld_attfilename type so_obj_des ,
    ld_sender_address like soextreci1-receiver,
    ld_sender_address_type like soextreci1-adr_typ,
    ld_receiver like sy-subrc.
    ld_email = p_email.
    ld_mtitle = p_mtitle.
    ld_format = p_format.
    ld_attdescription = p_attdescription.
    ld_attfilename = p_filename.
    ld_sender_address = p_sender_address.
    ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
    w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle .
    w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
    clear w_doc_data.
    read table it_attach index w_cnt.
    w_doc_data-doc_size =
    ( w_cnt - 1 ) * 255 + strlen( it_attach ).
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle.
    w_doc_data-sensitivty = 'F'.
    clear t_attachment.
    refresh t_attachment.
    t_attachment[] = pit_attach[].
    Describe the body of the message
    clear t_packing_list.
    refresh t_packing_list.
    t_packing_list-transf_bin = space.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 0.
    t_packing_list-body_start = 1.
    describe table it_message lines t_packing_list-body_num.
    t_packing_list-doc_type = 'RAW'.
    append t_packing_list.
    Create attachment notification
    t_packing_list-transf_bin = 'X'.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 1.
    t_packing_list-body_start = 1.
    describe table t_attachment lines t_packing_list-body_num.
    t_packing_list-doc_type = ld_format.
    t_packing_list-obj_descr = ld_attdescription.
    t_packing_list-obj_name = ld_attfilename.
    t_packing_list-doc_size = t_packing_list-body_num * 255.
    append t_packing_list.
    Add the recipients email address
    clear t_receivers.
    refresh t_receivers.
    t_receivers-receiver = ld_email.
    t_receivers-rec_type = 'U'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    append t_receivers.
    call function 'SO_DOCUMENT_SEND_API1'
    exporting
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    importing
    sent_to_all = w_sent_all
    tables
    object_header = t_object_header
    packing_list = t_packing_list
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_receivers
    exceptions
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    others = 8.
    Populate zerror return code
    ld_error = sy-subrc.
    Populate zreceiver return code
    loop at t_receivers.
    ld_receiver = t_receivers-retrn_code.
    endloop.
    endform.
    *& Form INITIATE_MAIL_EXECUTE_PROGRAM
    Instructs mail send program for SAPCONNECT to send email.
    form initiate_mail_execute_program.
    wait up to 2 seconds.
    submit rsconn01 with mode = 'INT'
    with output = 'X'
    and return.
    endform. " INITIATE_MAIL_EXECUTE_PROGRAM
    *& Form POPULATE_EMAIL_MESSAGE_BODY
    Populate message body text
    form populate_email_message_body.
    refresh it_message.
    it_message = 'Please find attached a list test ekpo records'.
    append it_message.
    endform. " POPULATE_EMAIL_MESSAGE_BODY
    Your suggestions will be appreciated and rewarded.
    Thanks in advance
    Murali

    Hi
    Your pgm is not passing anything in obj_descr in packing list for excel file. If you pass a name your excel file will have that.
    Regards
    Sathar
    perform send_file_as_email_attachment
    tables it_message
    it_attach
    using p_email
    'Example .xls documnet attachment'
    'XLS'
    'PO'
    ' '  *------> no value*
    changing gd_error
    gd_reciever.
    form send_file_as_email_attachment tables pit_message
    pit_attach
    using p_email
    p_mtitle
    p_format
    p_filename
    p_attdescription *----> no value*
    p_sender_address
    p_sender_addres_type
    changing p_error
    p_reciever.
    t_packing_list-obj_descr = ld_attdescription.

  • Report Name does not come when converted to HTML format.

    We are using Report Builder 10.1.2.3.0 to convert a .rep file to HTML. We need the HTML output file to feed to a reports to xls converter.
    Problem is, the html output does not have the report name. Report name (and also date, time. user, page etc.) are in the margin section. For some reason, it wont print the report name in the html. It works fine when I run it in the builder.
    Here is a graphic of the actual outputs: http://postimage.org/image/uio1x32gt/
    Why is this??? The property palette for a label that is printing in all pages (like Date ) is the same as for the report name (GL EXTRACT DETAIL REPORT), BUT it does not appear in the HTML output???
    Any help would be greatly appreciated.
    PS: We use rwrun.exe with desformat=HTML.

    amitphynyl wrote:
    hi,
    have you tried another label for the header of your report.Hi Amit, I tried that, and you are right.
    I created a simple text boilerplate in the margin , on top of the report name. And when we generate the HTML it comes in every page properly.
    The property palettes of the 2 texts are EXACTLY the SAME.
    So why doesn't the old text (with report name) does NOT appear and ONLY the new text appear????
    Cos, we are trying to generate an MS Excel version of every report. For this, we use a tool called rep2excel, and it users as in input an HTML file. So, we have to generate the HTML from the rep and feed it to that.
    So, since we have 200 odd reports, we will have to change all of them, that is why.
    Here is the output (HTML file): http://www.freeimagehosting.net/newuploads/dgrip.gif

  • "SQL Server 2008 Reporting Services does not support map report items"

    Hi,
    I am trying some new feature that are introduced in SQL Server 2008 R2 version. While I try to use "Map" control within it, it threw the following error:-
    "Error 1 The map, Map1, was removed from the report. SQL Server 2008 Reporting Services does not support map report items. "
    -Also, similar kind of error I am getting for "Indicator" control.

    Hi Tej,
    I think you get this error message when you are deploying a report to report server using BIDS, correct?  If not, please provide more details on your scenario :-)
    If I guessed correctly, then this message is a result of trying to deploy a map report (a SSRS 2008 R2 feature) to a non-R2 2008 report server.  When deploying a report of RDL2010 format to a non-R2 report server, BIDS will downgrade the file to RDL2008 format, so that the non-R2 report server can process it.  Any report elements using features not supported in RDL2008 will be dropped during this downgrade process.
    BIDS gets the server version from a report project property called TargetServerVersion:
    http://technet.microsoft.com/en-us/library/ee635898(SQL.105).aspx
    If your report server is indeed the 2008 R2 version, then the TargetServerVersion property should be set to "SQL Server 2008 R2 Reporting Services."  The project property page also has a "Auto Detect..." option if you are uncertain about the version of your report server.
    Hope this helps!
    Cheers,
    LawrenceThis posting is provided "AS IS" with no warranties, and confers no rights.

  • Report help does not work

    We have generated a headstart online helpfile belhelp.htm
    All works fine when using online help with forms: the help text uses help context id and bookmarks in het htm file.
    Altough help text for all reports is generated in belhelp.htm, following errors and restrictions occur:
    1. URL = http:10.1.10.0:7778/hsd65-help//hsd65-help/belhelp.htm is wrong. It should be http:10.1.10.0:7778/hsd65-help/belhelp.htm. How can I resolve this issue?
    2. report help does not use bookmarks. Although help context id's are generated in the module defined in design editor, the button 'report help' in the report launch form does not use the bookmark. When I add a bookmark manually it works, eg http:10.1.10.0:7778/hsd65-help/belhelp.htm#BM919000000

    This is a known bug that was fixed in Headstart patch 6.5.2.1, available through the supplement option. There are also a small number of other bugs related to reports that are fixed in patch 6.5.2.2, also available through the supplement option.
    If you do not already have the supplement option, you can purchase it through your Oracle Consulting representative or through the Oracle store.
    Regards,
    Lauri

  • EWA report from SOLMAN not generating properly.

    Hi expert,
    EWA report from SOLMAN not generating properly. It's generating like Rating not Determined (Gray) - SAP EarlyWatch Alert.
    Solman version: SAP EHP 1 for SAP Solution Manager 7.0
    Thanks in advance. Any help appreciated.
    Regards,
    Debi pal

    Hi,
    Refer to SAP note: Note 762696 - Grey rating for Earlywatch Alert
    Thanks
    Anil

  • The site reporter tool does not work

    There is an item in Firefox Help where you can report a Web site that does not work.  Originally, a report database was available on line and you could review existing submissions.  The database access site was officially [http://blog.mozilla.com/website-archive/2010/12/08/mozilla-reporter/ retired] and the data gathered were expurgated and dumped for everybody to download. It is 1.3 GB uncompressed; install with { gzcat | mysql mozrep; } to avoid doubling the space. 
    The [https://support.mozilla.com/en-US/kb/Menu%20Reference#w_report-broken-web-sitead site reporter tool] does not seem to work any more.  It just submits the report forever.   It seems that Mozilla has broken functionality in a supported browser, disregarding all users.   The original reporter site redirects to a new feedback site.   The problem with that site is that you have to install version 4 beta to use it, which is not nice at all.  To add exploitation to disrespect, Mozilla tries to turn all customers into beta testers.

    Hi there
    Sorry, but you need to give us more information. For starters, you *ARE* using Adobe Captivate, right? And what exactly are you trying to do where you are seeing the eyedropper isn't working? Can you post a screen capture or a small video recording of it? You can use Jing http://www.jingproject.com or maybe Screenr http://www.screenr.com.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • "A supported version of Microsoft Word does not exist. Please install Microsoft Word 2000 or newer."

    I am a new RoboHelp user und I want to import content written with Word 2013 into RoboHelp.
    I'm using RH HTML 9.0.2 and MS Word 2013 (Office 2013) on a Windows 7 professional computer.
    When I try to import a Word-Document (I downloaded and used the example document from Peter Grainge and also tried other Word-documents) I get the following message:
    "A supported version of Microsoft Word does not exist. Please install Microsoft Word 2000 or newer."
    What can I do?

    The error message is wrong as regards the version you need to install. It should state that you need a compatible version and the latest is Office 2010. Even Rh10 does not support Office 2013.
    There is a workaround when generating printed documentation but not when importing. You need to install Word 2010 which can co-exist with Word 2013 if you want to retain that for other purposes. Before using Rh to import, run Word 2010 first.
    To generate printed documentation using Word 2013, right click Properties in the layout, it works from there.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Why when i click to open safari does it keep telling me the safari browser version i am using does not support the community toolbar ?

    Why when I am clicking into safari does a message appear telling me that the Safari Browser version I am using does not support the community toolbar ???

    You installed the Conduit spyware. To remove it, back up all data, then follow these instructions.
    If the instructions don't work, proceed as follows.
    Triple-click the line below to select it:
    ~/Library/Application Support/Conduit
    Copy the selected text to the Clipboard (command-C). From the Finder menu bar, select
    Go ▹ Go to Folder…
    Paste into the box that opens (command-V), then press return. A Finder window should open with a folder named "Conduit" selected. If it does, delete the selected item.
    Repeat with this line:
    /Applications/Toolbars
    Now you're deleting a folder named "Toolbars". You may be prompted for your login password. Next, copy this line:
    /Library
    Select Go to Folder… again and paste. Don't delete the Library folder. Delete only the following items inside it, if they exist.
    Application Support/Conduit
    InputManagers/CTLoader
    LaunchAgents/com.conduit.loader.agent.plist
    ScriptingAdditions/ct_scripting.osax
    Close the Finder windows you opened. Log out and log back in.
    I've seen a report that Conduit may be bundled with a scam "utility" called "MacKeeper." If you installed MacKeeper, you should remove it according to the developer's instructions. It's worthless and causes many problems reported on this site.

  • REPORTS folder does not appear when refreshing dynamic templates

    Hi all,
    I got one issue when refreshing dynamic templates. For one application, the REPORTS folder does not appear under Eexcel folder.
    It works well on my quality environment, but it fails on production server.
    It seems there is no differences in security settings, SP version...
    I already tried deleting Outlooksoft folder, clear and refresh local folder in client options...
    I must miss something but I dont know what to check anymore.
    Any suggestion is welcome.
    Thanks
    Antoine

    Hi Neil,
    I do not have issue with what you mention, everything is ok in Webfolder.
    The problem is in the local folder of every user in My Documents folder.
    There is a folder Outlooksoft there that is refreshed automatically after connecting to BPC.
    Every reports under REPORTS\WIZARDS should be there. Users need to access this folder to open a specific report.
    What is strange is that it looks that it works for some users, but does not work for some other users...
    Might be security settings?
    Antoine

  • HT3669 HP ENVY 4500 e-All-in-One Version 3.2.1 does not work on iMac 20-inch, Mid 2007. Only recognizes scanner not USB printer.

    HP ENVY 4500 e-All-in-One Version 3.2.1 does not work on iMac 20-inch, Mid 2007. Only recognizes scanner not USB printer.
    I would like to print via the USB connection instead of wireless (the wireless does work, and the scanner works via USB).
    I tried connecting the printer directly (via USB) to my MacBook Pro laptop and it worked just fine.
    How can I make this printer work on my iMac?
    I spent 4 hours on the phone with HP and we did every combination of installation of drivers ad nausum and their bottom line is that it is a Mac problem.
    Any help would be appreciated. Will be sending this printer back to Amazon if I can't make it work on the USB.
    I am open to questions or suggestions
    Thanks,
    Chet

    After 4 hours on the phone with HP and another hour with Apple (Mavericks support) no real solution other than check everything (removed everything from Login Items, removed all HP software anywhere in the system reboot, reinstall printer) then when nothing worked for the 4500, did an OS Reinstall (boot with CMD+R).
    The Mavericks support group did open an incident (# 542875311) and I will update it when I figure out how to find it on the system.
    My feel is that the base problem is that somewhere between the HP-Inkjet-SW-OSX-Mavericks_v12.34.49-2 package and the Apple HP Printer software in the Library (version 2.16.1) the app for printing via the USP Port just does not get installed for the mid 2007 20 inch iMac. The scanner is recognized on the USB Port and the Printer works fine on Wi-Fi. I have too many devices to burden my home network with anothe device. Also, every time I put any HP Printer on Wi-Fi, my router (Netgear N600 WNDR3400 running 12 to 20 devices depending on who is home) gets wonky (but that's anothe story...).
    Additionally, when I attach the HP Envy 4500 to my MacBook Pro (2010) it works perfect - print and scan via the USB prot and both functions show in the System Preferences - Printers and Scanners just as expected and just as the 3050 does.
    Chet

  • Cancellation document does not generate Accounting document

    Hi Experts,
        I am facing an issue that when a Billing document is getting cancelled through workflow ,the billing document does not generate a accounting document .I tried debugging the issue to check it but could not find the root cause of the issue.
    In the code we are using 'BAPI_BILLINGDOC_CANCEL1 to cancel the billing document.
        How to find that the accounting documents are getting  generated from the corresponding billing documents correctly.
    Thanks&Regards,
    Praveen

    First of all, are you able to create S1 type cancellation document after you call the BAPI? If you are not even able to generate the cancel document, perhaps you are missing committing the BAPI after calling it by using BAPT_TRANSACTION_COMMIT.
    Also are you able to create cancellation and accounting document by calling the BAPI through a test ABAP program? First check it out before using it in your workflow.

  • What can I do when  in Photoshop Elements (version 11) the organizer does not start up??

    !@@

    Yes, thanks a lot. I understand now.
    I now am able to open the old catalog again!! I tried now several times with the new shortcut.
    Thank you very much indeed for ALL YOUR EFFORT and patients with me.
    You suggest now I should click on the repair button. When I do so, the catalog will be overwritten, or I can choose not to overwrite and than the catalog will be twice as big. So I decided not to click on the repair button. When I see afterwards that some functions do not work anymore, I allways can use the repair button. As far as I can see now nothing is lost.. )
    As far as I understood it is only possible to repair with a backup. Happily I made that allways, but I am afraid to use it, for the reason above.
    When I have more time to spare, I will look for all the foto's from the apps of my cellphone and delete them.
    Now I can finish my fotowork, what I had started before, and make Photoshop Elements again the main fotoprogram on my desktop.
    Thank you again! Trees
    Van: Little_Pale_Face 
    Verzonden: woensdag 1 april 2015 21:53
    Aan: Trees kaizer
    Onderwerp:  What can I do when  in Photoshop Elements (version 11) the organizer does not start up??
    What can I do when  in Photoshop Elements (version 11) the organizer does not start up??
    created by Little_Pale_Face <https://forums.adobe.com/people/Little_Pale_Face>  in Photoshop Elements - View the full discussion <https://forums.adobe.com/message/7396555#7396555>

  • The RFUMSV50 program does not generate transfer lines of deferred VAT

    Hello;
    The RFUMSV50 program does not generate transfer lines of deferred VAT ,
    The context is the following one:
    Code VAT Created with code target VAT, general account of VAT also created,
    Rule of deferred VAT created and activated for the company code in question, with marks to compensate for check.
    The data of tests are the following ones:
    Creation of an invoice via the FB60,
    Integral payment of the invoice via F-53,
    Creation of the confirmation of the operation in bank via the manual statement FF67,
    Clearing of the intermediate banking account  with the bank account  via F-03.
    After all these elements, by executing the RFUMSV50 program, I have nothing in result.
    There somebody who had the same problem, could help us?
    Thank you.

    Hi
    Service Tax credit cannot be utilized unless the Vendor Invoice is Paid. This is the reason till the payment is done the service tax Amount will be accumulated in deferred tax account and once the invoice is paid the balance in deferred tax is need to be transferred  to respective Service Tax , Educational Cess and higher Education Cess account. There can be various business scenarios for full and Partial Payment to facilitates the transfer of such deferred balance to respective account SAP has come up with some new standard program RFUMSV50 instead of RFUMSV25. To overcome the limitation of this program i.e. not able to take care of more than one tax line item, below the solution is provided with scenarios “Full Payment is made to Vendor Invoice”. 
    hope this is help ful
    thanks
    Trinath

Maybe you are looking for

  • How do I return to the same folder in Mavericks?

    Since I've upgraded to Mavericks, my apps always go back to the top level when I open a document. For example, let's say I want to open a document called SAMPLE FILE.  I go to the file menu, select OPEN and then navigate thru the directory to find th

  • PDF File Management

    At work we were recently told we had to submit all our documents to another department in PDF format. We have Acrobat Pro 8 to create and combine the PDF documents as needed. However, we manage about 20,000 case files per year, and several different

  • HT201302 can only import photos

    When the thing pops up, it only asks if I want to import photos; it does not say import photos and videos. Is there something wrong with my ipod?

  • What to do if "Adobe Application Manager fails to install"?

    What to do if "Adobe Application Manager fails to install"?

  • COMBO offer price calculation in pricing

    Dear Experts, In present client scenario they are selling some goods in combo offer. for e.g. (DVD + SPEAKER) is a combo. individual price is as DVD at 3000 RS per EACH & SPEAKER at 2000 RS per EACH. They are seling both at COMBO price at suppose 250