Type of encoding for barcode for Symbol VS 6608 scanner

Hi All,
Which type character encoding should use in PDF design in live cycle designer for the decoding barcode using Symbol VS 6608 scanner.
I have used UTF8 as character encoding but didn't get proper decoder output for Russian languages. I do get proper response for English characters.
Do adobe live cycle designer supports windows 1251 character encoding for paper forms barcode?
I couldn't get any option of windows1251 in the list supported character encoding in live cycle designer for paper forms barcode.
Is there any alternative character encoding which I can use from the list of encoding present in designer as a proper replacement for windows 1251 character encoding?
Regards
Abhishek

If it is a T-SQL problem you want help with, you should use the T-SQL forum. This is the forum for using .NET inside SQL Server.
The answer to your question is probably, but the spec is unclear. If you know that there are always four character in front of the barcode, and the code you are looking for is always 13 characters (which they seem to be in your sample data) you
can do:
Calcomp LIKE substring(@barcode, 5, 13)
This permits the use of an index on the Calcomp column to be used, why the lookup is quick.
If the prefix can be any length, or the Calcomp can be, you can do:
@barcode LIKE '%' + Calcomp + '%'
but this will result in a scan of the entire table, so it is far less efficient. There is also some risk for multiple hits.
Thus, if you can determine from the barcode directly, the possible code(s) to look for before you start searching, this can be both more efficient and safer.
Erland Sommarskog, SQL Server MVP, [email protected]

