Use 2 character sets in the same sapscript form (1100 & 4030)

Is this possible or I need to make a new character set and then make the changes that I need.
For example:
The 'Field group' character is usually hex 1D. The problem is
that hex 1D is not part of the printer character set 1100 . So
a lot of changes are necessary:
- Copy your device type in the customer naming room (transaction SPAD,
Utitities - For device types - Copy device type).
- Check, which character set your device type uses (transaction SPAD,
device type).
- Copy the character set to the customer naming room (SPAD - Character
set ; customer naming room: 9xxx)
- Call SPAD - Device Type and put the new character set into all three
fields at 'Printer character sets'.
- Now go into your new character set (SPAD - character set , Button 'Edit
character set '). Unfortunately the character 'Field group'  doesn't
exist yet. So you should select a character which you don't need and
which you can 'misuse' as 'Field group' . Let's say, you don't need
the character 'Thorn'. Then you
have to add/change the entry of character 354,
if you want to use the Thorn character for the 'Field group' .
Here you must insert the sequence '1D' to get the 'Field group'  character .
Now if you write <354> in the Sapscript layout set in the old
editor or if you press 'Insert command' in the new editor
and insert SAP character 354, a 'Field group'  should be inserted
at that place in the print data.

The Function Module CLOSE_FORM has an optional TABLES parameter called OTFDATA that can be filled with the contents of the document instead of printing.
To do this, you must set the field TDGETOTF = 'X' in the OPTIONS structure that can be supplied as an optional parameter to Function Module OPEN_FORM when the document is opened for output.
This table contains the OTF format data that describes your SAPscript document. Normally the SAPscript compositer would print this to an external printer or fax or email, but once captured in your program you can do anything you like with this information.
For instance, you can convert OTF data to a PDF file using SX_OBJECT_CONVERT_OTF_PDF. See the many threads on this topic in the ABAP Development forum if you are interested.
I hope this hint is helpfull to you. Good luck.

Similar Messages

  • How do i set up a second display for my iMac desktop?  I want to use both displays at the same time.

    how do i set up a second display for my iMac desktop?  I want to use both displays at the same time.  My iMac is the 24" Late 2006 model.  I recall that there is a cord for plugging in a second monitor, but I want to make sure that i can use both monitors side-by-side at the same time.  thank you.

    If the Display supports DVI, then you will need a > Mini-DVI to DVI Adapter and a DVI cable.
    If the Display only supports VGA, then you wiil need a > Mini DVI to VGA Adapter and a VGA cable.
    Noting that the (digital) DVI is far better than the (analog) VGA connection.
    Also see > Using Dual Displays on Mac OS X: The Experience

  • You can use the same email address that you used to set up the old Sync? , before bookmarks can return, if I registered success?

    for my old email address account( @qq.com)
    july 2014 I install new windows xp, but I can't log in before account 44*******@qq.com, its always give me enjoyful when I was easy open bookmark url from different computer.
    but there is no any notice or email to me firefox will have new sync system, if there, I could backup before bookmarks from 28 vision ( or some june's vision), but this big browser group is quiet, now, I can't log in again old account,
    achieve process:
    1st, normal account and right password, its show me unknown account.
    2nd, Password Reset, " An email has been sent to the requested account with further information. If you do not receive an email then please confirm you have entered the same email address used during account registration.", I couldn't receive any mail(or in spam) :(
    3rd, How to update to the new Firefox Sync ...
    "You can use the same email address that you used to set up the old Sync." , before bookmarks can return, if I registered success?
    I really feel disappointment with firefox( although used for many years), much text, but couldn't resolve clear simple path. answers more hidden link to read, I just use it explore internet, I am not technology engineer, don't care what so much b***t.
    thanks, back me old bookmarks only, thanks.

    Hi eddinchina,
    You should have no need to use the Old Sync account.
    As long as device or devices are Firefox 29 or later (They should all be Firefox 30 now) you should use the New Sync.
    You may use the same email address with both accounts.

  • Have Mac OS 10.7.4 installed on an iMac-3.1 GHz Intel Core i5...the Finder will not find file on Windows mounted volumes...what setting should we be using...tried the same settings as our iMac 10.6.8-did not work!

    Have Mac OS 10.7.4 installed on an iMac-3.1 GHz Intel Core i5...the Finder will not find files on Windows mounted volumes...what setting should we be using...tried the same/working settings as our iMac 10.6.8...did not work for 10.7.4!

    Added note: We are tring to find files on Windows 2008 Server Standard...

  • UDO Form as CFL  in the same UDO Form

    Hi,
    I have created a user-defined form using UDO. In the same form I am using it as CFL  bound to a textbox.  I am unable to get the selected data in the textbox. I have written the CFL  event to capture the data in the textbox. Please let me know if its possible to use the same form(UDO) as CFL in the same form(UDO) or not ?  Any help is appreciated.
    Regards,
    Noor Hussain

    Hi Janos,
    I am able to create the CFL. But the selected value is not being copied to my textbox from the CFL. My code is as below.
    Private Sub AddCMSBPChooseFromList()
            'Choose From List Collection object to store the collection
            Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
            'Conditions object to set the conditons
            Dim oCons As SAPbouiCOM.Conditions
            'Condition object to set the conditons
            Dim oCon As SAPbouiCOM.Condition
            'Getting the Form Choose From Lists
            oCFLs = oForm.ChooseFromLists
            'Choose From List object to store the ChooseFromList
            Dim oCFL As SAPbouiCOM.ChooseFromList
            'ChooseFromListCreationParams to create the parameters for the CFL
            Dim oCFLCreationParams As SAPbouiCOM.ChooseFromListCreationParams
            oCFLCreationParams = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
            oCFLCreationParams.MultiSelection = False
            oCFLCreationParams.ObjectType = "IS_CMS_BP"
            oCFLCreationParams.UniqueID = "CFL_3"
            oCFL = oCFLs.Add(oCFLCreationParams)      
        End Sub
    oEdit = oForm.Items.Item("txtConsAcc").Specific
                oEdit.ChooseFromListUID = "CFL_4"
                oEdit.ChooseFromListAlias = "U_ConAcc"
    If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST Then
                            Dim oCFLEvento As SAPbouiCOM.IChooseFromListEvent
                            oCFLEvento = pVal
                            Dim sCFL_ID As String
                            sCFL_ID = oCFLEvento.ChooseFromListUID
                            oForm = SBO_Application.Forms.GetForm(pVal.FormTypeEx, pVal.FormTypeCount)
                            Dim oCFL As SAPbouiCOM.ChooseFromList
                            oCFL = oForm.ChooseFromLists.Item(sCFL_ID)
                            If oCFLEvento.BeforeAction = False Then
                                Dim oDataTable As SAPbouiCOM.DataTable = oCFLEvento.SelectedObjects
                                Dim val As String
                                Try                              
                                    If pVal.ItemUID = "txtConsAcc" And oCFL.UniqueID = "CFL_4" Then
                                        With oForm.DataSources.DBDataSources.Item("@IS_CMS_BP") '@TABLE is the name of the DBDataSource the form's connect to
                                            .SetValue("U_ConAcc", .Offset, oDataTable.GetValue(0, 0)) 'U_txtGRNNo is the id of the field the EditText is connected to.
                                        End With
                                    End If                                                                               
    Catch ex As Exception
                                End Try
                            End If
                        End If
    Regards,
    Noor
    Edited by: noor_023 on Jun 17, 2010 10:59 AM
    Edited by: noor_023 on Jun 17, 2010 11:00 AM

  • I've done everything I know in order to get my calendar in iCloud synchronized with my macBook, my IPad and my iPhone, but get no success. I've checked if all devices are set to the same account. Can you help me?

    I've done everything I know in order to get my calendar in iCloud synchronized with my macBook, my IPad and my iPhone, but get no success. I've checked if all devices are set to the same account. Can you help me?

    The only thing I can see strange is that when I login my iCloud account through my principal email address, when I check my preferences is marked an @me.com address that is old and I don't use it anymore, but I can't erase it or even change it.

  • Using multiple ipods on the same cpu

    my little brother & older sister just got new ipod videos and while i have an ipod photo i need to know if any1 can tell me how to set it up so i can use multiple ipods on the same (windows) computer without creating multiple user accounts if its even possible

    Hello,
    We have three ipods in our home - new g5 (mine) and 2 minis. We all use the same computers. Basically our library contains around 15gb of music (everyones).
    We have individual play lists - mine: good music; daughters rap or thumping stuff - lol.
    When you first plug your new pods on you get a screen up which asks you what you want to do (its in preferences usually). Chose the option to automatically update the following playlists and select which one you want to match with that particular pod. My youngest daughter has a few playlists i.e on the go, chill etc. so she selects around 4. I have one, and my elder daughter has a couple.
    Its easy to do (especially if I could work it out). Good luck.

  • Using multiple timer in the same SessionBean

    Hello,
    Is it possible to use multiple timer in the same Stateless Session Bean. In my application a user can schedule some task to execute. To do so I was thinking of creating a Session Bean which would create calendar timer on user request and, when one of the timer expires, retrieve the task to execute thanks to the information stored in the timer.
    When I tried the solution explained above, it seems that the @timeout method is synchronized on 1 timer. For example if I create a timer that will be executed every 10 seconds and another one executed every 30 seconds, the timeout callback is called every 30 seconds but 4 times.
    My code looks like that :
    @Stateless
    @LocalBean
    public class TimeManager {
        public void onUserRequest(ScheduleExpression expression) {
            Timer timer = timerService.createCalendarTimer(expression, timerCfg);
        @Timeout
        void timeout(Timer timer) {
            logger.log(Level.INFO, (String) timer.getInfo());
    }Is there a way to do what I want?
    Thank you

    This doesn't make any sense to me. If i were to write a bunch of schemas for a particular applicaion, would
    I have them all in the same namespace? You would normally have one schema that describes the information model associated with the one namespace that the different documents in your application use.
    If so, why can't I load more than one in the same name space?The parser chooses the schema based on the namespace alone. There is no other information used to decide which schema to use, so you can only have one schema for the namespace.
    They all have different root elements.You can have different root elements in the one schema.
    I don't even need the namespaces, but I can't
    figure out how to get rid of them (the schema isn't valid with out them according to XML Spy). You can set the schema explicitily before parsing, but not (AFAIK) set after parsing has begun, except by using the mapping of namespace to schema location.
    I have also tried to use the external-noNameSpaceSchemaLocationproperty, but it doesn't seem like you can pass in an array of schemas to that one. It only expects a
    String as the Object you pass in to setProperty. Yes, you can only validate a document against the one schema.
    So, how can I load all my schemas so I don't have to reference them in the XML documents? Either combine your schemas so you have one schema for your namespace that validates elements which are defined in that namespace (the formal/correct way of doing it), or construct a filter that inserts a PI to point to the schema once the root element is opened (the pragmatic/bit of a hack way of doing it).
    Pete

  • How can I recover an old/disused iCloud account. I was having some issues with my apple id so I restored my iPad, I am now stuck on the activation screen as I no longer use the iCloud account i used to set up the iPad and can't remember the address or pas

    How can I recover an old/disused iCloud account. I was having some issues with my apple id so I restored my iPad, I am now stuck on the activation screen as I no longer use the iCloud account i used to set up the iPad and can't remember the address or pas

    I have the same problem - it is maddening. I rely on this iPad for work so this is not just an annoyance! The above solutions of changing the appleid on the device or on the website do not work.
    The old email address no longer exists - I haven't used it in a year probably and I no longer have the account.  I logged into the appleid website and there is no trace of the old email address so there is nothing that can be deleted or changed there.  On the iPad there is no trace of the old email address so nothing can be deleted there either. I have updated the iPad software and the same problem comes right back.  Every 2 seconds I am asked to log in using the old non-existent email.  The device is currently useless.
    The only recent change to anything was the addition of an Apple TV device, which was set up using the correct login and password.
    Does anyone have any ideas? The iPad has been backed up to the iCloud so presumably it now won't recognize the current iCloud account? So restoring may notbe an option?

  • Overprint Preview and Workspace are set to the same, but look different

    I'm working for something to be viewed on a screen, so I work in the sRGB IEC61966-2.1 (Edit > Color Setting > Working Spaces - RGB: sRGB IEC61966-2.1 ). I have set the Overprint Preview to the sRGB IEC61966-2.1 as well (View > Proof Setup > Device to simulate : sRGB IEC61966-2.1). But when I tick Overprint Preview the colors look completly different. Why?
    Thanks, Andi

    Maybe you are right and it doesn't make much sense to use the Overprint Preview in this case. I think what happens is, when you tick Overprint Preview, ID converts from your actual RGB-Color Space to a set CMYK-Color Space and back to the old RGB-Color Space (if set to the same one). On it's way the colors change through it's conversion from RGB to CMYK and back to RGB. That could explain it.
    Thanks a million, Andi

  • Using 2 refcursors within the same procedure

    Hi,
    Can we use 2 refcursors within the same procedure. This might sound strange. But I have a scenario of doing so- one for dynamically checking for some validations and another for returning a result set.

    Yes, go thru the below example.
    CREATE OR REPLACE PACKAGE CURSPKG AS
    TYPE T_CURSOR IS REF CURSOR;
    PROCEDURE OPEN_TWO_CURSORS (EMPCURSOR OUT T_CURSOR,
    DEPTCURSOR OUT T_CURSOR);
    END CURSPKG;
    CREATE OR REPLACE PACKAGE BODY CURSPKG AS
    PROCEDURE OPEN_TWO_CURSORS (EMPCURSOR OUT T_CURSOR,
    DEPTCURSOR OUT T_CURSOR)
    IS
    V_CURSOR1 T_CURSOR;
    V_CURSOR2 T_CURSOR;
    BEGIN
    OPEN V_CURSOR1 FOR SELECT * FROM EMP;
    OPEN V_CURSOR2 FOR SELECT * FROM DEPT;
    EMPCURSOR := V_CURSOR1;
    DEPTCURSOR := V_CURSOR2;
    END OPEN_TWO_CURSORS;
    END CURSPKG;
    I hope it would be helpful.

  • Hello, is there a way to redact a word or item from a pdf using adobe pro X the same way you can if you convert a word doc using pro X on a pc?

    hello, is there a way to redact a word or item from a pdf using adobe pro X the same way you can if you convert a word doc using pro X on a pc?

    If the document is not a scanned image or protected from editing then you should be able to edit it. I would have to guess you have a scan and when you converted to Word, you ran OCR (Optical Character Recognition) on it converting the scanned image to live text.
    This is the forum for the free Adobe Reader which can not edit or redact.

  • I recently wanted to update my phone and so when i put it in recovery mode and tried to set it up it said that i had to enter the apple id that i used to set up the phone the first time but i dont know the information to my old account what do i do?

    I recently wanted to update my phone and so when i put it in recovery mode and tried to set it up it said that i had to enter the apple id that i used to set up the phone the first time but i dont know the information to my old account what can i do?

    You will need to remember or find the id that you used, without it you won't be able to re-activate your phone - if you are on the activation screen then does that show the first letter of the id and the email provider's name ?
    Do you know if you have any of the account's downloads in computer's iTunes library - if you do then you can get the id form that : Recovering a forgotten iTunes Store account name.
    If not then see if you can find it via http://appleid.apple.com : Apple ID: How to find your Apple ID.

  • Im trying to restore my iphone 3gs to its factory setting at the same time updating to a newer version 6.1.2. while restoring, itunes states"We're sorry, we are unable to continue with your activition at this time." i cant open my phone, what does it mean

    Im trying to restore my iphone 3gs to its factory setting at the same time updating to a newer version 6.1.2. while restoring, itunes states"We're sorry, we are unable to continue with your activition at this time." i cant open my phone, what does it mean

    99.9% of the time, the cause of this issue is the fact the phone was jailbroken/hacked to unlock it for use on networks other than the network the phone was originally locked to. Apple maintains a database of officially unlocked iPhones, and when Apple's servers detect phones such as yours, activation stops & you get the message you got.
    So, either get a sim card from the carrier your phone was originally locked to, or get it officially unlocked, because it appears that it was not officially unlocked.

  • Hi,  If I have 1 license for creative cloud, will it possible to install in 2 computers (1 laptop and 1 desktop)?  When I am in the office I can use desktop and at home I can use laptop? At the same time I will be using only one devise. Will that be possi

    Hi,  If I have 1 license for creative cloud, will it possible to install in 2 computers (1 laptop and 1 desktop)?  When I am in the office I can use desktop and at home I can use laptop? At the same time I will be using only one devise. Will that be possible?  Thanks

    Yes. Yes. Yes.
    Mylenium

Maybe you are looking for

  • Advice for recovering from "The requested URL was not found on this server" error when browsing photos and videos on my iPhone 4S IOS5.1

    Im not quite sure how I got into this situation but I have fried my Iphone app photo and video library.  This demonstrates itself in 2 ways 1. The above error message when I attempt to play videos older than a certain date. 2. Photos older than a cer

  • Searching over network doesn't work

    Hey everybody, I seem to be having a big problem with searching over the network. Whenever I type something in to search, and tell it to look over the "shared" network, it doesn't even try and comes up with zero results. I switch from "Contents" and

  • Extract image form a buffer in a ring with labview

    I use two buffers in a ring for an image acquisition in order to substract two images in real time. After the buffer in the ring I didn't succeed to extract the image with the VI substract,in order to store the image in others buffers( error 14...)in

  • SEM-BPS  Lay Out Object Locked... Urgent...!!

    Hi, one issue , when i m trying to work on one layout it saying planning object has been locked, we released the all the lockes in Sm12 buy still I am unable to work on that saying that error SMS..CRM_MKTPL_KP1023, Somebody can Give the solution....

  • External Definitions under SAP Basis 7.10

    Hi All, We are trying with Directory API Developement using the following blog,          https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/11655. [original link is broken] [original link is broken] [original link is broken] As per the blog we nee