ChaRM Copying Status Headers and Conditions

All-
I am facing some problems with my ChaRM scenario. I have made copies of the transaction, status profile, header, actions, etc.
I am confused about how to configure Conditions for the copied action definitions. Since the conditions don't copy over automatically I am doing it manually (comparing with what is already there for SDHF). However I see that the User Status is something like E0001+DHFHEAD. However my status header is ZDHFHEAD...I fear that I am not pointing to the right values at this point.
When I am testing my process flow actions are not showing up in the right place for my copied transaction types. Is there something else I need to do / copy here to get this working cleanly?

The plus sign is a wildcard character - it will work with SDHFHEAD or ZDHFHEAD.  You can change it to ZDHFHEAD if you want, but it is not necessary.
Michele

Similar Messages

  • Material exchane ,copy pricing and conditions from main item to sub item.

    Hi All,
    We are using parts exchange/interchangeability in the transaction ME22N,
    While using ME22N we are exchanging  main item with interchangeable part and while doing so we want to copy pricing and conditions from main item to sub item.
    But its not happening.
    As per sap help its possible, details describe below.
    http://help.sap.com/erp2005_ehp_04/helpdata/en/c2/0a5288b77d11d3bcce00105ab03aee/content.htm
    Price Determination by Copying from Main Item
    In the case of price determination by copying from the main item, the net price of the originally ordered part is still used for the superseding part in a part exchange.
    The system copies all conditions from the main item to all sub-items and takes into account the order quantity for the main item when calculating scale prices. It does not take into account the conditions and scale prices that exist for the interchangeable part.
    You cannot change the conditions, which have been copied from the main item, at sub-item level. It is possible, however, to define additional conditions for each sub-item.
    Prerequisites
    A calculation schema, which can be altered on an individual basis in Customizing, has been supplied for the price determination.
    In the vendor master record, you have set the schema group 09 (interchangeable material).
    But in customizing I didnu2019t find value 09 for schema group .
    Can any buddy through some light on missing pieces which need to be set?
    Thanks
    Regards
    Ritesh

    Hi,
    Can you check few more things and tell me?
    - In this exit, does XVBPA and XVBAP contains all the line items. ( main and sub items ).
    - In Sales order creation time, do these table have VBELN populated when this exit triggers.
    - If you modify XVBPA or XVBAP in this exit, do they get overwritten after that.
    Try this code. See if it works.  Let me know if you still have a problem.
    DATA: wa_hvbpa LIKE vbpa,
          wa_xvbpa like vbpa.
    CLEAR: wa_hvbpa, wa_xvbpa.
    * check if HVBAP and VBAP line items are not same
    IF vbap-posnr <> hvbap-posnr.
    * read the ****-to partner from main-item
      READ TABLE xvbpa INTO wa_hvbpa WITH KEY posnr = hvbap-posnr
                                              parvw = 'WE'.
      IF sy-subrc = 0.
    *   read the line item data for sub-item based on main item
        READ TABLE xvbap WITH KEY posnr = vbap-posnr
                                  uepos = hvbap-posnr.
    * See if current line is the child of that BoM parent
        IF sy-subrc = 0.
          MOVE wa_xvbpa-kunnr TO xvbpa-kunnr.
          MOVE xvbap-vbeln TO wa_xvbpa-vbeln.
          MOVE xvbap-posnr TO wa_xvbpa-posnr.
          MOVE 'WE' TO wa_xvbpa-parvw.
          MODIFY vbpa FROM wa_xvbpa.
        ENDIF.
      ENDIF.
    ENDIF.
    Regards,
    RS

  • HT1904 When I try to update the Star Walk app I get a message requiring acceptance of new terms and conditions.  It never stops.  I accept even email myself a copy but I keep getting the same message.  How do I get past the message?

    When I try to update the Star Walk app I get a message requiring acceptance of new terms and conditions.  It never stops.  I accept even email myself a copy but I keep getting the same message.  How do I get past the message?

    The issue should be fixed now. Sorry about that, another Apple snafu but at least a short one.

  • Cfdocument and conditional headers

    Using cfdocument I am creating a PDF that starts with an
    information page that requires no header. On each of the following
    pages we want a header to appear.
    The problem is that the header is appearing on all pages,
    including the first. The code I'm using inside of cfdocument is
    posted below.
    Thanks for any suggestions.
    -Scott

    The blog article does only work if you have a new section for each report.
    This can be achieved with a for-each@section statement.
    (Search the user guide for @section -
    Section Advanced Reports - Batch Reports
    and
    Controlling the Placement of Instructions Using the Context Comma)
    You can also use Word Section breaks to change headers and footers.
    Please also look in the Userguide under
    Createing an RTF template ->Template Features->Last Page Only Content
    Klaus

  • Unable to print all the terms and conditions pages in the PO.

    Reqt: The PO includes terms and conditions as the last page.
    Currently the program only prints out the first page of the Terms and Conditions regardless if it is one or two pages.
    Only one page(image) is displaying in the last page of smartform.
    These terms and conditions pages are passing as graphics(images), We are passing the GRAPHICS under the TABLES Main Area in LAST page WINDOW.
    But only one page (image) is displaying, but not others.
    Can anyone help to solve the above issue.
    Regards,
    Kishore

    you can create your terms n condition texts in SO10(standard text). THEN
    If u r using smartform then do this:
    goto the general attributes of a text element. From the drop down menu, convert the text type to include text.
    The just as in read_text fm pass the parameters
    text name, text object, text id and language.
    Every thing will be handled automatically
    AND if its a sap script then:
    To include the contents of another text into the current text, use the INCLUDE control command. SAPscript still treats the text to be included as a separate text. The text is copied over only at the point at which the output is formatted.
    Thus the use of the INCLUDE command always ensures that the most current version of a text is included into the output, since the text is not read and inserted until the output is formatted.
    Syntax:
    /: INCLUDE name OBJECT o ID i LANGUAGE l PARAGRAPH p
    NEW-PARAGRAPH np
    You must specify the name of the text to be inserted. It can be up to 70 characters long. If the name of the text contains spaces, then you must enclose it in quotes as a literal value. You can, alternatively, specify the name via a symbol. All remaining parameters in the INCLUDE command are optional. If an optional parameter is not specified, then SAPscript uses default values as applicable for the calling environment.
    /: INCLUDE MYTEXT
    The text MYTEXT is included in the language of the calling text.
    /: INCLUDE MYTEXT LANGUAGE 'E' PARAGRAPH 'A1'
    The text with the name MYTEXT and the language E is included, regardless of the language of the calling text. The paragraph format A1 will be used as the standard paragraph type for this call.
    Optional parameters:
    u2022 LANGUAGE
    If this parameter is not specified, then the language of the calling text or the form language are used for the text to be included. If the language is specified, then the text will be fetched in this language, regardless of the language of the calling text.
    u2022 PARAGRAPH
    The text to be included is formatted using the style allocated. The PARAGRAPH parameter can be used to redefine the standard paragraph for this style for the current call. All *-paragraphs in the included text will then be formatted using the paragraph specified here.
    u2022 NEW-PARAGRAPH
    The first line of the text to be included will be given this format indicator, as long as it is not a comment or command line. If the optional PARAGRAPH parameter (see above) is not specified, then all *-paragraphs of the included text will also be formatted using the paragraph specified in the NEW-PARAGRAPH command.
    u2022 OBJECT
    In order to completely specify a text, information about the text object is also required. There are a number of restrictions and other rules that depend on the object type of the calling text:
    o Any kind of text can be included in a form. If no object is specified, then TEXT will be used (standard texts).
    o In the case of a document text (DOKU object), you can include only document texts. This object type is also assumed if no object is specified in this environment.
    o Only hypertexts and document texts can be included in a hypertext (DSYS object). If the OBJECT parameter is missing, then DSYS is used as the default value.
    o In the other kinds of text you can include only standard texts (TEXT object), document texts or hypertexts. If there is no specification, then the default object is TEXT.
    u2022 ID
    The text ID is a part of the text key, which permits further text objects within a given object. If no ID is specified, then the default include ID is used from the TTXID table for the calling text. If there is no entry in this table, then the text ID of the calling text is used.
    The following consistency check is applied both to the ID and the object:
    u2022 All text IDs are allowed in a form.
    u2022 In document texts, only document texts may be included that have text IDs TX (general texts) or UO (authorization objects) and also other document texts with the same text ID as the calling document text.
    u2022 In DSYS texts, all DSYS texts can be included, whatever ID they have. Document texts to be included must have one of the IDs TX or UO.
    u2022 Into the other texts, standard texts with any allowable text ID, DSYS texts with all IDs, and document texts with the IDs TX and UO can be included.
    The INCLUDE command returns a status code in the SAPSCRIPT-SUBRC symbol:
    u2022 0: the text include was successful.
    u2022 1: the command could not be executed because it contained syntax errors.
    u2022 2: the rules governing the text to be included were not followed (see above).
    This value cannot occur if the command is used in a SAPscript form.
    u2022 4: the specified text could not be found.
    Once you define the standard text in SO10 you can include text by the above process or use the function module read_text:
    .............IN Smartform.......
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    CLIENT = SY-MANDT
    id =
    language =
    name =
    object =
    ARCHIVE_HANDLE = 0
    LOCAL_CAT = ' '
    IMPORTING
    HEADER =
    tables
    lines = i_tab
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    NOT_FOUND = 4
    OBJECT = 5
    REFERENCE_CHECK = 6
    WRONG_ACCESS_TO_ARCHIVE = 7
    OTHERS = 8
    So you want to know how get the parametrs right. This is how"
    In SO10 goto goto menu -> header
    here u will find all the required parametrs.
    The text lines will be returned in the i_tab.
    U can loop at this itab and display the data.
    Reward points if hepful.

  • Terms and conditions not getting displayed on the last page

    Hi All,
    I have to display a smartform, on the front side of the page i have to display material details and on the back side of the page i have to display terms and conditions. I' am unable to print the material details and terms and conditions in duplex mode, but on the last page only material details are getting displayed, terms and conditions are not getting displayed.
    Can you please help me how to make the terms and conditions get printed on the back side of the last page.
    Thanks,

    I'm a bit confused by the statement "I' am unable to print the material details and terms and conditions in duplex mode".
    I suppose you meant to say "I am able to print the material details and terms and conditions in duplex mode", correct?
    If the problem is that on the last form page, the T&C is not getting printed on the back of the form, you could force the T&C page by using a flow logic command as the very last element of the main window, which gets processed when all the data is already output. For the command, use the 'Go to New Page' and specify the page name for the Terms & Conditions.
    In case this causes an issue that the last page is printed twice (since the T&C page is likely defined with the next page being NEXT_PAGE), then copy the already existing T&C page, call it LASTPAGE and leave the Next Page attribute empty.

  • Push Notifications to end users and Conditional Success Screen Name ?

    Hi,
    Scenario: PO Approval
    Description: I am developing a PO approval application with 3 levels of approval. The HWC application is based on the push notification ( DCN with payload ). When a PO ( Purchase Order ) is created/modified the end user will get the notification. Once the first 2 levels of approval is done from the mobile devices the notification should reach the 3rd level for approval. And Conditional Based Users only View there Profiles, If an User1 Approved PO Approval then only User2 Will get Push Notification but  for User3 it will not Visible, Oncethe User2 Approved then Only User3 will get Push Notifications and these 3 Profiles have to be log in Based on Condition Name & Conditional Success Screen Name.
    Question: How to set to which user the notification should reach. In the "to" field of JSON when I am providing "supAdmin" means the notification will reach all the devices who has the application. Once a PO is created the notification should reach only to user in the first level. Once he approves the PO, then only it should reach to the user in the 2nd level. And finally 3rd level.
    Here Conditional Name is the best way to Log In or is there any other way to show the User based Log in Details, Because Here I am showing a List of Items Based On Log In,  and Based On Log In user Has to view there List of Products and Status.
    How to manage this situation.
    Midhun VP can you please help me on this.
    Thanks,
    Vamsi K

    Yes, DNS is is fundamental for networks, even for Windows networks. The DNS is working well for the existing Windows network and there are no problems in distributing certificates etc.
    There are more than 150 users and 180 devices on the network without DNS problems.
    I don't know how to discover a DNS problem... Windows works well.
    DNS resolves fine... dig does it for "a" records and "ptr" records. nslookup resolves, too.
    When the problem is a faulty DNS, why does the usage of users/devices from OD work with Profile Manager?
    Renaming and/or migrating the ActiveDirectory is not possible. First, I want to be sure that there is a faulty DNS.
    The .local TLD is not optimal for Bonjour/mDNS but I can't believe that there is no workaround

  • Can I omit headers and footers in conversion?

    Hi everyone,
    I am having problems with footers and headers each time I convert from pdf to Word using Adobe ExportPDF. It is an excellent program, but I have a problem.
    I follow the instructions and the pdf converts to Word fine, but the converted text has a footer and header at each page break.
    I tried converting after making the pdf continuous, i.e. no page breaks, but the footer and header still turns up where a page would be!
    I have great difficulty dealing with the text in the footer and header and have to type in the last line on one page and the first line on the next page in order to complete the full text conversion. Can I not convert from pdf to Word without footers and headers?
    If I can't get rid of the footer and header, then how to I deal with the text in the footer and header without wasting time and effort typing it in or dragging it from the footer and then having to get rid of the empty footer (also, same with header, of course)?
    I thought I would just add this: When I create a Word document from scratch, the last line on the page and the first line on the next page are not in footers and headers. So why are they contained  in footers and headers after conversion using Adobe ExportPDF?
    Many thanks folks,
    Gareth

    Hi Test Sceen Name, I wasn't quite sure how to address you by name, but you will correct me if required, I'm sure.
    I can't help but notice that you have 4,392 posts to your credit, so you might say I am a little intimidated here, but I must say what I believe, though your answers will undoubtedly influence me, it's true.
    Now, what is happening to me is that "every" document the problem of which I complain occurs at "every" page break.
    If the software is "guessing" then it is guessing the same thing all the time. I am talking many hundreds of pages here and that is a lot of extra work for me to correct.
    As for assuming this is not happening to others because of lack of response, surely if others read about my problem and have the "same" experience as me you would think that one of them at least would say something.
    Am I the only one that this is happening to? If it is commonplace among members, then do they not have some kind of obligation to help a fellow member, if only to say, "Give it up, I have this too and there is no solution other than manual correction."? Would it not be somewhat perverse, to some degree anyway, for other members to experience the same problem as me and not pass on how they dealt with it?
    Anyway, in light of all other non developments, I must bow to your truly considerable experience and put it down to a flaw in the software that the software then tries to correct by guessing.
    I have been using MS Word since version 5.1a, a very long time ago. Content is not supposed to end up in footers or headers. Data, like date, page number and other repetitive text, yes, but content never. So it would seem that Adobe ExportPDF has a serious flaw, though in smaller documents it is one that can be surmounted reasonably. But for the long document, correcting it is a lot of work, too much work.
    Well, until Adobe addresses the problem and fixes it I shall have to carry on either eradicating the footers and headers and replace the missing content, the last line on the page and the first line on the next page, with text from the PDF and then adjusting the font, spacing etc, or, copy what is in the footer and header and paste it where it belongs then getting rid of the now empty footers and headers.
    Copying text from the PDF is less messyand quicker. So this I must do at every page break on every document that I submit to Adobe ExportPDF whether the document starts out with one long continuous page or not and even though resort to footers and headers has not been made. I shall hope that soon the software stops guessing.
    Many thanks indeed for your kind consideration of my problem. I respect your considerable experience with Adobe products and for now, anyway, I shall take your advice as the last word as no other responses seem to be forthcoming. No doubt, because they agree with you.
    I shall consider this string closed now from my point of view and have maked your response as helpful. I hope that is okay.
    Thank again and all the best,
    Gareth

  • In Pages, How can I get headers and footers to show up on more than the first page of each section?

    In Mountain Lion, I considered myself a fairly expert user of Pages. Since "upgrading" to Mavericks, I can't get even basic things to work anymore. My current problem is that the headers and footers are only showing up on the first page of each section. A related annoyance is that if I copy the information in a header or footer, all the associated formatting disappears when I paste it. But the first problem is the one that matters — headers and footers that only show up on one page sort of negate the whole point of headers and footers.

    If you click the link I posted previously, it takes you right to the Pages community.
    Here >  Pages: iWork: Apple Support Communities
    Then click New.

  • Since upgrading to ver 8 headers and footers on printing web pages do not print; typing response is terrible, type 20-30 char before seeing them; my PC or Firefox 8?

    If I do an end task on plugin_container using Windows task manager, the typing response problem seems to go away temporarily. However, the plugin_container process soon restarts itself and the typing issue returns. It has happened four or five times while typing this note. Sometimes I start typing and the display of characters typed does not appear or while typing an displaying what is typed normally all of a sudden stops being displayed and eventually is displayed all in a blast of characters.
    When I try to print a web page, the header and footer info that I have selected show in the print preview but disappears when I print the page and does not print on the hard copy.
    I believe that both of the above situations began when I upgraded to Firefox version 8.
    I tried to search for problems like the above with Firefox but could find nothing.
    I tried all of the above in IE and IE works as it has in the past.
    Is this a Firefox issue with version 8 or is there something wrong with my PC all of a sudden?

    Response to cor-el suggestions:
    I tried what you suggested as far as checking the theme (it's "Default 8.0") and deleting the sessionstore files (there was one .js file, one -1.js file and one .bak file). I still have the same slow response problems (especially typing, it has gone dead on me for a short time twice while typing this replay so far, now a third time) and lost of headers and trailers and some data.
    I did the suggested actions three times just to make sure that I was doing them correctly. On the first try, the sessionstore.js and sessionstore-1.js was more than twice the size of sessionstore.bak. Since doing what was suggested, the sessionstore.js and sessionstore.bak are, I believe, the same size. I did not write down their size is why I am not certain.
    The printing problem appears to only be with one website which is an investment website which I would prefer not to document here. I print from this website each weekday and I have confirmed that the printing problem started when the upgrade to version 8.0 occurred.
    I need a solution to this or I am going to either go back to IE (Ugh!) or find another browser. The typing delays are an extreme annoyance since I do lots on the Internet including a lot of emailing. The delays also involve the buttons to select functions within a website.
    Is there a way to get back to the version previous to version 8.0?

  • Restrict referance of pricing and condition type from latest PO.

    Hi Experts,
    I am creating Purchase order and at the time of creation of purchase order system is copying prices and condition types from latest PO.
    Which is not desirable to our business process, when I dig out I found out that in standard SAP system
    The system looks at pricing in the hierarchy order as below:
    u2022     Contracts/scheduling agreement
    u2022     Condition records
    u2022     Info Records
    u2022     Last purchase document
    So can some one help me with information how to restrict system to follow this referance of pricing.
    I want to enter price as well as condition type manualy every time user create a purchasing document.
    Also i want to know can it be restricted specificaly for few document type.
    Thanks
    Best Regards
    Ritesh

    Hi sir
    can we try this
    Use the user parameter EVO to indicate that no price adoption from last Purchase Order must take place:
    IMG: MM -> Purchasing -> Environment data -> Default values for Buyers
    -> Setting for Default values.
    Select or setup a default value and on the "price adoption" tab you may choose how copying of conditions from last purchase order must behave. Select "Do not copy".
    Then assign this default value to the user, using the EVO parameter.
    [http://sap.ittoolbox.com/groups/technical-functional/sap-log-mm/price-to-flow-from-info-record-at-plant-level-813066]
    [Re: new info record with same details as archive one.;
    check following notes it may helfull
    569885 About Info Record Update indicator (EKPO-SPINF)
    13127 Update in info record from PO, quotation, contract
    430543 FAQ: Purchasing info record
    675523
    456691
    Regards
    Kailas ugale

  • How can I copy the date and time of a received email in Mountain Lion?

    I recently installed the new Mountain Lion, however I am having a serious issue with the mail application. I use the mail application to download all of my emails and then I copy each one in to a Filemaker Database. I used to be able to copy the headers (from, to, subject, date, time) but now with the new mail in Mountain Lion it will not let me copy the date and time of the email. This is the most important part for me as I need to be able to track when the email was received once I have pasted it in to the Filemaker program. Anyone know if there us an option so that the date and time can be copied from the email?

    I suppose you could copy it from the Raw Source. View>Message>Raw Source

  • OWB 10gR2 map returning status = Complete and Result = Null in Process Flow

    Hi,
    I have an OWB process flow which invokes an OWB map. There are 2 outgoing transitions attached to the OWB map. 1st transition is a conditinal one (on SUCCESS) and the 2nd one is unconditional transition.
    I am monitoring the status of process flow execution in Oracle Workflow monitor. After the process flow is initiated, sometimes the OWB map within shows status = complete and result = OK in workflow monitor (in tab - status). But sometimes it shows status = Complete and Result = Null. In this situation the execution is following the unconditional transition path.
    Can anyone tell me what causes the OWB map to return a Result = NULL? Also sometimes I am getting the map returning a Result = Force (with the same status = Complete).
    The configuration that I am working with is as below ---
    OWB client version : 10.2.0.1.31
    OWB repository version : 10.2.0.1.0
    Oracle Workflow Version : 2.6.4.0.0
    Database version : 10g Enterprise edition release 10.2.0.1.0
    Regards,
    Swagata

    Hi Manohar,
    1. You need to install Oracle HTTP server in a separate Oracle home.
    2.Look for the dads.conf file in the installation. Edit the file, copy the sample code and paste it below and edit the pasted part as under ----
    <Location /pls/<SID>>
    SetHandler pls_handler
    Order deny,allow
    Allow from all
    AllowOverride None
    PlsqlDatabaseConnectString <server name>:<port>:<SID >
    PlsqlAuthenticationMode Basic
    PlsqlDefaultPage wfa_html.home
    PlsqlNLSLanguage "AMERICAN_AMERICA.WE8ISO8859P1"
    </Location>
    3. STOP and START OPMN (Oracle Process Manager & Notification Server)
    4. Use the URL in your internet browser like --- <HTTP server URL>/pls/<SID>/wfa_html.home
    5. When prompted for user id and password, give the schema user id and password where the workflow engine is installed.
    Hope this helps,
    Swagata

  • How do I get the layout guides (A,B,C column headers and 1,2,3 Row Headers) to print with my spreadsheet?

    How do I get the Layout Guides (A,B,C column headers and 1,2,3 Row Headers) to print on my spreadsheet? They are invaluable for discussing the data with my clients over the phone.
    They appear while I am editing, but don't print with the spreadsheet. I know how to do it in Excel, but I am transitioning to Numbers. I can't imagine I have to type them into their own columns and rows. It must be a difference in vernacular that I can't find the solution in the User Guide. Can anyone help?

    Hi ktjobauer,
    Numbers is not Excel and Excel is not Numbers. Numbers is WYSIWYG (at least in File > Print and the actual printout).
    I can't imagine I have to type them into their own columns and rows.
    No, you don't. You can use the charm of Numbers to create cell references for your Excel clients.
    In this Numbers Table, I have added some extra Columns that you can hide later.
    Column B =COLUMN(A2)
    Column C =HLOOKUP(B2,'Table 1-1' :: $1:$2,2,FALSE)      [explanation later]
    Column D =ROW(B2)
    Column E =C2&D2
    Add those formulas to the first Body Row (below the Header Row) and Fill Down.
    Column C refers to another Table which you need only create once, to convert a Column number to a letter:
    and so on from 1-26, A-Z.
    You can move the second Table to another Sheet to hide it. Formulas will automatically adjust to keep the links between Sheets.
    Now in the first Table, select and Hide Columns B,C,D. Formulas will continue to work with hidden cells:
    Regards,
    Ian.

  • Lock Excel 2010 Headers and Footers in Protected Worksheet

    Hi,
    Is there any way to lock Excel 2010 Headers and Footers in a Protected Worksheet?
    Thank You!

    Hi,
    Here is one way to 'lock' the header and footer control, by disabling it in the WorkBook_Open event.
    You indicate that the workbook is 'macro enabled', so if you are well versed in VBA please forgive the following
    step by step 'how to'.
    Copy the following code to the clipboard:
    Private Sub Workbook_Open()
    Application.CommandBars("Worksheet menu bar"). _
    Controls("View").Controls("&Header and Footer...").Enabled = False
    End Sub
    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Application.CommandBars("Worksheet menu bar"). _
    Controls("View").Controls("&Header and Footer...").Enabled = True
    End Sub
    Press ALT + F11
    Double click 'THIS WORKBOOK' in the Microsoft Excel Objects in the upper left quadrant.
    Paste both event handlers into the WorkBook module editing area to the right.
    Close the VBE and return to the worksheet.
    Save the workbook.
    Now, whenever the workbook is opened, the Header and Footer option under the View tab will be disabled (grayed out). When the workbook is closed, the control will be enabled again so it will be accessible in all subsequently opened workbooks.
    If you wish to have access to the header and footer for 'maintenance', copy the following macro to the clipboard:
    Sub HeadnFoot()
    If Application.CommandBars("Worksheet menu bar"). _
    Controls("View").Controls("&Header and Footer...").Enabled = False Then
    Application.CommandBars("Worksheet menu bar"). _
    Controls("View").Controls("&Header and Footer...").Enabled = True
    Else
    Application.CommandBars("Worksheet menu bar"). _
    Controls("View").Controls("&Header and Footer...").Enabled = False
    End If
    End Sub
    ALT + F11 to access the VBE.
    INSERT > MODULE
    Paste the macro into the module editing area to the right.
    Close the VBE.
    Press ALT + F8
    When the Macros window opens, highlight this macro and click 'Options..'.
    Enter a letter to be used as a keyboard shortcut and click 'OK'.
    Close the Macros window.
    Save the workbook.
    Now, when you open the workbook and need to modify the header or footer, press CTRL + your shortcut letter and the control will be enabled. Press the keyboard shortcut again and the control will again be disabled. It is a 'toggle' macro.
    Sincerely,
    Harry

Maybe you are looking for

  • Photoshop CS6 Stuck on Hand Tool in ACR & PS with Mac/ Mountain Lion

    Photoshop CS6 gets stuck in "hand mode" after being open for a few hours. Suddenly, I can't use liquefy because Photoshop gets stuck in hand mode. I can't use ACR to the full potential because I can't use the adjustment brush because all I have is th

  • CIFS cannot connect to AD LDAP server or DC

    Hello.  I am a fairly new NetApp admin, and have very little formal training on NetApps.  I was thrown into the job, and I'm trying to learn as much as possible.  We have multiple NetApps in a WAN.  One the of filers I have from out of state is not b

  • Can't install epson scanner

    I'm new to the mac. Have a nice new mac pro but one problem. I can't install my epson scanner. In checking for driver for the mac from epson the only one they currently have is a beta version which even they acknowledge has a lot of glitches. So I cl

  • How PHP connect Oracle for RHLE AS4.0

    I have a RHLE AS4.0 with php-4.3.9-3.1 and httpd-2.0.52-9.ent. I have just installed Oracle 10.1.0.4.0 and it did well. I run phpinfo() and it's OK. However, I have another program : <html> <?php echo "I come here"; if ($c=OCILogon("giao", "tiger", "

  • Visual administrator configuration

    Can somebody tell me from which file the visual administrator picks up the value for host name etc.?