Context-sensitive F4 help

Hello experts,
I have a normal ABAP report with a selection screen. On this screen I have two input fields, field_A and field_B. In field_A the user can choose from one of 4 pre-set values (A, B, C, D). Now, depending on this value choosen for field_A, the F4 help of field_B (and of course field_B's type) should change accordingly this selection in field_A.
So I have to questions:
1.) How to change an input field's type dynamically on a selection screen?
2.) How to set the F4 help of an input field dynamically on a selection screen?
Thanks in advance for your help!
Kind regards, Matthias

Hi,
Check below sample code where in material F4 is Dynamic based on the radio button selected i.e. deletion flag set or not.
Hope this is what you are expecting.
TABLES mara.
PARAMETERS: po_lvorm RADIOBUTTON GROUP g1 USER-COMMAND ucomm, "Deletion flagged
            po_nondl RADIOBUTTON GROUP g1 DEFAULT 'X'. "Deletion not flagged
SELECT-OPTIONS: so_matnr FOR mara-matnr.
TYPES: BEGIN OF t_mara,
         matnr TYPE mara-matnr,
       END OF t_mara.
DATA: i_mara TYPE STANDARD TABLE OF t_mara,
      i_rettab TYPE STANDARD TABLE OF ddshretval,
      wa_rettab TYPE ddshretval.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_matnr-low.
  REFRESH i_mara[].
  IF po_lvorm EQ 'X'.
    SELECT matnr INTO TABLE i_mara FROM mara WHERE lvorm EQ 'X'.
  ELSE.
    SELECT matnr INTO TABLE i_mara FROM mara WHERE lvorm EQ space.
  ENDIF.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
  DDIC_STRUCTURE         = ' '
      retfield               = 'SO_MATNR-LOW'
  PVALKEY                = ' '
     dynpprog               = sy-repid
     dynpnr                 = sy-dynnr
  DYNPROFIELD            = ' '
  STEPL                  = 0
  WINDOW_TITLE           = WINDOW_TITLE
  VALUE                  = ' '
     value_org              = 'S'
  MULTIPLE_CHOICE        = ' '
  DISPLAY                = ' '
  CALLBACK_PROGRAM       = ' '
  CALLBACK_FORM          = ' '
  MARK_TAB               = MARK_TAB
IMPORTING
  USER_RESET             = USER_RESET
    TABLES
      value_tab              = i_mara
  FIELD_TAB              = FIELD_TAB
     return_tab             = i_rettab
  DYNPFLD_MAPPING        = DYNPFLD_MAPPING
   EXCEPTIONS
     parameter_error        = 1
     no_values_found        = 2
     OTHERS                 = 3
  IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  CLEAR wa_rettab.
  READ TABLE i_rettab INTO wa_rettab INDEX 1.
  IF sy-subrc IS INITIAL.
    MOVE wa_rettab-fieldval TO so_matnr-low.
  ENDIF.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_matnr-high.
  IF po_lvorm EQ 'X'.
    SELECT matnr INTO TABLE i_mara FROM mara WHERE lvorm EQ 'X'.
  ELSE.
    SELECT matnr INTO TABLE i_mara FROM mara WHERE lvorm EQ space.
  ENDIF.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
  EXPORTING
  DDIC_STRUCTURE         = ' '
    retfield               = 'SO_MATNR-HIGH'
  PVALKEY                = ' '
    dynpprog               = sy-repid
    dynpnr                 = sy-dynnr
  DYNPROFIELD            = ' '
  STEPL                  = 0
  WINDOW_TITLE           = WINDOW_TITLE
  VALUE                  = ' '
    value_org              = 'S'
  MULTIPLE_CHOICE        = ' '
  DISPLAY                = ' '
  CALLBACK_PROGRAM       = ' '
  CALLBACK_FORM          = ' '
  MARK_TAB               = MARK_TAB
IMPORTING
  USER_RESET             = USER_RESET
  TABLES
    value_tab              = i_mara
  FIELD_TAB              = FIELD_TAB
     return_tab             = i_rettab
  DYNPFLD_MAPPING        = DYNPFLD_MAPPING
  EXCEPTIONS
    parameter_error        = 1
    no_values_found        = 2
    OTHERS                 = 3
  IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  CLEAR wa_rettab.
  READ TABLE i_rettab INTO wa_rettab INDEX 1.
  IF sy-subrc IS INITIAL.
    MOVE wa_rettab-fieldval TO so_matnr-high.
  ENDIF.