Similar Messages

  • What is a valid encoding for type byte?

    Hi All,
    I've created a webservice from a custom control which takes a byte[] as a parameter.
    For this parameter, the generated jws file prompts for 2 pieces of input, the
    first being the encoding type and the second the data (I assume?) No mater what
    I use for encoding type (UTF-8, ASCII, Base64Binary) I get the following exception:
    .bea.wlw.runtime.core.request.RequestValidationException: Unable to transform
    query arguments to Java arguments
    'UTF-8' is not a valid encoding for type byte
    Caused by: com.bea.wlw.runtime.core.deserialize.DeserializerException: 'UTF-8'
    is not a valid encoding for type byte
    What is a valid encoding type to use for the Workshop generated test webservice?
    Thanks for any help.
    X

    hmmm...I've asked one of the WLW gurus to take a look at your post,
    however in the mean time I would highly recommend a conversation with
    our support group.
    Regards,
    Bruce
    BTW, I don't see 'sourceFile' or byte[] in the attached doc, only an
    integer[]...
    JTI wrote:
    >
    Yes, it is the web service test form.
    For my method parameter 'sourceFile', which is defined as a byte[],
    the generated test form asks for 2 pieces of input.
    I'm assuming the first input is for the soap encoding, and the second
    is for the actual data? What is the exact value I should enter in the
    test form for these 2 inputs? I've tried xs:base64Binary , I've tried
    just base64Binary, I've tried leaving the encoding input blank. It
    works if I leave both inputs blank, but if I enter data into either input
    field I get the following exception:
    com.bea.wlw.runtime.core.request.RequestValidationException: Unable to transform
    query arguments to Java arguments
    'base64Binary' is not a valid encoding for type byte
    Caused by: com.bea.wlw.runtime.core.deserialize.DeserializerException: 'base64Binary'
    is not a valid encoding for type byte
    ... 29 more
    at com.bea.wlw.runtime.jws.request.QueryRequest.resolveArgs(QueryRequest.java:148)
    at com.bea.wlw.runtime.core.request.BaseRequest.validateArgs(BaseRequest.java:304)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:209)
    at com.bea.wlw.runtime.core.bean.BaseContainerBean.invokeBase(BaseContainerBean.java:185)
    at com.bea.wlw.runtime.core.bean.BMPContainerBean.invoke(BMPContainerBean.java:1530)
    at com.bea.wlwgen.LibraryImplTestBMPContImpl.createLibraryItem(LibraryImplTestBMPContImpl.java:40)
    at com.bea.wlwgen.PersistentContainer_cj0dw4_ELOImpl.createLibraryItem(PersistentContainer_cj0dw4_ELOImpl.java:99)
    at com.bea.wlwgen.LibraryImplTestBMPContAdpt.invokeOnBean(LibraryImplTestBMPContAdpt.java:87)
    at com.bea.wlw.runtime.core.bean.BaseDispatcherBean.runAsInvoke(BaseDispatcherBean.java:160)
    at com.bea.wlw.runtime.core.bean.BaseDispatcherBean.invoke(BaseDispatcherBean.java:54)
    at com.bea.wlw.runtime.core.bean.SyncDispatcherBean.invoke(SyncDispatcherBean.java:159)
    at com.bea.wlw.runtime.core.bean.SyncDispatcher_k1mrl8_EOImpl.invoke(SyncDispatcher_k1mrl8_EOImpl.java:100)
    at com.bea.wlw.runtime.core.dispatcher.Dispatcher.remoteDispatch(Dispatcher.java:134)
    at com.bea.wlw.runtime.core.dispatcher.Dispatcher.dispatch(Dispatcher.java:46)
    at com.bea.wlw.runtime.core.dispatcher.HttpServerHelper.exploreExec(HttpServerHelper.java:253)
    at com.bea.wlw.runtime.core.dispatcher.HttpServerHelper.executeGetRequest(HttpServerHelper.java:570)
    at com.bea.wlw.runtime.core.dispatcher.HttpServer.doGet(HttpServer.java:81)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6316)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    at com.bea.wlw.runtime.core.deserialize.SimpleLiteral.getValue(SimpleLiteral.java:396)
    at com.bea.wlw.runtime.core.deserialize.SimpleLiteral.toJava(SimpleLiteral.java:245)
    at com.bea.wlw.runtime.core.binding.SerializeQuery.unmarshalQuery(SerializeQuery.java:109)
    at com.bea.wlw.runtime.jws.request.QueryRequest.unmarshalArgs(QueryRequest.java:156)
    at com.bea.wlw.runtime.jws.request.QueryRequest.resolveArgs(QueryRequest.java:143)
    Attached is the generated html form.
    Thanks for any help.
    Bruce Stephens <[email protected]> wrote:
    Hello,
    I'm not sure what you are seeing; is this from the web service test
    form? I'm going to guess that it is talking about soap encoding, so
    for
    byte[] it will correspond to the XML Schema xs:base64Binary [1]
    Hope this helps,
    Bruce
    [1]
    http://www.w3.org/TR/xmlschema-2/#base64Binary
    JTI wrote:
    Hi All,
    I've created a webservice from a custom control which takes a byte[]as a parameter.
    For this parameter, the generated jws file prompts for 2 pieces ofinput, the
    first being the encoding type and the second the data (I assume?)No mater what
    I use for encoding type (UTF-8, ASCII, Base64Binary) I get the followingexception:
    .bea.wlw.runtime.core.request.RequestValidationException: Unable totransform
    query arguments to Java arguments
    'UTF-8' is not a valid encoding for type byte
    Caused by: com.bea.wlw.runtime.core.deserialize.DeserializerException:'UTF-8'
    is not a valid encoding for type byte
    What is a valid encoding type to use for the Workshop generated testwebservice?
    Thanks for any help.
    X
    Name: LibraryImplTest.html
    LibraryImplTest.html Type: Hypertext Markup Language (text/html)
    Encoding: base64

  • Why did TB set the char encoding for a reply to charset=UTF-16LE ?

    I got a message from Google AdWords in HTML format and wrote a reply. When I sent it I got a timeout trying to send it. I use AVG antivirus to scan outgoing messages using a "local server" at address 127.0.0.1.
    Note that this was my second reply to such a message from AdWords. The only thing I could see that was different was a longer subject line (ending with three periods or dots) and a longer HTML message to which I was replying.
    I tried many things to fix the problem and I cannot remember them, sorry.
    Finally, I got success after truncating the message and the long subject line. The reply was sent instantly, as usual, instead of timing out.
    But it wasn't really success. When I looked at the sent message, the characters in my reply (only) were in Chinese. Looking at the raw (source) message, I see that the charset was set as follows: Content-Type: text/plain; charset=UTF-16LE; format=flowed .
    This seems like a strange charset; nowhere in my settings do I specify anything other than Western (ISO-8859-1).
    I finally was able to send the message successfully (I think) by using Options > Character Encoding > Western (ISO-8859-1), which seems to force the message to be sent using this standard encoding instead of Little Endian.
    What caused this problem to happen? Is there a TB overflow bug for long subject lines?
    I realize that TB is an old and unsupported product, but it seems to be the only good email client to use with Windows 8, so I'm just hoping someone knows something about this.

    Originally posted by: warren.tang.nospam.com
    Warren Tang wrote:
    > Warren Tang wrote:
    >> Warren Tang wrote:
    >>> Hi everybody,
    >>>
    >>> I've been trying to set the default encoding of new files as UTF-8.
    >>> Here are the two settings I've set:
    >>>
    >>> 1. Windows > Preferences > General > Content Types, set UTF-8 as the
    >>> default encoding for all content types.
    >>> 2. Windows > Preferences > General > Workspaces, set "Text file
    >>> encoding" to "Other : UTF-8".
    >>>
    >>> However when I create a new text file, the encoding is always
    >>> ANSI/ISO-8859-1. What did I missed? Thanks.
    >>>
    >>> Regards,
    >>> Warren
    >>
    >> I've also tried
    >> Project Properties > Resource > Text file encoding = UTF-8
    >> However it doesn't work either.
    >>
    >> The only thing that works is changing the file's encoding property,
    >> but I don't want to change it every time I create a new file.
    >>
    >> Is it a bug?
    >
    > It turns out that there are other places I need to set up for HTML and
    > CSS files:
    >
    > Windows > Preferences > Web > CSS Files > Encoding = UTF-8
    > Windows > Preferences > Web > HTML Files > Encoding = UTF-8
    I'm getting mad... The file (on the disk) is still not encoded in UTF-8
    but ANSI.

  • Finding a Gif Encoder for Java Advanced Imaging (JAI)

    I'm trying to find the GIF encoder for Java Advanced Imaging. I keep reading all over the place that there is one, but for the life of me I can't figure out where it is supposed to be. Could anyone please enlighten me?
    Thanks

    After I installed this, it still doesn't report gif as a possible encoding type:
    String[] codecs = ImageCodec.getEncoderNames(img, null);
                for (int j = 0; j < codecs.length; j++) {
                    String codec = codecs[j];
                    System.out.println (codec);
                }only reports the following types available:
    pnm
    jpeg
    tiff
    png
    bmp

  • Have plan feature H.264 Encoding for Cameras on Mobile?

    Have plan feature H.264 Encoding for Cameras on Mobile?
    Thank you

    Generally speaking H264 is supposed to be about twice as efficient as MPEG2. I think that's probably overstating the case somewhat (i.e. H264 isn't really twice as "good"). However you can certainly cut back somewhat from what you'd use with MPEG2.
    Next consideration is the resolution/dimension of the final video. Do you want to go 640x480 (NTSC 4:3 aspect ratio) or something smaller? Since you're starting with video tape I'd suggest something like 480x360 (that should be large enough by a good margin to get all of the quality from a video tape). However, you might even want to drop down to 320x240 since that would be compatible with the video iPod and potentially other mobile, hand-held devices.
    Finally, if you go with 640x480 I'd suggest something in the 3Mb to 4Mb per second range (for relatively demanding material, less for so-called "talking heads," and perhaps a bit more for extreme action), that would scale to 1.7Mb to 2.3Mb per second for 480x360, and 750Kb to 1Mb per second for 320x240. If you plan on using Front Row and want to store your video on a remote server (accessed either wirelessly or over ethernet) then you will definitely want to enable the "streaming" option when you encode the video. In fact you may want to use the streaming option in every case (for future compatibility).
    If you plan on viewing this video on a computer display or any type of LCD or high-definition device you may also want to consider a de-interlace step for the 640x480 and 480x360 resolutions. You won't need that for the 320x240 video since 240 is exactly one half of the vertical resolution for standard NTSC DV (720x480). However, if you're using PAL you'll need to adjust all of the above resolutions to fit the proper form factors.
    As always, the beauty will be in the eye of the beholder. Thus I'd suggest that you try something near the above and adjust accordingly (based upon what you see and like or dislike).

  • SRM 4.0- How to set the default values for product type (01) only for SC

    The radio button “Service” should not be visible.
    Also for search help (e.g. search for internal products) where a search should only be possible for product type 01 (goods). The system should not display the product type and internally always search for goods only.
    How to set the default values for product type (01) only for SC
    We needs to use Search help BBPH_PRODUCT which having parameter PRODUCT_TYPE
    Here we can set defalut value 01 but it is not correct one since same search help is using several places.
    We need to limit the search help results only for SC.
    Kindly help out me ASAP.

    The easiest way to set defautl values is to edit the batch class.
    Goto the characteiristic and go to update values.
    In here you probably have something like 0 - 100 as a spec range.
    On the next line enter the default value within this range.  At the end of the line, click in the box in the column labelled "D".  This indicates the defautl value for the characteristic.
    If you need to you can do this in the material classification view as well.
    Just to be clear, these values will only show up in the batch record.  You can not have defautl values in resutls recording screens.
    FF

  • Which SIM card does the iPad mini take? Does it have to be specific type of SIM for the iPad mini?

    Which SIM card does the iPad mini take? Does it have to be specific type of SIM for the iPad mini?

    Welcome to the Support Communities. The answer to your question is available in Apple's website — see the Input/Output section here:
    http://www.apple.com/ipad-mini/specs/

  • "No transaction type is available for creating a transaction" service order

    Hi all,
    I am new in IC .
    I try to create service order or service ticket for incoming calls
    We are using CRM 7.0
    After I confirm the account I try to create service order
    But no screen displayed and error "No transaction type is available for creating a transaction" occurs
    in customizing there is a transaction type SRVO, also I copied it to ZRVO
    But here how can I define that this transaction type is assigned to this application??
    Please reply in detail steps.
    Thank you.

    Hi Rupesh,
    Thanks for your reply..
    I made a lot of controls but I can't find where I am wrong..
    My senario is, taking phones, create interaction record and create order for further investigation.
    I copied IC_AGENT role.
    I copied transaction type 0010 to Z010
    I create business transaction named ZBTP for transaction type Z010
    I made Define Transaction Types for Navigation for Z010
    Then Define Business Role -> Assign Function Profiles
    Here I assign my business transaction ZBTP to IC_BT function profile
    But when I connect tot the system with user having this business role
    I can create interaction record with type Z010, it is ok.
    When I press Service Order it gives this error.
    Work center id for Service order is : IC_UIU_SVO
    I copied my business role from IC_AGENT, and here this work center id was not active
    In my business role I made it active.  Is this work center can't used in IC senario
    Also how can I understand which transaction type is needed for it??
    If I know which transaction type is needed to create service order or service ticket under IC, then I will control it of course..
    I also copied transaction type TSVO(service IC) to ZSVO and do the above things for this type too..
    But nothing changed..
    Please help !!

  • Can i use technical system type 'third party' for r3 system in idoc2file sc

    Hi,
          i am doing a sample out bound scenario (idoc 2 file), distributing idoc from sap system to csv file (in same network). in this can i use thchnical system type 'third party' for R3 system. will the scenario work properly or not.
      And some times some of the business systems in SLD are not visible in ID, when assigning business system in ID.can any one tell reason for this.
      can any one suggest me,........ Thanks in advance & would be appreciated.
    Regards
    Rajesh

    Hi,
    <i> can i use thchnical system type 'third party' for R3 system. will the scenario work properly or not.</i>
       --- No u can't use this...Ur technical system must be "WebAS ABAP" only.  For file system you use 3rd party system. means ur technical system like follows.
    sender
    R/3  -- WebAs ABAP
    Receiver
    File  - 3 rd pary system
    <i>And some times some of the business systems in SLD are not visible in ID, when assigning business system in ID.can any one tell reason for this.</i>
      Click "Clear SLD cache" repeatly for some time in ID, it will come.
    regards,
    Ansar.

  • I just updated my ipod 4g to ios 5.1 and i cant download apps a message pops up saying to type in password for caldav something something the thing is that i have no idea what my password is i never made an account for that so please help

    i just updated my ipod 4g to ios 5.1 and i cant download apps a message pops up saying to type in password for caldav something something the thing is that i have no idea what my password is i never made an account for that so please help

    Go to iTunea>Preferences>Devices and see if there is a backupright at the time you did the update. Then try restoring from that backup. If the apps are in your iTunes library, any app data will be restored to the iPod.
    When restoring from an iOS 4 (or later) backup, if the device had a passcode set, iTunes will ask if you want to set a passcode (and remind you that you had protected your device with a passcode). iTunes will not ask you to set a passcode when restoring from iOS 3.x and prior backups.
    Therefore, remembe the passcode that you enter this time.
    It appears that if you restore from a backup, that backup is not subseqyently overwritten by the next backup.

  • I have the latest itune but i am unable to update my phone or my ipad 2 i have been in to the shop and they said i need to download a diffrent type of itunes for wifi can you please help

    I have the latest iTunes but am unable to update my phone or my ipad 2 I have been in to the shop and they said I need to download a different type of iTunes for wifi I have a desk top with windows vista and wifi can you please help

    We'll need more information before anyone can be of much help. What model iPhone is it, what versions of iOS are running on the iPad 2 now, what exactly are you trying to update, and what version of iTunes are you running? And what exactly is going wrong (include error messages if any).
    Once we have that information, someone here can probably offer advice. Note that you cannot sync content or upgrade iOS wirelessly until you get your iPhone and iPad up to iOS 5 and that requires that you connect those devices to your computer via the Dock-USB cable.
    Regards.

  • How to define certain document type (BKPF-BLART) for certain movement (101)

    Sometimes ( I think it is becuase of the tcode)  certain purchase 101 movements create a WA type FI document and some other times purchase 101 movements create WE type FI documents. I have seen a table ( accessing from omba transaction) in which for diffenent tcode´s we have either WE or WA. If we always use migo transaction why sometimes in bkpf we have migo_tr, migo_gi, ....;....
    How should I do in order to create always WE FI documents for purchase 101 movements?
    Thanks in advance.

    Check the settings in SPRO-MM-Inventory Management-Number assignemnt-Define number ranges for accounting documents.
    Here you assign accounting document type to tcodes.
    Normally , WA is used in receipts for MB1C/MIGO_GI tcode - for e.g for 561 mvmt type.
    SAP recomends keeping this setting as it is.
    SAP help text copied here for reference:
    Define Number Assignment for Accounting Documents
    In this step, you set the number ranges for the accounting documents which are created when goods movements or inventory differences are posted.
    Accounting documents in inventory management
    For accounting-relevant goods movements, the system creates two different documents:
    material document
    accounting document
    Both the material documents and the accounting documents have their own document numbers. When inventory differences are posted, the system also creates an accounting document for the physical inventory document.
    In this step, you only maintain the number assignment for accounting documents.
    Document types
    Accounting documents are split into document types to allow differentiated document number assignment, which is the basis for distinguishing between the various accounting operations. A number range is assigned to each document type. In a company code, you have to define number intervals for each number range and fiscal year.
    In inventory management, the transaction determines which document type is used.
    Example: Goods receipt for purchase order
    Requirements
    You have already defined the company code.
    Default Settings
    In the standard SAP System, the following document types are predefined for inventory management:
    WA  for goods issues, transfer postings, other goods receipts
    WE  for goods receipts with reference to purchase orders
    WF  for goods receipts with reference to production orders
    WI  for inventory differences
    WL  for goods issues with reference to deliveries (SD)
    WN  for net posting of goods receipts
    PR  for revaluation documents
    Each document type is already assigned a number range. In company code 0001, number intervals are defined for each number range both for the current and the previous fiscal year.
    Number range 49 with the year-related interval 4900000000 to 4999999999 is assigned to the document types for all goods movements, except goods movements with reference to purchase/production orders.
    Document type WE is used for goods receipts with reference to purchase orders and production orders. This document type is assigned number range 50 with the year-related interval 5000000000 to 5099999999.
    Please note that net postings of goods receipts (document type WN) are not active in the standard SAP System. If you want to post goods receipts net, you have to assign document type WN (instead of WE) to the transaction MB01.
    Document type WI is used for posting inventory differences. This document type is assigned the number range 01 with the year-related interval 0100000000 to 019999999999.
    SAP Recommendation
    Activities
    1. Check whether you can use the standard settings.
    2. If not, you have to add new document types to satisfy your requirements:
    a) Define a new document type under Financial accounting document
    b) types.
    c) Assign a number range to the document type.
    d) Under Financial accounting number ranges, define the year-related number intervals for the given number range in your company code. If you do not want to use the year-related number assignment method, enter 9999 in the Year field.
    e) Under Allocate document type to transaction, assign the relevant document type to the transaction codes of inventory management.
    Document type PR (revaluation documents) is already assigned.
    Notes on transport
    You transport number range objects as follows:
    Choose Interval -> Transport in the accounting document Number Range screen.
    All intervals for the selected number range object are deleted in the target system first. After the import, only the intervals you export are present. The number statuses are imported with their values at the time of export.
    Dependent tables are not transported or converted.
    All other activities are linked to the automatic transport.
    Edited by: Saurav on Jan 24, 2011 6:03 PM

  • Two types of outputs for goods receipt

    Dear all guru,
    we are making GR for suppose 5 items.
    and here we are printing GR document for store record with having all 5 items in single document.
    and also we need to take additional printout for 5 items seperately for GR Tag for keeping with material lot.
    so we need 6 print outs.
    Pl guide me how to use two output types and one is based on collective and one is individually for each item.
    Regards,
    Vimlesh

    Tricky one!!
    I belive you can controll it by using the appropriate Output type for eg:
    Output type WE03 is for all line items in an GR document.
    Output type WE01 is for seperate line item in GR documnt.
    The issue is you can mantain only one output type at a time.
    The general solution would be mantain WE03 as default output type and later for seperate line item print out go to MB02 and change the output type to WE01 and save it and process the output using MB90 with refrence to Material document.
    For other customized solution need to be coded for the output determination procedure, get help from your ABAPER. A customised hard coded routine need to be insert in the procedure for the output type you want to use.
    Hope it helps..
    Regards,
    Sujoy

  • Output type not created for outbound delivery while using SHMNT05 idoc type

    Hi Experts,
    Please help me to solve the below issue.
    Problem:- I want to to generate an IDOC(using type SHPMNT06) once the PGI is done for an outbound delivery.
    Already it is working fine when used DESADV.DESADV01 or DESADV.DELVRY07. But now the output type is not getting created when used SHMNT.SHPMNT06. I have created a separate output type ZPJ7 just as a mirror copy of the earlier output type(ZPJ6) used for DESADV.DELVRY07.
    Question:- Is it possible to use idoc SHPMNT06 instead for DESADV01 or DELVRY07? If yes then what are steps to be followed?
    The reason why SHPMNT06 idoc is planned:- We have a scenario to send outbound delivery to 3rd party system via XI. If the outbound delivery is for National(Not for Export) and PGI is completed then send the idoc straight forward to XI otherwise DO NOT generate the idoc, but just create the delivery. Collect all the deliveries in a transport and send it in a shipment. The shipment details can be sent using SHPMNT idoc. Now from XI perspective, if we can utlitze the same SHPMNT idoc for the National delivery(1st case) then perhaps this will require less effort. Hence shipment idoc is required to be generated when the delivery is created and PGI is done.
    Also it would be great if you can advice some better way to solve above mentioned scenario.
    Many Thanks,
    Sanjay

    There could be several reasons. Go to the document and in the extras-output check output determination analysis in the processing log.
    If the output has been created successfully then you need to see your printer determination. Ask basis to check it up. If the problem is that even the print preview is not coming. Check your communication in the output analysis and ensure LOCL is selected. Any other printer will need to be configured.
    If thats done already then check whether you have maintianed the condition record.
    If that too is done then check whether your output type has been assigned to the output procedure and that the output type is listed in the procedure.
    regds
    Jude

  • Encoding for content in KM

    Hi All,
    I'm modifying and updating an existing file in KM. I use DOM to parse the file and update it as follows:
    Element rootElem = doc.getDocumentElement();
    <code to update rootElement>
    Finally, I want to convert the Document or rootElement to IContent and update it in the repository. I use the following code:
    IContent newContent = (IContent)MimeUtils.getContentFromString(rootElem.toString(),"text/xml");
    IContent newFile = new Content(newContent.getInputStream(),"text/xml",newContent.getContentLength(),"ISO-8859-1",null);
    resource.updateContent(newFile);
    The file is updated with the above code, however the encoding "ISO-8859-1" does not seem to be set. There are spanish characters in the file and upon opening the updated xm file in the browser, I get "Invalid character" errors for the spanish characters..
    Is there an alternative method to set the encoding for the created "Content" object? Appreciate any pointers on this. Thanks!
    ~Prachi

    resolved by creating content from the string "<?xml version="1.0" encoding="ISO-8859-1"?>" + rootElement.toString()

