HI Gurus help needed in  smartforms

Hi All,
I am new to Smart form and I have a requirement
In the smartform main window I see a table of structure 'XXX' which currently prints
line.no          material              desc                          
                                             ( I need to add a flag here below the desc)
This flag is not available in the looped structure, can you please help me how can i acheive this.
Thanks,
Krishna

in the loop you can insert  program line and write a select single based on the loop table.. and output that in the description cell...
make sure to clear manually before select...

Similar Messages

  • Help needed in smartforms

    Dear All
    My requirement is to define a new Pricing condition type for output of a sales order as Idoc. I have a Z output type (which is linked to RSNASTED for IDOC processing) needs to be linked to this new pricing condition.
    Any pointers for the same will be appreciated.
    Regards
    Dinesh

    Hi,
    Steps u nee to follow:
    Go to transaction NACE.
    Seleect application type for sales order.
    Then select output types .
    Then select your output type and then press processing routines.
    There assign your form or idoc mode. .
    Regards,
    Jagadish

  • Discoverer Gurus Help needed

    I should say I got strange problem. I dont know if it is the limitation of Discoverer 4.1.48. I've created a custom folder in my admin and when i validate it, it says Valid SQL infact it gives me the results in TOAD and SQL plus. When I try to make a worksheet of this folder I get an error saying "000907-missing right paranthesis".
    I would appreciate if someone can look at this query and tell me whats wrong in it. Its a Aging Query should work on any Apps Database. I would get bunch of tickets if I dont get this going.
    SELECT distinct ra.customer_name,
    ra.customer_number,
    lc_sc.meaning,
    ra.attribute1 division,
    pap.full_name rsm,
    rsa.name AS broker_name,
    arc.name AS Collector_Name,
    arps.trx_date AS invoice_date,
    arps.trx_number AS invoice_number,
    rt.NAME payment_terms,
    rct.type AS "TYPE",
    rct.NAME AS "class",
    rah.interface_header_attribute1 AS order_number,
    oh.cust_po_number,
    arps.due_date,
    arps.amount_due_original,
    arps.amount_due_remaining,
    ROUND((SYSDATE - arps.due_date)) AS days_out
    FROM ar_payment_schedules_all arps,
    ra_customers ra,
    per_all_people_f pap,
    ra_terms rt,
    ra_customer_trx_all rah,
    ra_cust_trx_types_all rct,
    oe_order_headers_all oh,
    RA_SALESREPS_ALL RSA,
    AR_CUSTOMER_PROFILES acp,
    ar_collectors arc,
    so_lookups lc_sc
    WHERE ra.customer_id = arps.customer_id
    AND rah.customer_trx_id = arps.customer_trx_id
    AND arps.status ='OP'
    AND arps.customer_id IS NOT NULL
    AND ra.attribute11 = pap.person_id(+)
    AND rah.term_id = rt.term_id
    AND lc_sc.lookup_type(+) = 'SALES_CHANNEL'
    AND lc_sc.lookup_code = ra.sales_channel_code --'EMAIL_CENTER'
    AND arps.cust_trx_type_id = rct.cust_trx_type_id
    AND TO_CHAR(oh.order_number) = rah.interface_header_attribute1(+)
    AND rah.PRIMARY_SALESREP_ID = RSA.salesrep_id
    and acp.CUSTOMER_ID = ra.CUSTOMER_ID
    and acp.COLLECTOR_ID = arc.COLLECTOR_ID
    UNION ALL
    SELECT distinct ra.customer_name,
    ra.customer_number,
    lc_sc.meaning,
    ra.attribute1 division,
    NULL rsm,
    NULL Broker_Name,
    NULL Collector_Name,
    arps.trx_date AS invoice_date,
    arps.trx_number AS invoice_number,
    NULL Payment_Terms,
    arps.class AS "TYPE",
    NULL AS "class",
    NULL AS order_number,
    NULL AS cust_po_number,
    arps.due_date,
    arps.amount_due_original ,
    arps.amount_due_remaining,
    ROUND((SYSDATE - arps.due_date)) AS days_out
    FROM ar_payment_schedules_all arps,
    ra_customers ra,
    per_all_people_f pap,
    so_lookups lc_sc
    WHERE ra.customer_id = arps.customer_id
    AND arps.status = 'OP'
    AND arps.class LIKE 'PMT'
    AND arps.customer_id IS NOT NULL
    AND lc_sc.lookup_type(+) = 'SALES_CHANNEL'
    AND lc_sc.lookup_code = ra.sales_channel_code
    Thanks
    Bobby

    Hi Bobby
    Looking at the two pieces of code you have not defined the broker name the same in both sections. In the top half it is named "broker_name" while in the second half it is named "Broker_Name". This needs to be fixed before you can continue otherwise Discoverer cannot correctly assign a unique name to that item in the folder.
    You should also cross check all of the other names to make sure that the names are identical, with no extra spaces, correct formatting and so on.
    I am not sure this is the cause but its worth a shot.
    Best wishes
    Michael

  • Sql gurus help needed.. simple but awkward

    Im trying to use dates stored in a char field...field called segment1
    2006/09/11 00:00:00 This is the format they are being stored as
    When i select this data im converting to date format to make it look good to_date(tppc.segment1,'YYYY-MM-dd:HH24:MI:SS')
    The problem is in the where clause, when i goto put a condition in its like it does not recognise the date format.....
    so where to_date(tppc.segment1,'YYYY-MM-dd:HH24:MI:SS') = '31-OCT-2008' ..... error - ORA-01841: (full) year must be between -4713 and +9999
    so where to_date(to_date(tppc.segment1,'YYYY-MM-dd:HH24:MI:SS'),'DD-MON-YYYY') = '31-OCT-2008' again error ORA-01841
    I have checked all the data and the format 2006/09/11 00:00:00 is the same in all records...
    Does someone know what to do ....
    Data Output ---- TO_CHAR(to_date(tppc.segment1,'YYYY-MM-dd:HH24:MI:SS'),'DD-MON-YYYY') - 11-SEP-2006

    Hi Sharky,
    Are you completely sure that all of the records in your table contain properly formated date strings in segment1?
    you can check it with a simple function:
    create or replace FUNCTION "VALIDATE_DATE"
        (   date_String VARCHAR2,
            format      VARCHAR2 := 'dd-mon-yyyy' )
        RETURN VARCHAR2
        DETERMINISTIC
    IS
        dt DATE;
    BEGIN
        dt := to_date( date_string, format );
        RETURN 'Y';
    EXCEPTION
        WHEN OTHERS THEN
            RETURN 'N';
    END;
    /which you use to select records which have invalid dates like so:
    select *
      from your_table
    where validate_date(segment1, 'YYYY-MM-dd:HH24:MI:SS')='N';The next thing to consider is that when you use a to_date function on segment1 you are converting it to a date data type, but in your comparisson you are comparing that data data type to a string constant. To perform the equality test Oracle needs to change the data type of one side of the equality to match the data type on the other side of the equality. Generally speaking you should explicitly convert one of them to match the other. For example you should wrap your string constant in a to_date function so you end up comparing two dates, or since the segment1 value is already in a canonical date format, you could change your string constant to the same canonical date format removing the to_date off of segement1 so you are just doing a string comparison.

  • Help needed in customer exit code to exclude a value

    Hi Gurus,
    I need to use a Customer Exit Variable to read the values for a characteristic. Based on one indicator I have to include or exclude a value. I am trying to use the code as below. But, it is saying "AError for variable  in customer enhancement ...".
    Code
    the variable is a multiple single values customer exit variable
             zl_s_range-low = z_placc.
             CLEAR zl_s_range-high.
             if z_pl_ind = '1'.
               zl_s_range-sign = 'I'.
             elseif z_pl_ind = '2'.
               zl_s_range-sign = 'E'.
             endif.
              zl_s_range-opt = 'EQ'.
             APPEND zl_s_range TO e_t_range.
    Please help me to solve the issue,
    Thanks in advance,
    Regards,
    aarthi

    Hi Uday,
    Thanks for your response.
    Below is the complete code.
    WHEN 'ZV_CSS11'.
    IF I_STEP = 1.      "Before Pop-up
       select * into table i_tp_tab_pl from /BIC/QZ_TP_PLAC
        where /BIC/Z_TP_PLAC = '11' and
            DATEFROM <= sy-datum and DATETO >= sy-datum.
    if sy-subrc = 0.
         LOOP AT i_tp_tab_pl.
             clear zl_s_range.
             z_placc = i_tp_tab_pl-/BIC/Z_PLACC.
             z_pl_ind = i_tp_tab_pl-/BIC/Z_PGLA_IND.
             zl_s_range-low = z_placc.
             if z_pl_ind = '1'.
               zl_s_range-sign = 'I'.
             else.
               zl_s_range-sign = 'E'.
             endif.
              zl_s_range-opt = 'EQ'.
             APPEND zl_s_range TO e_t_range.
             clear z_placc.
             clear z_pl_ind.
          ENDLOOP.
    endif.
    endif.
    Thanks in advance,
    Regards,
    aarthi

  • Mapping Help Needed

    Hello Gurus,
      I need help in message mapping. I have a requirement as below.
    E1EDP01 segment contains many E1EDP19 segments
    E1EDP19 segment contains QUALF, KTEXT and many other fields.
    in the output field, for every QUALF = "002", I need the value of KTEXT of the same E1EDP19.
    the output group is repeated per E1EDP01 (this is working fine)
    The problem is that KTEXT segment is not coming in every E1EDP19, so the result is erratic.
    the present code looks like
      Qualf (context E1EDP01)--
                                Equals  -- 
                   const-002 --           IF   --Outputfield
               KTEXT(context E1EDP01)--
    I tried many other things as well, but result is not as expected
    pls help.
    Thanks
    KQ

    Hi,
    I am not sure why it is not working in your case. I developed same mapping and it is giving correct result.
    Source Payload:
    <E1EDP19 SEGMENT="">
                <QUALF>002</QUALF>
                <IDTNR/>
                <KTEXT>A</KTEXT>
      </E1EDP19>
      <E1EDP19 SEGMENT="">
                <QUALF>003</QUALF>
                <IDTNR/>
      </E1EDP19>
      <E1EDP19 SEGMENT="">
                <QUALF>003</QUALF>
      </E1EDP19>
    <E1EDP19 SEGMENT="">
                <QUALF>002</QUALF>
                <IDTNR/>
                <KTEXT>SDN</KTEXT>
      </E1EDP19>
    Target field gets value as "SDN".
    Is this your requirement?
    Answers to your questions:
    1) the context cannot be E1EDP19, cos there are multiple P19 segments in P01 and it should be done on P01, as the output is based on per P01.
    Even if you are creating target based on line item level (E1EDP01), every E1EDP01 segment will have E1EDP19 and KTEXT with QUALF = 002. Also KTEXT of same E1EDP01 should go to target. Hence in your mapping context should be at E1EDP19 level.
    2) the Qualf comes more number of times than KTEXT, so they are not "matching" at context level.
    Map with default function will take care of this.
    -Gouri

  • SAP ISU Implementation Help needed

    Hi SAP Gurus
    I need some input and thoughts on designing Security around new SAP implementation. My company has newly implemented SAP and i'm part of  security team. There is no security structured yet. As a part of security team I would like to share my thoughts in the design process. Please help me providing the security strategy in the company.
    Thanks for your information in advance
    KV
    Edited by: Vamsi Krishna on Dec 26, 2007 1:18 AM

    Hi Vamsi,
    There are some useful Docs in below link please check
    it may help you
    http://www.auditnet.org/sapaudit.htm
    Thanks
    kishore

  • Help Needed to learn Material Master

    Hi MDM Gurus,
    I need your help. I have gone through all the MDM toots like console, import manager, data manager and syndicator.
    I have assigned a task to work on MDM Material Master. But i have no experience in that.
    Please tell where should i start to have a strong base in Material Master. Please post the documents related to Material Master which will be useful. Thanks in Advance.
    Regards
    Ashok

    Ashok,
    If you are using MDM 7.1 version refer, SAP Note 1355137
    which contains very useful information as attachments:
    MDM71_Material_Content.pdf
    MDM71_Material_Fieldmapping.zip
    MDM71_Material_Content_Strings.zip
    If you are on MDM 5.5 version refer, SAP Note 1255401
    MDM_Material_Content.pdf
    FieldMapping_CheckTables_Material.zip
    Kindly go through these SAP Note and attachments as per your MDM Version.
    Thanks and Regards,
    Mandeep Saini

  • Python Image processing. (Help needed)

    Hi all.
    I'm currently trying to learn python and have made some(small) progress into the matter.
    However, I have an urgent need to extract some information from a bactch of photos for statistical purposes, namely:
    - color saturation (red, green, and blue)
    - mean luminance
    - variance of luminance
    - root mean square (RMS) contrast
    - kurtosis
    - skewness
    - energy
    Now I've searched for some program that could aid me in this when suddenly I remembered Python.
    I thought I could write a little script to extract said information and save it in a file.
    This is where I need the help of all you python gurus.
    Need a pointer in the right direction. I'm looking into PIL. IS this the best choice? Could this give me all the info need.
    To be honest, I don't even know what some of that info is (my wife needs it for here PhD thesis...)
    Any help would be appreciated.
    Cheers,
    P.

    palobo wrote:@buttons: Thanks. I am currently looking through that reading. Statisctical info for RGB etc is great, just what I needed. However I can't seem to get info on contast and luminance. I will keep at it.
    All I can tell you for sure from a very dim recollection of an undergraduate graphics course is that contrast and luminance can be derived mathematically from RGB somehow.
    PIL gives you the option to do pixel by pixel comparisons, so you can certainly get the info you need... the first step would be to define it though. ;-)
    Dusty

  • Some help needed on Order-to-cash process

    Hi Gurus,
    i need some insight on how to use/config the Order-to-cash process.
    if someone could help me out in this, it would be greatly appreciated.
    Thanks in advance
    Poorna.

    Hi,
    Please find info on
    https://wiki.sdn.sap.com/wiki/display/ERPLO/SD%20Configuration
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/8c/df293581dc1f79e10000009b38f889/content.htm
    Thanks,
    Vrajesh

  • Help needed on abap heap area parameters

    Hi Gurus ,
    I need your help in regards with abap heap area parameters , we are facing a lot of system no roll memory issues on one of our instance.
    As for my understanding :
    1)abap/heap_area_dialog : heap memory limit for dialog process.
    2).abap/heap_area_nondialog: heap memory limit for non-dialog process.
    3).abap/heap_area_total : what this implies ?
    In my production instance the parameters are as follows :
                                                    Actuals
    abap/heap_area_dialog -
        2GB    (Recommended : 2GB for an application server with max 50 users )
    abap/heap_area_nondialog:-- 2GB  (Recommended : 2GB or an application server with max 50 users )
    abap/heap_area_total ---        1GB        (Recommended and default value: 2GB)
    My doubt is  "abap/heap_area_total  of 1GB "  might creating problems .
    What is the recommended value for abap/heap_area_total on Solaris 10 ?
    your valuable inputs required :!

    Hello Sandy
    Have a look at this link for UNIX
    http://help.sap.com/saphelp_nw04/helpdata/en/02/96257b538111d1891b0000e8322f96/content.htm
    For more in memory management in below link
    http://help.sap.com/saphelp_nw04/helpdata/en/02/96253c538111d1891b0000e8322f96/frameset.htm
    Regards
    Vivek

  • Help needed with SSmoving or deleting powered-off LM Service VMs used by host spanning

    Hi Lab Manager gurus,
    I need your help in evacuating a corrupt data store that is hosting four LM Service VMs used by host spanning.  I'm attaching screenshots as well.
    LM version: 4.0.4 on ESXi 4.1 Enterprise Plus.
    1. Even though host spanning is enabled, we don't use it or need it, so it can be disabled.
    2. I have moved all the other VMs out of this datastore using SSmove, and though the service VMs have been powered off since mid-2013, SSmove still thinks they are deployed.
    3. I tried to disable host spanning in LM, but got an error:
          Error in undeploying the virtual machine. Contact the Administrator if the problem persists.
          Virtual machine, "VMwareLM-ServiceVM-I46-H2", not found in inventory.
          Virtual machine not found in inventory.
    Along with:
          Failed to undeploy Service Virtual Machine. Try to repair the host.
    4. Repairing the host gave the error:
          Failure occurred during repair of host "xxxxxxxxxxxx.com". If this is due to an temporary failure, try repair again, otherwise unprepare and then prepare the host.
          Error in undeploying. Contact the Administrator if the problem persists.
          Error in undeploying the virtual machine. Contact the Administrator if the problem persists.
          Virtual machine, "VMwareLM-ServiceVM-I46-H1", not found in inventory.
          Virtual machine not found in inventory
    5. Unprepare option is greyed-out in the menu for the host.
    How do I make the four LM service VMs accessible again to Lab Manager so it can go ahead and disable host spanning? 
    I'm assuming disabling host spanning will get rid of these service VMs. Registering a VM in VC did not make it visible to LM - I still got the "VM not found in inventory" error.
    Would some DB updates resolve this?
    The FsDirs for these service VMs are 1, 2, 229 and 7672.
    In table DeployedFsDir I see rows for dir_ids 1,2, 229, 7672
    dir_id  vs_id
    1       1
    2       2
    229     215
    7672    6698
    Table DeployedVirtualServer has rows for vs_ids 1,2,215, 6698
    DistributedVirtualSwitch shows one DVSwitch as is_enabled = False
    Any help appreciated!
    Khare

    Hi Lab Manager gurus,
    I need your help in evacuating a corrupt data store that is hosting four LM Service VMs used by host spanning.  I'm attaching screenshots as well.
    LM version: 4.0.4 on ESXi 4.1 Enterprise Plus.
    1. Even though host spanning is enabled, we don't use it or need it, so it can be disabled.
    2. I have moved all the other VMs out of this datastore using SSmove, and though the service VMs have been powered off since mid-2013, SSmove still thinks they are deployed.
    3. I tried to disable host spanning in LM, but got an error:
          Error in undeploying the virtual machine. Contact the Administrator if the problem persists.
          Virtual machine, "VMwareLM-ServiceVM-I46-H2", not found in inventory.
          Virtual machine not found in inventory.
    Along with:
          Failed to undeploy Service Virtual Machine. Try to repair the host.
    4. Repairing the host gave the error:
          Failure occurred during repair of host "xxxxxxxxxxxx.com". If this is due to an temporary failure, try repair again, otherwise unprepare and then prepare the host.
          Error in undeploying. Contact the Administrator if the problem persists.
          Error in undeploying the virtual machine. Contact the Administrator if the problem persists.
          Virtual machine, "VMwareLM-ServiceVM-I46-H1", not found in inventory.
          Virtual machine not found in inventory
    5. Unprepare option is greyed-out in the menu for the host.
    How do I make the four LM service VMs accessible again to Lab Manager so it can go ahead and disable host spanning? 
    I'm assuming disabling host spanning will get rid of these service VMs. Registering a VM in VC did not make it visible to LM - I still got the "VM not found in inventory" error.
    Would some DB updates resolve this?
    The FsDirs for these service VMs are 1, 2, 229 and 7672.
    In table DeployedFsDir I see rows for dir_ids 1,2, 229, 7672
    dir_id  vs_id
    1       1
    2       2
    229     215
    7672    6698
    Table DeployedVirtualServer has rows for vs_ids 1,2,215, 6698
    DistributedVirtualSwitch shows one DVSwitch as is_enabled = False
    Any help appreciated!
    Khare

  • Troubleshoting help needed:  My iMac keeps crashing and restarting with a report detail: "spinlock application timed out"  What can I do to fix this?timed out"

    Troubleshooting help needed:  My iMac keeps crashing and restarting with a notice: "Spinlock application timed out"  What can I do?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the page that opens.
    Select the most recent panic log under System Diagnostic Reports. Post the contents — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post shutdownStall, spin, or hang reports.

  • Help needed for writing query

    help needed for writing query
    i have the following tables(with data) as mentioned below
    FK*-foregin key (SUBJECTS)
    FK**-foregin key (COMBINATION)
    1)SUBJECTS(table name)     
    SUB_ID(NUMBER) SUB_CODE(VARCHAR2) SUB_NAME (VARCHAR2)
    2           02           Computer Science
    3           03           Physics
    4           04           Chemistry
    5           05           Mathematics
    7           07           Commerce
    8           08           Computer Applications
    9           09           Biology
    2)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2) SUB_ID1(NUMBER(FK*)) SUB_ID2(NUMBER(FK*)) SUB_ID3(NUMBER(FK*)) SUBJ_ID4(NUMBER(FK*))
    383           S1      9           4           2           3
    384           S2      4           2           5           3
    ---------I actually designed the ABOVE table also like this
    3) a)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2)
    383           S1
    384           S2
    b)COMBINATION_DET
    COMBDET_ID(NUMBER) COMB_ID(FK**) SUB_ID(FK*)
    1               383          9
    2               383          4
    3               383          2
    4               383          3
    5               384          4
    6               384          2          
    7               384          5
    8               384          3
    Business rule: a combination consists of a maximum of 4 subjects (must contain)
    and the user is less relevant to a COMB_NAME(name of combinations) but user need
    the subjects contained in combinations
    i need the following output
    COMB_ID COMB_NAME SUBJECT1 SUBJECT2      SUBJECT3      SUBJECT4
    383     S1     Biology Chemistry      Computer Science Physics
    384     S2     Chemistry Computer Science Mathematics Physics
    or even this is enough(what i actually needed)
    COMB_ID     subjects
    383           Biology,Chemistry,Computer Science,Physics
    384           Chemistry,Computer Science,Mathematics,Physics
    you can use any of the COMBINATION table(either (2) or (3))
    and i want to know
    1)which design is good in this case
    (i think SUB_ID1,SUB_ID2,SUB_ID3,SUB_ID4 is not a
    good method to link with same table but if 4 subjects only(and must) comes
    detail table is not neccessary )
    now i am achieving the result by program-coding in C# after getting the rows from oracle
    i am using oracle 9i (also ODP.NET)
    i want to know how can i get the result in the stored procedure itsef.
    2)how it could be designed in any other way.
    any help/suggestion is welcome
    thanks for your time --Pradeesh

    Well I forgot the table-alias, here now with:
    SELECT C.COMB_ID
    , C.COMB_NAME
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID1) AS SUBJECT_NAME1
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID2) AS SUBJECT_NAME2
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID3) AS SUBJECT_NAME3
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID4) AS SUBJECT_NAME4
    FROM COMBINATION C;
    As you need exactly 4 subjects, the columns-solution is just fine I would say.

  • Help needed I have a canon 40D. I am thinking of buying a canon 6D.But not sure that my len

    Hi all help needed I have a canon 40D. I am thinking of buying a canon 6D.
    But not sure that my lenses will work.
    I have a 170mm/ 500mm APO Sigma.
    A 10/20 ex  Sigma   HSM  IF.
    And a 180 APO Sigma Macro or do I have to scrap them and buy others.
    ALL Help will be greatly received. Yours  BRODIE

    In short, I love it. I was going to buy the 5DMark III. After playing with it for a while at my local Fry's store where they put 5DMII, 5DMIII and 6D next to each other, using the same 24-105L lens, I decided to get the 6D and pocket the different for lens later.
    I'm upgrading from the 30D. So I think you'll love it. It's a great camera. I have used 5DMII extensively before (borrowing from a close friend).
    Funny thing is at first I don't really care about the GPS and Wifi much. I thought they're just marketing-gimmick. But once you have it, it is actually really fun and helpful. For example, I can place the 6D on a long "monopod", then use the app on the phone to control the camera to get some unique perspective on some scenes. It's fun and great. GPS is also nice for travel guy like me.
    Weekend Travelers Blog | Eastern Sierra Fall Color Guide