Thanks,
Vinod.

Similar Messages

  • Can I get context sensitive offline help for Adobe audition?

    I've linked the CS6 Help PDF successfully to F1, but that's very clunky when you're trying to figure out an effect and the link that says "Shows help for this effect" is broken.  I recall CS5 and 5.5 had context sensitive help.  I know for sure Audition 3.0 does.  I'm a US contractor that's forward deployed and an Internet connection is not something we can take for granted.

    Charles,
    Thanks for the reply.  I've been to that site and have followed the instructions.  What that gets you is a general help PDF document that opens when you push the F1 key.  If you navigate around Audition CS6 there are various places where you'll see a small "I" in a circle.  If you hover over it with your cursor, a balloon pops up saying "Get help for this..." and references the function you're in, for example an effect.  If you're online and click on it, it opens the relevant web page on the Adobe support site.  If you're not online, you get nothing.  This is not the case in Audition 3.0 and if I recall right, 5.0 and 5.5 where you get context sensitive help for various effects and other functions stored with the program on your computer, like most programs from other vendors.
    I think the basic problem is Adobe is so wedded to their "Creative Cloud" model that they're impairing their product.  Aside from my own philosophical objections to cloud computing, Adobe is totally missing out on emerging markets and economies.  I'm currently in Afghanistan working with locals on building the country's broadcast industry.  There are a lot of talented people here that work in radio production and they all use Adobe Audition, but version 3.0 exclusively.  Most can't afford CS6 and Adobe Audition CC is useless because of the pricing structure and the lack of reliable Internet.  This is also true for other countries I've visited.
    Sorry for the soapbox tirade, and thanks again for the reply.  I think you've confirmed that the answer I'm looking for doesn't exist.  If you can check and see if I'm wrong, I'd love to know that.  I'm thinking of rolling back to Audition CS 5.0 or 5.5 and I'd rather not.
    Regards,
    Steve

  • Creating context-sensitive HTML Help without using Map #s

    I am uisng RH 8 and am producing a compiled HTML Help file.
    I am wondering if there is another way to call a topic from our application without using the MAP numbers in RH.
    The developer would like to use the MAP ID (string) instead.
    Is there a way to do this?
    Please let me know.
    Thanks.

    Your points are valid but there are also situations when urls are an excellent method.
    For some projects our developers name fields and we have a method of identifying the name applied. We use that as our filename. By that means they know what the help file will be and can create the call before the topic exists and we don't have to maintain map ids for those projects. If we should fail to create the topic, the call has the logic to go to a higher level.
    I wouldn't advise using map ids or urls, I would say understand how both work, their pros and cons, and then decide what works for the project.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Creation of context sensitive help with pure FM 12 usage doesn't work

    Hi,
    I hope somebody is able to help me with a good hint or tip.
    I am trying to create a context-sensitive Microsoft Help with FM12 only using the abilities of FM (no RoboHelp). For some reasons, my assigned ID's are not used in the generated chm file and therefore the help does not work context-sensitively.
    What did I do?
    - I created my FM files and assigned topic aliases to the headers. I did this two ways: a) using the "Special" menue and assigning a CSH marker and/or b) setting a new marker of type "Topic Alias" and typing the ID. I used only numeric IDs like "2000" or "4200",
    - I created a .h file (projectname.h) - based on the format of the file projectname_!Generated!.h (I read this in some instructions). So the .h file (text file) looks like this:
    #define 2000 2000 /* 4 Anwendungsoberfläche */
    #define 2022 2022 /* 4.1.1 Menü Datei */
    #define 2030 2030 /* 4.1.3 Menü Parametersatz */
    #define 2180 2180 /* 6.6.7 Objektdialog Q-Regler */
    #define 2354 2354 /* 6.9.2 Objektdialog Extran Parameter */
    #define 2560 2560 /* 6.9.5 Objektdialog Extran2D Parametersatz */
    - I published the Microsoft HTML Help. A projectname_!Generated!.h has been created. My IDs were not used in this file:
    #define 2000    1
    #define 2022    2
    #define 2030    3
    #define 2180    4
    #define 2354    5
    #define 2560    6
    - When I open the .chm file and look in the source code, the ID even is totally different. It is not the one, I assigned in FM, it is not the one which I assigned in the projectname.h file and it even is not the one, which was put in the projectname_!Generated!.h file. It is a generated name starting with CSH_1 ...n in a consecutive way numbered.
    Example:
    <p class="FM_Heading1"><a name="XREF_72066_13_Glossar"></a>Gloss<a name="CSH_1"></a>ar</p>
    What goes wrong? Why does FM not take my assigned IDs? I need to use these IDs since our programmers are using those already - I had to re-create the whole online help but the programs stay untouched.
    Please help!
    Many thanks
    Mohi

    Hi Jeff,
    thanks for your note!
    The text in my marker is just a number like "2000" or "4200". As said, I created manually a my.h file and used this marker there. E.g.
    #define 2000 2000.
    Whereby the first 2000 (in my opinion) is the marker text and the second 2000 is the context ID which the programmers are using for the context sensitive call of the help. My definitions in the my.h file were translated to #define 2000 1 (in the my_!Generated!.h file). The source code "translates" the context ID into CSH_8.
    I am still confused :-/
    Thanks
    Mohi

  • How can I reference an external help file from context sensitive help at the control level?

    My goal is to provide context sensitive help for each control displayed on the front panel using a help file created externally. I know that at the VI level I can specify a Help Path; I want the same behaviour for each control inside a VI. I also know about creating a custom control and specifying the Help Path in there, but it doesn't help in this situation, for I have hundreds of controls in my application and I cannot go back and replace each one with a unique .ctl. If I could override each instance of the custom control with unique path data that would do the trick, but that's not how it works.
    Is there a way to add the Help Path information to regualr controls?
    -euge
    ne

    This functionality is not yet built into LabVIEW.
    About all you can do is cut and paste the help for each control into the description for the control. It is tedius but a finite task.

  • Is there a way to open context-sensitive help in a new window with RH10?

    I'm linking my context sensitive help using the RoboHelp_CSH.js file to my web application.
    The correct topic opens when I click the help link, but it opens in a pop-up window. This causes problems in Firefox and Chrome (which block pop-ups by default).
    Is there anyway to force the context-sensitive help topics to open in a new window?
    I've tried adding
    <p><A HREF="javascript:RH_ShowHelp(0,'http:/myurl/index.htm', HH_HELP_CONTEXT, 100)" target="_blank">Help</A>
    which opens an empty tab in Firefox with no content in it. And it doesn't work in Chrome either.
    Has anyone else run into this? Any help is greatly appreciated.
    Thanks,
    Colleen

    Hi and welcome to the forums.
    Using the RoboHelp API, that is quite a bother. (Read: major pain)
    Fortunately, there is a simple solution:
    <a href="http://myurl/index.htm#<id=4>>newwnd=false" target="blank">Help<a/>
    This link does exactly the same, only opens the help in a new browser window.
    You may also be interested in my custom WebHelp API: http://www.wvanweelden.eu/blog/2012/08/03/custom-webhelp-apis
    Greet,
    Willam

  • Robohelp 7 - Context sensitive help and map ID's

    Hi there,
    Long time reader, first time poster. Let me just say my background is in training, as opposed to technical writing or software, so forgive me if my technical knowledge seems lacking.
    My issue is that I've been presented with a bought in software product that the company I work for uses, and it's been updated. A year or so ago, we took their product, rebranded it and released it. The help was generated for our software build internally, producing a .chm file, which then mapped to their software to make it context sensitive for about 10 of 58 topics (top level only). (The original vendor provided an .ini file with some map id's)
    My issue is that over the year, numerous changes have been made to the Word document, and it doesn't really resemble the original anymore. It is used to produce a manual, and from this manual, one chapter is imported into Robohelp 7 without images and converted to .chm. I've managed to import the chapter, convert it and produce the .chm file, however I am at a com-lete blank when it comes to making it context sensitive. I have several questions therefore...
    1. Is it possible to create a new .chm that links to the old map id's? And if so what do I need to do?
    2. Would it be possible to simply import the new Word file to the old project if the topics stayed the same? (Would there be much manual work?)
    3. If these files are to be localised, what needs done to make that process as painless as possible? (The manual will be translated and we get that back)
    Further details on the project. It's approx. 58 topics long, ranging from 20 sentences in one topic to approx. 250 in another. There are jump hotspots within the project, and a TOC has been produced. (I believe this makes the topic ID's sensitive?)
    The old project had an .hh file with each line having the format: "#define     1001     1001", my new .hh file states "#define     topic_title     1". I believe this is important and these may need to match?
    The old project had a .hpt file with each line in the format: "23|1001|topic title", my new .hpt gile states: "23|topic_title|topic title". Again as these seem to refer to reference I believe they'd be important.
    Any help would be greatly appreciated! Nothing I've tried so far has worked
    Regards,
    Wazza

    The construction of your call is invalid. You can use a URL with the structure path/startpage.htm#topic.htm to call a specific topic but that is not how it works with map ids. There are topics on my site about calling webhelp by various means.
    I don't know where you got the trial of RoboHelp 7 but you will not be able to buy a full version as the current version is RoboHelp. Also Adobe have announced various sneak peeks of RoboHelp 9. There is a clue there.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Muddled context sensitive help ids

    Hi All
    I've done some quite major updates to a help project,
    including the creation of new context sensitive help Map Ids.
    When I generate the help I get two files, cshdat_webhelp.htm
    and cshdat_robohelp.htm. The cshdat_webhelp.htm contains the
    correct map ids, however cshdat_robohelp.htm is still picking up
    old IDs and some that look like random IDs, and this appears to be
    the file that is called from the top level file
    (projectname_rhc.htm) that the application calls. We can't get the
    app to work with the projectname_csh.htm, so we need to use the
    projectname_rhc.htm and cshdat_robohelp.htm files.
    The only map file used in the project is the BSSCDefault.h
    file, which only contains the correct IDs. I can't understand where
    it is picking up the old/incorrect map IDs from. Can anyone please
    help??
    Thanks in advance,
    Emma.

    In case this is of use to anyone else, I found that there was
    a .ppf file (whatever that is) in the directory, which was somehow
    messing with the cshdat_robohelp.htm file. I deleted this, and hey
    presto, problem solved.
    Emma.

  • Cannot get simple merged HTML Help project going with context sensitive help

    I have built a very simple project in RH9 from scratch, consisting of a main project and a sub-project now after I have modified our large project in changing every hyphens from file and directory names over a couple of days now only to see that context help still doesn't work.
    The map IDs are not visible in the main project. To test it in the example, invoke the CSH-Test (context sensitive help test) from the Toolbox, enter !SSL!\Microsoft_HTML_Help\main.chm in the Offline field  and a number 57 in the ID field. In our large project I'm getting nothing (no window pops up). In this example I'm getting this mystical error box, saying HH_HELP_CONTEXT called without a [MAP] section.
    Christoph

    Hi William,
    thanks having a look at my problem. I read in another thread today a description which comes close to the problem I'm facing.
    Maybe I formed the mini sample not exactly as our problem is situated. (thus the doubled map ids you were claiming).
    I will try to explain again: we have a couple of CHMs in separate single help projects. These go into their own TOCs, Index Glossar etc. like in sub1->Einzel. For the merged project we produce a chm that goes into the directory of the master (main) project, like in sub1->Primäres Layout.
    Each Topic in the sub project (e.g. sub1->Erstes Thema) has a symbolic link address (e.g. "Linkadresse=det_org_angaben), which is mapped to the MAP ID via the .h file.
    This all used to work that way in RH5.
    Now it seems that this information between the map ID and the symbolic Linkaddress gets lost with the merge process.
    I am not using the same ID (57) twice in my example. The MAP ID in the main project comes from the sub1 project (see the yellow locked MAP ID).
    The simplest test is using the CSH-Test in the Toolbox giving the main.chm as the Helpfile to test and enter the 57 as a MAP ID.
    The idea behind is to use one CHM later to have to open in the application. The other CHMs of the subprojects only need to be present in the application directory. Then you invoke HtmlHelp(with the MAPID),like I posted in this thread.
    The method you are suggesting in mapping the ID to the topic in the main project will not work since the topic is in the CHM of the sub project.
    I modified the sample project once again (somehow the baggage files were not showing) to come closer to the constellation we are using in the large project, though I'm getting the "HH_HELP_CONTEXT called without a [MAP] section" error (which does not occur in our large project).
    Christoph

  • Context-sensitive help breaking in RoboHelp 8

    Peter - you're a lifesaver and I hope you're out there today . . . or somebody's out there who can help . . .
    I shouldn't have said that in my last post about something being the "wackiest" thing I'd ever seen in RoboHelp. Now we have a new problem that's much more serious.
    We have an aforementioned (in previous post) enormous RoboHelp 5 project, converted to RoboHelp 8 after much anguish, replacing hundreds of WYSIWYG graphics with true code etc. Map IDs were *not* touched.
    Now the context-sensitive help for our VB app is not working, even though the map IDs are still in place on both ends (dev and docs) and all the relevant .hh files were included in my compile. Some topics (within the same help file) appear when called from the app, some don't.
    A developer had a theory that in one case the topic ID was assigned (on their end) during design time, the other during run time. He's testing it now.
    If it doesn't work, I have no idea where to begin. Is anyone aware of any changes in RoboHelp 8 that would affect the way the .hlp links to VB?
    Thank you! - Sandy

    Hi all,
    I wanted to thank everyone who responded and post a follow-up to this, as well as a caution.
    I felt like the world's biggest *** when I found this out, but it turns out that in my .doc files for this particular .hlp file (our project includes multiple .hlps)  "Automatically Generate Map IDs" was turned on, and of course it should not have been. So the problem was on my end, not the software developers' end.
    However - part of the reason it took me so long to figure this out is that I know I never turned that setting on. The other writer on this project has been here longer than I have and never would have turned it on. And it's not like that command is easy to stumble upon and set off accidentally (For those of you who don't know, it's under File>>Project Settings in RoboHelp Explorer). I have to think that RoboHelp defaulted those settings in somehow, maybe during our conversion from 5 to 8.
    (Unless someone knows a way that you *can* just stumble on this setting and trigger it accidentally, maybe by inserting some random character in your .hpj . .  . if anyone does, I would love to know about it.)
    So, especially if you just changed versions of RoboHelp, I would encourage you to be proactive and, if you don't want "Automatically Generate Map IDs" turned on, double-check and make sure nothing is selected for Automatic Map ID Generation on the "Map Files" tab of the Project Settings dialog. After what happened to me this last time around, I'm probably going to check it every time I compile. - why not add another neurosis to the list?
    Thanks again - Sandy

  • Context-Sensitive Help Issues

    I have problem where context-sensitive help markers disappear
    from my .h files.
    I started with a .h file from my old WebWorks project. After
    a little reformatting, I was able to get the CSH Map IDs to load
    and map properly to my RH topics (I had to do the mapping manually
    even though the topic names were the same) . I was also able to add
    several new Map IDs to facilitate help in the latest version of our
    product. The final help was tested and worked properly.
    Now that it's time to update the help for another new release
    of our product, I am noticing that many, many of the Map IDs that
    were in my project before have now disappeared. Anybody have any
    idea what is happening here?
    I'm sick of struggling to get RH to play nice with these .h
    files. Manually remapping the Map IDs to the topics each time we
    release a new project is terribly dull work and time consuming.
    Is there any way to add the Map ID numbers to the CSH markers
    in FM so that RH can automatically map the IDs to the topics? I
    want to use the Map IDs we already have established with our
    development team; I don't want RH's automapping which starts at one
    and advances incrementally through all of your topics).

    I think you dint check the option "Project Map File" from drop down list in the dialog box for editing Map ids.  For this, in the main menu point to "Edit" tab, select "Map Id's". Edit Map Ids dialog box appears. Choose the option for Map File as "Project Map File" from the drop down list.

  • Does Robohelp HTML V 7.02.001 support Arabic language to generate context sensitive help

    Kindly let us know URGENTLY if RoboHelp 7.02.001 supports Arabic language to generate context sensitive help in Arabic. If RoboHelp does not support, let us know if there is any other workaround solution or third party integration tool that may help us to generate Arabic help files.

    The supported languages are listed in the help file, they do not include right to left languages.
    There are no tools that I know of but last week there was a post that might interest you.
    http://forums.adobe.com/message/2242235#2242235
    See www.grainge.org for RoboHelp and Authoring tips

  • Context Sensitive Help in Different Formats

    I have a large help project in Robohelp HTML 8.  My project manager would like to have context sensitive help for many objects in our application.  I believe that context sensitive help cannot be used if you are generating a WebHelp format, but that it can be used for a Microsoft HTML format (chm file).  Is this correct?

    I thought you had CHM help working as CSH and were looking to go to WebHelp?
    Both outputs can be used to provide CSH.
    How the topics are called will be decided by your developer.
    See www.grainge.org for RoboHelp and Authoring tips

  • Context-Sensitive Help in RoboHelp 9

    Hi -- I recently upgraded from RoboHelp 5 to RoboHelp 9.  My first WebHelp project that I created using RoboHelp 9 is giving me problems with Context-Sensitive Help.  When a user clicks on a Help link that is supposed to bring him/her to a specific topic, the user is brought instead to the project's main screen with the TOC, Index, and Search. 
    Is there something specific that my Developers and I should be doing differently in RoboHelp 9 vs. RoboHelp 5?  Is the problem being caused because I made the jump from 5 to 9 without upgrading in between? 
    Any help that anyone can offer will be greatly appreciated. 
    Thank you.

    Maybe this link will help.
    http://www.wvanweelden.eu/robohelp/context_sensitivity_in_webhelp
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Context-sensitive help - where is the CS topic folder in the output files?

    I have created a FlashHelpPro help file in RoboHelp 7 HTML. In the project setup pane, I have Map ID'd my context-sensitive topics and linked them to their respective pages. I generated the project, but there is no folder containing the context-sensitive topics in the output files. As a result, the developer suggested that I need to create a separate folder in the Project Manager that contains all the context-sentitive topics. Is this actually the next step, or can the developer find what he needs elsewhere in the files?
    I haven't seen anything about creating a separate folder in the Project Manager, which seems redundant as there is the 'Context-sensitive Help' folder already present in the Project Set-up. Do I need to create a separate folder, as suggested by the developer? If not, where can he find the context-sensitive files in the output? Thank you.

    Hi,
    What do you mean that the context sensitive topics are not in the output? RoboHelp generates your output and (in WebHelp, so the same should count for FlashHelp) puts the context sensitivity in cshdat_webhelp.htm. Your developer doesn't need to worry about this, he just has to get his call right.
    For information on calling the help, see http://www.grainge.org/pages/authoring/calling_webhelp/calling_webhelp.htm. It's for WebHelp but it should be the same for FlashHelp.
    If your developer only wants to know which mapid's he has to call, you best give them your map files (the .h files).
    Greet,
    Willam
    This e-mail is personal. For our full disclaimer, please visit www.centric.eu/disclaimer.

Maybe you are looking for

  • AVCHD to DVD: How to export using FCE

    I've been using AVCHD for two years now. But when I burn it using the DV format the video thus not look the same from the AVCHD. What would be the best setting to use... Thanks in advance.

  • Recording Streaming Audio

    I know it's a newb question but a forum search didn't help me yet... I've been using AA 1.0 for the last 5 years on my HP DV4170US laptop and when I needed to record something from an audio stream or from a DVD, etc. - I'd go to the volume thing in b

  • JAXB for dif version of schema

    Hi, There: Thanks in advance if anyone has any idea about my question I am using JAXB for databinding, my schema has two versions. The differnce of two versions is just one namespace: for example one version is: <?xml version="1.0"?> <xs:schema targe

  • Migration from Windows Small Business Server 2003 to Snow Leopard Server

    Hello, I'm going to migrate a Windows Small Business Server 2003 Standard to a Mac Mini Snow Leopard Server 10.6.x in a few weeks. I have 2 questions : Is there an official process to migrate my Exchange server datas ? Snow Leopard Server has it Wiza

  • Camera Raw in PSE 11

    Does LCP work with PSE 11 Camera Raw.  If so, how is it used.  How is "Embedded" changed to the spefic camera/lens profile