REGION is not shown in Address to be printed in SAPSCRIPT

Hi,
       I am trying to print the address within a sapscript .Everything is being displayed except the 'regio' ie region field. but when i replace the label region with city or something else followed by the field name it prints fine.
The code is as follows:
ADDRESS DELIVERY PARAGRAPH L
  TITLE    &VBDKL-KUNWE&
  NAME     &VBDKL-NAME1&, &VBDKL-NAME2&, &VBDKL-NAME3&,&VBDKL-NAME4&
  STREET   &VBDKL-STRAS&
  CITY     &VBDKL-ORT01&
  POSTCODE &VBDKL-PSTLZ&
  REGION   &VBDKL-REGIO&
  COUNTRY  &VBDKL-LAND1&
  FROMCOUNTRY 'FR '
ENDADDRESS

Check this out once -
Formatting Addresses: ADDRESS
The ADDRESS - ENDADDRESS control command formats an address according to the postal convention of the recipient country defined in the COUNTRY parameter. The reference fields are described in the structures ADRS1, ADRS2, or ADRS3, depending on the type of address. Either direct values or symbols may be assigned to the parameters.
Syntax:
/: ADDRESS [DELIVERY] [TYPE t] [PARAGRAPH a] [PRIORITY p] [LINES l]
/: TITLE title
/: NAME name1[,name2[,name3[,name4]]]
/: PERSON name of natural person [TITLE form of address]
/: PERSONNUMBER number of the personen
/: DEPARTMENT department
/: STREET street name HOUSE house number
/: LOCATION additional location information
/: POBOX po box [CODE post code / zip code] [CITY city]
/: POSTCODE post code / zip_code
/: CITY city1[,city2]
/: NO_UPPERCASE_FOR_CITY
/: REGION county / state
/: COUNTRY recipient country [LANGUAGE language code]
/: COUNTRY_IN_REC_LANG
/: LANG_FOR_COUNTRY language key
/: FROMCOUNTRY sender country
/: ADDRESSNUMBER address number
/: ENDADDRESS
The parameter values contain both formatting and address information. The address data are formatted for output according to the data in the following parameters:
TYPE
FROMCOUNTRY
COUNTRY
LANGUAGE
PRIORITY
DELIVERY
LINES
For more information, see the documentation for the SAP function module ADDRESS_INTO_PRINTFORM.
If DELIVERY is not specified and if a POBOX is specified, then the POBOX is used in an address instead of a STREET.
Parameters
DELIVERY
Means that the address should be formatted as a complete delivery address, using the street name and number rather than the P.O. Box.
TYPE
Specifies the type of address. The following types are possible:
1.     Normal address (ADRS1). This is the address of a company or organization. It corresponds to the address structure that is expected in most SAP applications.
2.     Private or personal address (ADRS2). This is the address of a natural person, a private or home address.
3.     Company addressDienstadresse (ADRS3) with contact person. This is the address of a colleague or contact within a company or organization. The company name should be specified in the TITLE and NAME fields; the ATTN: contact person should be named in PERSON and TITLE.
Should you enter another address type or leave the field blank, then type 1 is used for formatting.
PARAGRAPH
Specifies the paragraph format to be used for outputting the address. If this parameter is not given, the address will be output using the default paragraph format.
PRIORITY
Specifies which of the address lines may be omitted should this be necessary. Any combination of the following codes may be specified. The order in which you list the codes determines the order in which address lines are left out.
The codes are as follows:
A Title
P Mandatory empty line
4 Name4
3 Name3
R Region
T Neighborhood, administrative section of a city (CITY2)l
D Department
L Country name
C Post code or zip code
2 Name2
B P.O. Box (Japan only)
S Street name and number or P.O. Box, depending upon DELIVERY parameter
N Name and form of address of natural person (PERSON and TITLE)
I Location information in LOCATION
O City
LINES
Specifies how many lines may be used for formatting the address. If there are too few lines available to allow all the address data to be formatted, then the data specified in the PRIORITY parameter are omitted. If there is no LINES parameter and if this command is in a form window of a type other than MAIN, then the number of lines available for formatting the address are automatically calculated based on the current output position and the size of the window.
TITLE
Title or form of address. Used only with addresses of types 1 and 3.
NAME
Up to four names may be given, separated by commas. Used only with addresses of types 1 and 3.
PERSON
Name of the addressee. Used only for addresses of type 2 (private or personal address) or type 3 (company contact address). In type 3 addresses, use PERSON for the name of your contact person: ‘Attn: Mr. Jeffries’. The name fields should be used for the company address.
PERSONNUMBER
Personal number. Can be used only for address types 2 or 3 (private or personal address).
TITLE (with PERSON)
Title of the addressee. Can be used only for address types 2 or type 3 (private or personal address).
DEPARTMENT
Department of the addressee. Can be used only for address type 3 (company address).
STREET
Street name.
HOUSE
House number for the corresponding street.
LOCATION
Additional location information, such as the building, "Upstairs Apartment" and so on. Appears on its own line in the address.
POBOX
P. O. Box
CODE
The post code / zip code of the P. O. Box if this differs from the post code / zip code of the recipient.
CITY
The city in which the destination P.O. Box is located if this differs from the city of the recipient.
POSTCODE
Post code / zip code of the recipient.
CITY
Addressee’s city. city1 is expected to be the city; city2 is the neighborhood or administrative section, if required.
NO_UPPERCASE_FOR_CITY
Default = NO_UPPERCASE_FOR_CITY ‘ ‘
Usually, the system prints the city and country names of foreign addresses in uppercase ( NO_UPPERCASE_FOR_CITY ‘ ‘ ).
You can use this parameter to force the system to output city and country name unchanged (uppercase/lowercase).
( NO_UPPERCASE_FOR_CITY ‘X’ )
REGION
This allows an administrative region, county, province, or state etc. to be specified.
COUNTRY
Specifies the recipient country, i.e. the country according to whose postal conventions the address is to be formatted.
COUNTRY_IN_REC_LANG
This flag tells the system to use the recipient language for the country name.
( COUNTRY_IN_REC_LANG ‘X‘ )
( Default: Recipient language is not used: COUNTRY_IN_REC_LANG ‘ ‘ )
LANG_FOR_COUNTRY
Default = Space
Use this parameter to explicitly set the language in which to print the country name of a foreign address. By default, the system uses the language of the sending country.
LANGUAGE
Language code of the language of the recipient country, if it differs from that of the recipient COUNTRY. Example: addresses in Switzerland. Standard SAP language codes are used; you can display these in the initial SAPscript text processing screen or in table T002.
FROMCOUNTRY
Specifies the language to be used for formatting the name of the recipient country. For most European countries, the recipient country is specified by placing the international car registration letters in front of the post code and separating them from the post code with a hyphen. You must always specify the sender country.
ADDRESSNUMBER
The number is used to index a central address file, from which the desired address is read instead of using the set of the above fields. You can find more information on this facility in the documentation for the function module ADDRESS_INTO_PRINTFORM.
You use this one parameter instead of the set of parameters described before.
/: ADDRESS
/: TITLE 'Firma'
/: NAME 'Schneider & Co', 'Finanzberatung'
/: STREET 'Kapitalgasse 33'
/: POBOX '12345' CODE '68499'
/: POSTCODE '68309'
/: CITY 'Mannheim'
/: COUNTRY 'DE'
/: FROMCOUNTRY 'DE'
/: ENDADDRESS
This produces the following output address:
Firma
Schneider & Co
Finanzberatung
Postfach 12345
68499 Mannheim
If the DELIVERY parameter is specified on the ADDRESS command, then the street name and number will appear in the address in place of the P. O. Box number.
Firma
Schneider & Co
Finanzberatung
Kapitalgasse 33
68309 Mannheim
SAPscript makes an internal call to the ADDRESS_INTO_PRINTFORM function module for formatting the address. If the result is not as expected, you should check the settings for this function module (see the function module documentation).

