Set up of IDS

Hi,
I have a good background of IDS and Documaker Development. I wanted to set up IDS for retrieval and Wip Processing in AIX, can somebody guide me with the proper document or the step by step guide for IDS setup

Hi
While I was going through the Bitmap Print Driver handbook of Studio 11.5, I came across this information. You may check these settings once to ensure blank pages do not appear due to fonts or settings.
Also, I think you need to have the necessary fonts in your system for getting the expected Output appearance.
The feature says:
"You can directly create TIFF Format Outputs from Documaker making use of the XER, PCL or any other Fonts that are available".
Please explore this option and let me know if its helpful. Thank you.
I am giving here the code snippet for INI and also attaching the BPD Handbook for your easy reference.
< Printers >
PrtType = BMP
< PrtType:BMP >
BMPType = TIF
Module = BPDW32
PrintFunc = BPDPrint
Device = NULL
SendColor = Yes,Enabled
GrayShades = Yes
ForcePrintinColor = Yes
SelectRecipients = Yes,Enabled
Resolution = 300
DefaultSymSet = W1
PageNumbering = Yes
RotateLandscapePages = Yes
Fonts = XER,PCL,TTF,PS,AFP
Please note fonts are taken from the Fontlib Location and FXR defined in the INI. You need to give the order based on your preference; as per the sample, it looks for XER fonts then PCL fonts and so on.
Thank you.
Edited by: NGarga on 21 Dec, 2010 9:41 PM