Maybe you are looking for

  • Animation problem

    For some reason my animations started acting up, every time I Ctrl+V'd it pasted it over all layers,unlike before and It will not show the change in images if I hide some until I move the image in the layer , how do I fix it?

  • Update VBKD table using open sql

    HI when i use BAPI_SALESORDER_CREATEFROMDAT2 to create SO! but some field i can't fill in BAPI_SALESORDER_CREATEFROMDAT2 of parameter. so i want update it using open SQL. so i want to use BAPI_SALESORDER_CREATEFROMDAT2 first. and next using open sql

  • Acrobat 8 freezes after a clean install...

    I'm moving my Acrobat 8 Standard licensed copy from one laptop to another. I've already deactivated it from the old account. I re-downloaded the installer from the Adobe store and tried running it on my new laptop. Install goes just fine... no issues

  • Using bean methods within JSP declaration

    Is it true that bean methods will not work in JSP Methods ? For example: // get the bean <jsp:useBean id="FormValidate" scope="session" class="fsm.frontendCtr.FormValidate" /> // build a new method in jsp <%! boolean validate(HttpServletRequest req,

  • Caching Query Image Stream

    Currently I am working on a CMS of sorts and the higher-ups wanted to have some digital asset management capibilities. All images are now being stored in SQL2k5 in binary form. On a page that contains the image, I have a the image src="myImageLoader.