Similar Messages

  • Region does not refresh in Address ESS.

    Dear all experts,
    When updating address of employee who belongs to Kuwait country group on web portal ESS, all regions are Kuwait specific and regions do not refresh if employee chooses a different country to update emergency or permanent addresses.
    Can you help on this problem?
    Thanks and kind regards,
    TramNguyen

    You have to create a new address using the NEW button from the overview screen in order to enter a new country within the address screens. You cannot update country within the existing addresses as they screens will not update based on the new country selection. In fact the country should not even be an open field on the screen when in edit mode. If you do not have a NEW button on the overview screen, please check your configuration for subtypes for ESS within the IMG.
    Cheers,
    Mike

  • IOS 5 contacts: not shown in address book, shown in spotlight

    A friend of mine with an iPhone4 and iOS5 reported to me he could not find (had lost) some contacts in the address book.
    When i used the spotlight-page (swipe in the homescreen so you get to see the screen to the left of the homescreen) COULD find the contacts: you see the contact, and when selected, you get to the page in the address book with all the details.
    So the contacts are there, but the Address Book just will not show them!
    I am still looking for a fix for this. Does anybody know of a way to fix the indexing of the address book on the iPhone, as that might be the problem?

    I had this also.  My contacts were not showing in the Contacts App or the Phone App but were when I searched.
    If you went to Groups from Address book it only showed an option for contacts for my Google Apps contacts.
    Originally I had icloud set to not do anything with contacts because I thought they were at Google Apps.  I turned on icloud for contacts.  Then when I went to groups from Contacts or Phone App there was an All Contacts option which then showed all my contacts.

  • Renewed Thawte Certificate not shown in Address Book

    My old Thawte personal mail certificates expired, and I requested new ones. The ones request via Safari, failed to load in 'My certificates' section of keychain. This is a known bug. I revoked the certificates and re-requested using Firefox.
    From Firefox I 'Fetched' and backed up 'my certificates' to a xxx.p12 file in Documents. Then from Keychain I 'Imported' the xxx.p12 file into the login keychain.
    Mail now works and generates signed e-mails, but when I click on the signed icon against each of my e-mail addesses in the Address Book it shows the old expired certificates.
    I am loathed to delete the expired certificates as it will prevent me from reading my archived mail.
    It is only cosmetic, but can anyone suggest a solution.
    PB 15 1.5 Ghz   Mac OS X (10.4.8)  

    Within the Keychain app I created an Expired.keychain and dragged the expired 'My Certificates' to it. Answered a few enter password prompts and dragged the certificates back to the login.keychain. It complained of some duplicates, which remained in the Expired.keychain. I then deleted the Expired.keychain.
    Problem solved

  • Sri Lanka not shown in address book

    How do I include Sri Lanka to address book??

    Does typing it in automatically add it to the list of valid countries? Or are you only saying the one entry will have the country listed?

  • Info Field is not shown in PDF by toolbar Print Version button

    Hi Everyone,
    I need your help:
    I enhanced 0ANALYSIS_PATTERN to include UserID / DateTime information when Export to PDF and excel.  I added Info Filed in this template and added this new web item in BUTTON_TOOLBAR_2 Button 3 (Print Version) and 4 (Export to Excel).   UserID / DateTime displayng on web is fine and Exporting to Excel is fine also.   Only problem is when clicking on Print Version the UserID / DateTime information is not showing in PDF.   I created a new button to Export PDFand it's working fine.  Somehow just this toolbar button Print Version has issue with Info Field.
    Can anyone help me to resolve this problem?
    Thanks, Jin

    Hi Jin.
    I have tried using the separate print template method but didn't manage to get it to work (and not very excited about the concept anyway as it means even more web templates to manage).
    But I got it to work without using a separate print template, by inserting the InfoField as part of the Filter Area (because I didnt want it displayed in the face of the Web when the report was run initially). But it seems to be that as long as the InfoField is displayed somewhere in the Web, then it can be exported/printed. Having done the data binding step, obviously.
    You mind if I pick your brains (offline) re the print template method?
    Patrick
    (points if that helps?)

  • Address/Location bar, forward-back buttons are not shown

    Address/Location bar, forward-back buttons are not shown in my browser. How can I make them visible?

    If the menu bar is hidden then press F10 or hold down the Alt key, that should make the "Menu Bar" appear
    * Make sure that the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    * If items are missing then open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    * If a missing item is in the toolbar palette then drag it back from the Customize window on the toolbar
    * If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up.
    See also:
    * http://kb.mozillazine.org/Toolbar_customization

  • Formerly I could download YouTube videos by double clicking the largest size page element in the Safari activity window address column. Now in V 5.0.5 page elements are not shown, just the page title, and under that about:blank.  Suggestions? Thanks.

    Formerly I could download YouTube videos by double clicking the largest size page element in the Safari activity window address column . Now in V 5.0.5 page elements are not shown, just the page title, and under that "about:blank".  Also, the activity window used to show sequential activity and now each new page replaces the last. Thanks for any suggestions re how to restore previous activity window function.

    Not all YouTube videos are available for downloading, but:
    There is the Free  iTube Grabber which can capture almost any audio and/or video stream (it says here) but only works with Intel Macs.
    http://itube-grabber.en.softonic.com/mac
    Firefox Download Helper is also supposed to work, you have to be logged into YouTube first.
    and the RealPlayer Downloader that comes with RealPlayer SP for Mac from:
    http://www.real.com/realplayer/mac
    which also downloads videos from YouTube.
    There is also iTubeX which allows you to download videos (Flash, HTML5 and others), .mp3 and .swf files from almost every website as easily as possible:
    http://www.macupdate.com/info.php/id/27604/itubex
    Lastly: How to download Flash videos and play them in Quicktime using Perian is explained here:
    http://perian.org/#watch
    It's the video at the bottom of the page.

  • Bpm process is not shown on bpm workspace but i see exception on the server

    Hi Gurus,
    When i try to deploy a simple BPM composite i am getting below exception.
    deployment goes fine but when you open BPM workspace to initiate a instance , bpm process is not shown on bpm workspace instead i see below below error can anybody help me on this
    ===================
    ttp://www.omg.org/bpmn20}task>,<{http://www.omg.org/bpmn20}terminateEventDefinition>,<{http://www.omg.org/bpmn20}text>,<{http://www.omg.org/bpmn20}textAnnotation>,<{http://www.omg.org/bpmn20}throwEvent>,<{http://www.omg.org/bpmn20}timerEventDefinition>,<{http://www.omg.org/bpmn20}transaction>,<{http://www.omg.org/bpmn20}userTask>
         at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallingContext.handleEvent(UnmarshallingContext.java:642)
         at com.sun.xml.bind.v2.runtime.unmarshaller.Loader.reportError(Loader.java:254)
         at com.sun.xml.bind.v2.runtime.unmarshaller.Loader.reportError(Loader.java:249)
         at com.sun.xml.bind.v2.runtime.unmarshaller.Loader.reportUnexpectedChildElement(Loader.java:116)
         at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallingContext$DefaultRootLoader.childElement(UnmarshallingContext.java:1049)
         at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallingContext._startElement(UnmarshallingContext.java:478)
         at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallingContext.startElement(UnmarshallingContext.java:459)
         at com.sun.xml.bind.v2.runtime.unmarshaller.SAXConnector.startElement(SAXConnector.java:148)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1329)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:376)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:322)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:226)
         at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:211)
         at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:184)
         at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:137)
         at javax.xml.bind.helpers.Abstrac
    2013-05-19T03:09:26.301-05:00] [soa_server1] [TRACE] [] [] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: e44dcdbf35e56301:-9a14728:13ebbc2239d:-8000-00000000000016a2,0] [SRC_CLASS: oracle.bpel.services.workflow.client.config.ClientConfigurationUtil] [APP: OracleBPMWorkspace] [SRC_METHOD: getClientConfiguration] WorkflowServiceClientContext: Cannot find client configuration file: wf_client_config.xml
    [2013-05-19T03:10:40.511-05:00] [soa_server1] [ERROR] [] [oracle.bpm.common] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: e44dcdbf35e56301:-9a14728:13ebbc2239d:-8000-0000000000001815,0] [APP: OracleBPMWorkspace] [[
    javax.xml.bind.UnmarshalException
    - with linked exception:
    [org.xml.sax.SAXParseException: <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.]
         at javax.xml.bind.helpers.AbstractUnmarshallerImpl.createUnmarshalException(AbstractUnmarshallerImpl.java:315)
         at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.createUnmarshalException(UnmarshallerImpl.java:514)
         at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:215)
         at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:184)
         at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:137)
         at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:184)
         at oracle.bpm.project.io.serializers.model.bpmn.BPMN20Loader.load(BPMN20Loader.java:110)
         at oracle.bpm.project.io.serializers.model.DefaultModelFormat.loadBPMN20CompliantModel(DefaultModelFormat.java:383)
         at oracle.bpm.project.io.serializers.model.DefaultModelFormat.loadInternal(DefaultModelFormat.java:399)
         at oracle.bpm.project.io.serializers.model.DefaultModelFormat.load(DefaultModelFormat.java:62)
         at oracle.bpm.project.io.serializers.model.DefaultModelFormat.parse(DefaultModelFormat.java:182)
         at oracle.bpm.project.io.fs.loader.ProcessesLoader.loadObject(ProcessesLoader.java:89)
         at oracle.bpm.project.io.fs.loader.ProjectModelLoader.loadObject(ProjectModelLoader.java:63)
         at oracle.bpm.project.io.fs.loader.ProjectModelLoader.loadObject(ProjectModelLoader.java:29)
         at oracle.bpm.project.io.fs.FileProjectLoader.createFromXml(FileProjectLoader.java:148)
         at oracle.bpm.project.FuegoProject.createFromXml(FuegoProject.java:901)
         at oracle.bpm.client.internal.processmodel.marshalling.ProcessModelLoader.parse(ProcessModelLoader.java:137)
         at oracle.bpm.client.internal.processmodel.marshalling.ProcessModelLoader.unmarshall(ProcessModelLoader.java:72)
         at oracle.bpm.client.internal.processmodel.ProcessModelServiceRemoteClient.getProcessModel(ProcessModelServiceRemoteClient.java:50)
         at oracle.bpm.papi.ora.mgr.SessionProcessManager.getProcess(SessionProcessManager.java:317)
         at oracle.bpm.papi.ora.mgr.SessionProcessManager.getProcess(SessionProcessManager.java:119)
         at oracle.bpm.papi.ora.mgr.SessionProcessManager.getProcesses(SessionProcessManager.java:142)
         at oracle.bpm.papi.ora.ProcessServiceSessionAdapter.processesGet(ProcessServiceSessionAdapter.java:1359)
         at oracle.bpm.workspace.model.common.PapiBean.getProcesses(PapiBean.java:3099)
         at oracle.bpm.workspace.adf.model.common.BaseViewBean.initProcesses(BaseViewBean.java:600)
         at oracle.bpm.workspace.adf.model.common.BaseViewBean.getAvailableProcesses(BaseViewBean.java:316)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at javax.el.BeanELResolver.getValue(BeanELResolver.java:261)
         at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:173)
         at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:200)
         at com.sun.el.parser.AstValue.getValue(Unknown Source)
         at com.sun.el.ValueExpressionImpl.getValue(Unknown Source)
         at org.apache.myfaces.trinidadinternal.taglib.ForEachTag.doStartTag(ForEachTag.java:117)
         at jsp_servlet._jsf._view._search.__search_jsff._jspx___tag12(__search_jsff.java:750)
         at jsp_servlet._jsf._view._search.__search_jsff._jspx___tag11(__search_jsff.java:712)
         at jsp_servlet._jsf._view._search.__search_jsff._jspx___tag10(__search_jsff.java:650)
         at jsp_servlet._jsf._view._search.__search_jsff._jspx___tag3(__search_jsff.java:310)
         at jsp_servlet._jsf._view._search.__search_jsff._jspx___tag2(__search_jsff.java:250)
         at jsp_servlet._jsf._view._search.__search_jsff._jspx___tag0(__search_jsff.java:139)
         at jsp_servlet._jsf._view._search.__search_jsff._jspService(__search_jsff.java:100)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:444)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:163)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:184)
         at oracle.adfinternal.view.faces.taglib.region.IncludeTag.__include(IncludeTag.java:442)
         at oracle.adfinternal.view.faces.taglib.region.IncludeTag.doEndTag(IncludeTag.java:232)
         at jsp_servlet._jsf._view.__viewpresentationnormal_jsff._jspx___tag23(__viewpresentationnormal_jsff.java:1194)
         at jsp_servlet._jsf._view.__viewpresentationnormal_jsff._jspx___tag22(__viewpresentationnormal_jsff.java:1131)
         at jsp_servlet._jsf._view.__viewpresentationnormal_jsff._jspx___tag12(__viewpresentationnormal_jsff.java:734)
         at jsp_servlet._jsf._view.__viewpresentationnormal_jsff._jspx___tag5(__viewpresentationnormal_jsff.java:383)
         at jsp_servlet._jsf._view.__viewpresentationnormal_jsff._jspx___tag4(__viewpresentationnormal_jsff.java:326)
         at jsp_servlet._jsf._view.__viewpresentationnormal_jsff._jspx___tag3(__viewpresentationnormal_jsff.java:281)
         at jsp_servlet._jsf._view.__viewpresentationnormal_jsff._jspx___tag2(__viewpresentationnormal_jsff.java:233)
         at jsp_servlet._jsf._view.__viewpresentationnormal_jsff._jspx___tag0(__viewpresentationnormal_jsff.java:133)
         at jsp_servlet._jsf._view.__viewpresentationnormal_jsff._jspService(__viewpresentationnormal_jsff.java:94)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:444)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:163)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:184)
         at oracle.adfinternal.view.faces.taglib.region.IncludeTag.__include(IncludeTag.java:442)
         at oracle.adfinternal.view.faces.taglib.region.IncludeTag.doEndTag(IncludeTag.java:232)
         at jsp_servlet._jsf._view.__viewpresentationfixed_jsff._jspx___tag6(__viewpresentationfixed_jsff.java:407)
         at jsp_servlet._jsf._view.__viewpresentationfixed_jsff._jspx___tag5(__viewpresentationfixed_jsff.java:353)
         at jsp_servlet._jsf._view.__viewpresentationfixed_jsff._jspx___tag2(__viewpresentationfixed_jsff.java:238)
         at jsp_servlet._jsf._view.__viewpresentationfixed_jsff._jspx___tag0(__viewpresentationfixed_jsff.java:133)
         at jsp_servlet._jsf._view.__viewpresentationfixed_jsff._jspService(__viewpresentationfixed_jsff.java:94)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:444)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:163)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:184)
         at oracle.adfinternal.view.faces.taglib.region.IncludeTag.__include(IncludeTag.java:442)
         at oracle.adfinternal.view.faces.taglib.region.IncludeTag.doEndTag(IncludeTag.java:232)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspx___tag23(__masterdetails_jsff.java:1180)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspx___tag22(__masterdetails_jsff.java:1120)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspx___tag21(__masterdetails_jsff.java:1072)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspx___tag20(__masterdetails_jsff.java:1027)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspx___tag19(__masterdetails_jsff.java:982)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspx___tag18(__masterdetails_jsff.java:938)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspx___tag6(__masterdetails_jsff.java:414)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspx___tag5(__masterdetails_jsff.java:367)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspx___tag2(__masterdetails_jsff.java:252)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspx___tag0(__masterdetails_jsff.java:139)
         at jsp_servlet._jsf._pagetemplates.__masterdetails_jsff._jspService(__masterdetails_jsff.java:100)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)

    The above issue is seen when we don't have proper FP patchset. after applying a patchset all issues sloved

  • Printing notes in the Address Book

    I would like to print a page including the notes in the address book for a particular addressee. The style in the print window lists only mailing labels, envelopes, lists or pocket addresses, none of which prints out the notes in a line by line format as shown on the screen page in the address book. I have been highlighting the entire name address, etc. with the notes and transferring it to a word processing file for printing or have been snapping a picture of the page with the command + shift + F-3 keys but these seem to be awkward solutions to what should be a straight forward print job. What am I doing wrong?

    That's been my frustration as well. I wanted to pdf all my contact info to carry with me on a USB key in case I needed something from the Note section. The iPhone truncates the note section to about the first 2,500 characters. So if you have contacts with long Notes you've got a problem. I thought a had a work-around, but pdf'ing the Contacts didn't work because it won't print more than 1 page per contact and prints the partial Note in two narrow columns, truncating the rest of the Note. I can't believe more people haven't complained about this. Before migrating to Address Book (I used Outlook), I made extensive use of the Note section.

  • External-graphic not shown in PDF with Tomcat / Cocoon / Ubuntu

    Hi,
    this weekend I set up a virtualbox with Ubuntu 8.04 OS; APEX 3.12 @ Oracle 10gXE; Tomcat 6.014; Cocoon 2.1.11; fop_post sitemap file according to Carl Backstrom blogpost ([http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html]); to experiment with APEX & PDF printing.
    Tomcat is configured to listen to port 8888; APEX to 8080.
    I have setup APEX according to Carl's blogpost. All is working fine; I can generate PDF reports using the standard templates. I'm new to XSL, but decided to go wild. I decided to include a JPG graphic.
    I followed the example in Scott & Spendolini, Pro Oracle Application Express, page 399. However the image is not shown in the PDF, nor is there an error message produced. What is wrong?
    This is the relevant section of source code I have used:
    &lt;fo:static-content flow-name="region-footer"&gt;
    &lt;fo:block xsl:use-attribute-sets="text footer"&gt;
    &lt;fo:inline xsl:use-attribute-sets="body-font page-number"&gt;
    &lt;fo:external-graphics width="50px" height="50px" src='url("http://www.fiat128.nl/images/fiat128.jpg")'/&gt;
    &lt;fo:page-number/&gt;
    &lt;/fo:inline&gt;
    &lt;/fo:block&gt;
    &lt;fo:block xsl:use-attribute-sets="text text_2 #PAGE_FOOTER_ALIGNMENT#"&gt;
    &lt;fo:inline xsl:use-attribute-sets="page-footer"&gt;#PAGE_FOOTER#&lt;/fo:inline&gt;
    &lt;/fo:block&gt;
    &lt;/fo:static-content&gt;
    all help is appreciated. Is there a problem with Cocoon and Linux?
    many regards,
    Ronald van Dijk
    Edited by: user614694 on Oct 6, 2008 3:09 AM
    Edited by: Ronald van Dijk on Oct 6, 2008 3:10 AM

    Hello Ronald,
    Your code looks fine to me. Although xsl-fo is not very friendly for a slight change...
    This is an example I use during my PDF printing presentation:
    <fo:static-content flow-name="region-header">
    <fo:block xsl:use-attribute-sets="text text_2 text_0 #PAGE_HEADER_ALIGNMENT#">
    <fo:inline xsl:use-attribute-sets="page-header">#PAGE_HEADER#</fo:inline>
    </fo:block>
    <fo:block border="0.5pt solid silver"
    background-image="url('http://o11g1.apex-evangelists.com:7779/i/htmldb/apex_logo.gif')"
    padding="12pt"
    text-align="center">Apex Evangelists
    </fo:block>
    </fo:static-content>
    Does that work for you?
    (change o11g1.apex-evangelists.com:7779 to your hostname:port - and see that you get the image by using the url)
    I've sometimes seen problems displaying certain pictures or specifying the width.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/
    http://www.apexblogs.info/

  • Some appointments are not shown sometimes

    I access a Webaccess server that is in GMT+1 timezone from GMT-5 timezone and have GW set to either GMT-5 explicitly or use workstation's timezone. I did this test on Sunday Feb 26 and couple hours into Monday Feb 27 (GMT-5) - I created an appointment for Feb 26, 11:00-11:59pm from within a week view. As soon as it was created, it was not shown either in week or day views or basic interface, but could only be seen in month view or when searching for appointments. That is just an example, it was not a single occurrence, but I had several test appointments like that. Then I also had appts that were not shown even in month view, but only in search results. Regarding that Feb 26 appt, it could be made seen again in day or week views if a different timezone was chosen in options. Today, Feb 27 at the end of the day, that appointment is seen no problem in day and week views and also in basic interface, so I do not have a reliable way of reproducing the problem. Since the appt was not shown even in basic interface before, I suspect it is a server time computation/database query problem and not browser graphics rendering problem. Also, there used to be a pdf file with Webaccess API that showed how to query calendar with startDate and endDate parameters which can be done in basic interface by manually editing the address field in browser and that part is broken too - Webaccess does not show some appointments after given start date, until the start date is moved up earlier to coincide with start of the day in GMT timezone. All that used to work fine in earlier GW versions. It looks like in GW2012 some big design changes were made and some serious bugs were introduced.

    The missing piece is how ( every other way of accessing the calendar ) sees the apointment. What happens from the Windows client? Does it show the missing appointment created in webaccess?
    Its certainly possible that some boundary condition bug is being exercised. But we need to get this to the point where it can be easily reproduced. I suspect the issue has to do with the time zone being signed differently, e.g. +1 vs -5.
    Webaccess is essentially a rewrite in 2012, this eliminated the GWINTER server component and so there are a lot of positives to this move. All things considered, its been pretty decent.
    -- Bob

  • HT5538 my phone number is not shown on facetme

    My phone number is not shown facetime, it shows only my email address through which people can call me

    Deactivate, then reactivate Facetime on your phone and it should come back.

  • Tables (not shown or hidden)

    Hi Experts,
    Is there a way of showing tables that are hidden or not shown in the query wizard listing when you tab to see the table list.
    I have had a couple of instances where when trying too write the query and struggled.  But when I have spoken to our BP Channel Partner they have given me a table name not shown in the wizard and I have got the query information.
    For example CSHS does not show in the wizard as a named table but if you ignore and cancel the blank selection list carry on and select all.  Data fields are shown and you can return data.
    Thanks.
    Regards
    Jim

    Jim,
    It's not possible to display those tables in SAP but I have a list of all the existing ones, I've sent it to your e-mail address.
    Regards,
    Nat

  • Table Header not shown in Purchase Order Smartform

    I have downloaded an installed an SAP SmartForm for Purchase Order (/SMB40/MMPO_DE). Unfortunatelly the document with this form cutting the right side of the document by printing. The width of the tables is 19,5 cm, it should be 19,00 or less. Anyhow, I have started to reduce the width of all windows and included tables and of course the table cells. This works fine with all tables, also with a dynamic content, but if I reduce the static header table t_header(window winheader, cell hd_netwr) for 0,5 cm this doesn't appear on printform. I have tried then to restore everything like it was - no effect.
    What could it be ?
    Kind Regards

    I have found the solution and have localized the problem or vise versa.
    The table had the hight 0,99 LN and the window hight was 0,5 cm. It seems to me that this 2 parameters had a size-conflict. When I have changed the line hight to 0,5 cm it starts work.
    Why it was done on this matter and why the error was not shown during compiling the form and how it did work before I have touched the window - this questions could be addressed to SAP.
    Kind Regards
    Alexey Voynikov