Maybe you are looking for

  • Acrobat Pro 8.1.3 always opens in browser

    As a result of Adobe recently automatically updating my Acrobat 8 Pro to version 8.1.3 it now always opens clicked PDF links in IE7 browser window, even though EDIT/PREFERENCES/INTERNET "Display PDF in browser" is UNTICKED in both Acrobat Pro and Acr

  • Compilatio​n d'un exemple ni report

    Bonjour, j'ai déja posté sur le forum américain mais sans réponse, je ne le fais jamais mais je me permet de le poster ici en doublon donc j'essaye de compilé le vi exemple (ci joint ) mais j'obtiens le message suivant il semble vouloir charger la cl

  • Messed Java Desktop Release 3

    for some reason I can only get into CDE on my Solaris 10 x86 last update. when I log into the JAva Desktop.. it just hangs without any error msg of any kind. What I've done that might be due to: 1. trying to set up IPFilter (think it should be workin

  • Invalid Cach Location Error

    We have a single user that is experiencing an error when attempting to open Project Pro 2010 with the default PROD connection to Project Server 2010.  The error is an invalid cache location.  I have seen another unanswered post regarding this issue a

  • CONFIGURE BACKUP OPTIMIZATION ON;

    CONFIGURE BACKUP OPTIMIZATION ON; above cmd only working on "sbt" type device or it is working also "disk". plz. let me know. sir. thanx in advance.