Similar Messages

  • I'm setting up Apple ids, and its not giving me the option to set up a rescue email. How can I add one?

    I'm setting up Apple IDs, and its not giving me the option to set up a rescue email. I've set up Apple ID's in the past, and its always given me the option. How can I add a rescue email?

    You can find the instructions here. I removed the screenshots but the text is copied below.
    http://support.apple.com/kb/HT5312?viewlocale=en_US&locale=en_US
    You can edit or delete your rescue email address at My Apple ID. To edit your rescue email address:
    Navigate to My Apple ID using your web browser.
    Click "Manage your account"
    When prompted, sign in using your Apple ID and password.
    Click Password & Security
    You'll be asked to answer 2 of your 3 security questions before you can make any modifications. If you are unable to remember your answers, you can choose to send an email to your rescue email to reset your security questions.
    Note: The option to send an email to reset your security questions and answers will not be available if a rescue email address is not provided. You will need to contact iTunes Store support in order to do so. 
    After you've validated your identity by correctly answering your security questions, click Edit to the right of your rescue email address.
    Once you've finished editing your rescue email address, click the Save button directly below the email field.  

  • Can I set up 2 IDs on one iPad?

    Can I set up 2 IDs on one iPad so we can both keep track of stats on games.  If so, how do we do it?

    Unable to setup more than one Apple ID with Game Center without having to log out/in all the time.

  • Java API: Limiting search to a specific set of records ids?

    Hello.
    I'm trying to find a way to do the following: run a search (a pretty simple search, just check for a specific value in a specific field), but instead of running the search on an entire table I want to limit it to a specific set of record-ids, the point being that I know which record-ids I want to search on (I'm getting them from a listener event) and I'd like to make the search more effective.
    Any ideas?
    Thanks,
    Alon

    Alon,
    Are you on SP6? If so, have you tried the [RetrieveRecordsByIdCommand|http://help.sap.com/javadocs/MDM/SP06/com/sap/mdm/data/commands/RetrieveRecordsByIdCommand.html]?
    Regards,
    Doug

  • Set default Parameter ids for the users

    Can some one please tell me how to set PID and values(Parameter ids) which will default upon every user creation.
    thnx.

    hi syed,
    You can fill fields on screens with default values from SAP memory using parameter IDs. It is the same as SPA and GPA.
    Parameter IDs are stored in the table <b>TPARA</b>. They can be created from <b>SE80</b>. Choose Edit Object->Choose tabstrip "More" and then choose the radiobutton Set/Get Parameter ID
    Below example is from <b>SAP Help</b>.
    For example, a user only has authorization for company code 0001. By entering the value '0001' in field COCD in the Parameter register in this user’s master record (SU01), the system automatically fills the field Company code with the value ‘0001’ on all screens he or she calls. If this company code is not predetermined using a parameter ID in the user master record, the system automatically adopts the first value entered by the user at the beginning of the transaction for the rest of the current terminal session. However, this value has to be re-entered the next time the user logs on to the system.
    Regards
    Alfred
    <points_begging_removed_by_moderator>
    Message was edited by: Julius von dem Bussche

  • HT4798 How can I create/ set multiple Mac IDs if the same Macbook is required to be used by Multiple users?

    Can Anyone let me know if have to alllow multiple users with their own apple ids for the same macbook pro, how do I need to go about it?

    data.
    At least your query seems to get data where MODIFIED_BY IS NULL, doesn't it?
    So if the reccount is>0 there is a reason to inform your employees.
    Bye, Olaf.
    Olaf Doschke - TMN Systemberatung GmbH
    http://www.tmn-systemberatung.de

  • How can i set up different IDs under the same account so that each of my children can use itunes cards but not access or share each others

    i have 3 ipods one for each child.. i need to set it up so that each have access to my account but individually so that they cannot use each others itunes money

    Hi Felicia,
    Are you wanting them to have access to your account so they can purchase items using your credit card? Or do you want them "sharing" your account for some other reason?
    GB

  • Problem setting up user ids to use the Oracle password file.

    I want to set up my database users so that a password file is used for connecting to the database.  I have completed these steps successfully.
      BTW - DB is 11.2.0.3 on AIX power 64
    1.  Created the password file for the database using the orapwd command.  Allowing 20 entries.  Confirmed the file was created in the $ORACLE_HOME/dbs directory
    2.  Created a database user, sbrower
    CREATE USER SBROWER IDENTIFIED BY <password> DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP PROFILE DEFAULT ACCOUNT UNLOCK ;
    GRANT DBA TO SBROWER;
    ALTER USER SBROWER DEFAULT ROLE ALL;
    GRANT UNLIMITED TABLESPACE TO SBROWER;
    ALTER USER SBROWER QUOTA UNLIMITED ON USERS;
    3.  Connected to the database as SYS and granted sysoper to SBROWER
    4.  Using putty, ssh'ed into the server where the database resides.
    5.  Set the oracle variables (ORACLE_HOME, ORACLE_BASE, etc.) and PATH
    6.  Was able to connect to the database using sqlplus / as syoper
    THE PROBLEM
      For another user, EA_RDX_ORACLE1, I follow the same steps (2-6) bu when I execute step 6, it does not allow the connection
    ERROR:
    ORA-01031: insufficient privileges
       but, if I use sqlplus ea_rdx_oracle1/thepassword as sysoper it works
    Looking at v$pwfile_users on the database:
    USERNAME SYSDBA   SYSOPER      SYSASM
    SYS      TRUE      TRUE      FALSE
    SBROWER  FALSE     TRUE      FALSE
    EA_RDX_ORACLE1 FALSE TRUE FALSE
    3 rows selected.
    There is one thing that is different for the ea_rdx_oracle1 id's:
    - The users who use this id, use a took called CyberVault to check out the id.  The password for the id changes each time the id is checked out; however, the way the id is set up on the DB servers, us user does not have to enter the password when they log in (ssh).
    I have sent an email to our unix admin asking his how the id was set up so that it can ssh into the server.  It is not included in the list of users in any group in the /etc/ogroup file and it is not included in the /etc/opassword file.

    The OS authentication ( sqlplus / as sysdba ) does not require the password file.
    The problem may be related to the OS user you are connecting to that server - it is not a member of OSDBA group ( usually DBA ).

  • How to Set up Family Plan when you have two Apple IDs?

    I stopped short of setting up Family plan because my wife and I have two Apple IDs each: One for iTunes ad one for iCloud.  This was caused by migrating from long ago Apple "cloud" services.  
    The set up seems to assume you have a single ID for each person and there are no instructions to set it up using hyour current iTunesa and iCloud IDs.
    Has anyone successfully set up Family Plan while they have two sets of Apple IDs? 

    finally I found someone else with my dilemma.
    I have my iTunes/AppStore ID with all my purchases and my iCloud ID with everything else.
    this is a major issue that needs to be addressed.
    thank you.

  • Using set/get parameters or export/import in BSP.

    Hi All,
    Is it possible to use set/get or export/import in BSP?
    We need to set/export some variables from a BADI and get/ import them in the BSP application.
    Code snippet will be of great help..
    Thanks,
    Anubhav

    Hi Anubhav,
    You can use the Export / Import statements for your requirement,
    from the BADI use EXPORT to send the variable data to a unique memory location
    with IDs
    e.g.
    *data declaration required for background processing
          DATA: WA_INDX TYPE INDX.
    **here CNAME is the variable you want to export
    EXPORT PNAME = CNAME TO DATABASE INDX(XY) FROM WA_INDX CLIENT
                SY-MANDT ID 'ZVAR1'.
    and in the BSP application use the IMPORT statement to fetch back the values
    set with the IDs above.
    IMPORT PNAME = LV_CNAME
      FROM DATABASE INDX(XY) TO WA_INDX CLIENT
      SY-MANDT ID 'ZVAR1'.
    deletes the data to save wastage of memory
      DELETE FROM DATABASE INDX(XY)
        CLIENT SY-MANDT
        ID 'ZVAR1'.
    Regards,
    Samson Rodrigues

  • How do i set up mutliple devices with one apple id

    My wife and I have 2 i phones and now a new i pad, we share an apple ID from one computer, songs apps, contacts but have seperate email ect. Now she has a i pad and wants to be able to text from it using her cell, as it stand now if she sends a text it shows up as coming from my cell? how do i fix that?

    You need to set up two user accounts on the mac.  System Preferences>Users & Groups.  Then each user can set up apple IDs for itunes and icloud any way they want.

  • Family Apple IDs

    I have had iPads since they first came out and we have several iPads in the family used by both adults and dids. Through the years we have acquired dozens, if not hundreds of apps, especially Kids' games.
    With the new family sharing I set up Apple IDs for my kids.  But one issue seems to be that apps installed with the old apple ID (which is mine) need to be updated with the password for my ID.
    This makes it a bit of a pain as you have to then get into multiple passwords for multiple IDs when upgrading apps.  Is there any way around this?  If not I may just go back to "buying" all apps with a single ID.

    [sarcasm]Sure, I will just spend a few hundred bucks doing that. Thanks for the helpful suggestion[/sarcasm]

  • Using Map Files / Map IDs

    Heya,
    RH9, merged webhelp
    I'm trying to set up Map IDs for a quasi-context sensitive help feature, and I'm feeling a bit overwhelmed. I've read through the RH9 help which links to the Grainge website and a couple more links, but I'm still not sure what to do.
    First, the background:
    We auto-generate a set of release notes for new features and fixes. This is done using a script that pulls the relevant information out of Dovetail (basically where all our support and development cases are stored). So basically our release list shows the case number, the area of the software, and a brief summary of the fix/feature. The release notes are script-generated as an .html file that we can link to in help.
    The issue is that they want me to alter the release notes so that the case number serves as a hyperlink to the relevant topic in help. So, for example, if we had a new feature for widget making, case number 12345, the release notes entry for this would have a hyperlink that would take the user to the 'Widget Making' help topic.
    My thinking is that I can use the case numbers as Map IDs, ie assign Map ID '12345' to the 'Widget Making' topic, and then create a generic link in the release notes that can 'insert' the relevant case number when the user goes to find that associated help topic.
    Potential Issue:
    We use a merged help system, but we do not need to merge map files. Our help system consists of one mostly-empty parent project (title page, about page, etc.), a project that contains the majority of our topics, a project that contains database information for technical users, and a few other odd projects. All of the linked topics are going to be in the same main child help project. Because of this, the map file/IDs are going to be a single set in a single project, but not the parent project.
    Does this only affect the pathway for the basic link (e.g. "webhelp/mergedProjects/child1.htm" instead of "webhelp/start.htm"?), or are there other considerations? For example, the merged help map ID topics I've seen talk about using number ranges to denote the different projects, but since we've only the one, do we really need to do that? To me, it seems like we should be able to use a relatively straight-forward single-project type link, with the only difference being that the the link goes to a child project folder and not the main webhelp folder.
    So far in testing, the link doesn't work, so I'm wondering if either the URL is not as straight-forward as I hoped, or I'm missing something else due to the nature of how our webhelp is set up. Because it's a child, do we still need to 'merge' map files even if we don't need one for the parent? (ie we create an empty parent map file, merge it with the child, and link to the parent?)
    Thanks for any tips/advice!

    Hi,
    When you use CSH in a merged project, the master project will automatically check all child projects when the context sensitive id cannot be found in the master project.  Peter’s method includes merging the map files but I don’t think that is necessary. We have several merged projects that work perfectly without merging the map files. But Peter is the authority on merged help
    It is important to first get the terminology straight. In WebHelp there are Map ID’s and Map numbers. The Map ID (or topic id) is an alphanumeric string that can be anything from one character to a hundred or more characters. Then there are the Map numbers. Map numbers are a number between 1 and 4.294.967.295.
    The terminology is important because what RoboHelp calls a Map ID may be referred to as a map number. Reading the article on Peter’s site I get the impression that what is called a Map ID on Peter’s site is actually the Map number in RoboHelp. (Please correct me if I’m wrong Peter.) The Map ID in RoboHelp is the Topic ID on Peter’s site. See step 8 of the article, it describes how to create a test page using the default RoboHelp JavaScript API. But that test page actually uses the map numbers as the default JS API does not support topic id’s, only map numbers.
    Your map file tells the following:
    ‘12345’ is the Map ID or topic ID.
    ‘1’ is the Map number. The Map ID referred to on Peter’s site if I’m not mistaken.
    Calling the Map number 12345 will not work if you use the default method because you are looking for the wrong number. Try the following:
    Say that your master project is placed on http://localhost/newproject.htm. Open a new browser window and add the following URL in the browser where you replace the url with the url your project is placed:
    http://localhost/newproject.htm#<str=12345
    Does this get the desired result? Also try the test page but use ‘1’ instead of ‘12345’. Does this also get the correct page?
    You (or your developers) may also be interested in my WebHelp CSH dissection: http://www.wvanweelden.eu/robohelp/webhelp/csh Note that this article is aimed at developers and does not provide any direct answers, but it will help you understand the different settings in RoboHelp.
    Hope this doesn’t confuse you and I hope my assumptions about your intended action are correct.
    Greet,
    Willam

  • Apple ID already set up, but not getting email to reset

    Trying to set up apple IDs for my boys, but the website says their email address have already been used. I hit the send the reset my password by email, but got no email. Anyone familiar with this issue?

    Settings>Store...tap the ID shown...sign out...sign back in with the ID you want to use.
    Note: Any & all apps obtained with your old ID are forever tied to that ID & can only be updated using that ID. Apps cannot be transferred to another Apple ID.

  • How to get KM Layout Set Description

    Hello,
    Can we get the Layout Set description through KM API?
    We are able to get all existing Layout sets using String[] ids=layoutService.getAllLayoutSetIDs(); but we want descriptions also for these Layout Sets
    Please let me know if anybody have an idea
    Thanks

    Hi Bobby,
    For 7.3, it is
    IConfigManager configManager = ConfigHelper.getConfigManager(request.getUser());
    IConfigPlugin catPlugin = configManager.getConfigPlugin("/cm/ui/settings");
    IMutableConfigurable myConfigurable = catPlugin.getConfigurable("AdminExplorer");
    String desc = myConfigurable.getPropertyValue("description");
    For this code, the only SharingReference needed is "SAPJ2EE::service:sap.com/tckmconfig~srv".
    For 7.0, things are slightly different, but if you search for "IConfigPlugin" on SDN, you will get the stuff needed immediately.
    Hope it helps
    Detlev

Maybe you are looking for