Maybe you are looking for

  • For people who wants to use java with version of palmos before 3.5.

    The new version of kjava for palmos (MIDP) you can found on java.sun.com only works if you use a version fo palmos greater than 3.5. If not you need to use the presious virtual machine kvm and KvmUtil. You need the two following files :           j2m

  • Firefox 5: distortion when scrolling on all web pages; wavey appearance

    There is distortion when scrolling on all webpages using Firefox 5. It doesn't matter how fast or slow the scrolling is, the screen becomes wavey until the scrolling stops. I have uninstalled and reinstalled Firefox and that hasn't helped. This does

  • How can I change the settings such that the phone does not vibrate when I receive a message in silent mode, but vibrates for calls?

    I'd like the phone to vibrate when I receive a call when it is in silent mode (as it already does) but I'd like it to not vibrate when I receive a text in silent mode. I know how to set both (calls and texts) to not vibrate in silent mode, or choose

  • Updating the Window

    I'm new to the GUI field and am having trouble understanding how to update the Container when a button is clicked. I do understand how to create a JPanel, JFrame, Container, and other components and how to use them with ActionListener. But the proble

  • APD Join Transformation Error

    Hello, I am attempting to do a join transformation in APD.  I am joining query results with a flat file with an inner join.  I am joining on one field that resides in the query and the flat file.  I am getting the following error: Analysis process mu