Character Codes 10 and 13 in Tj operator

Hello,
I have a question about usage of character codes 10 and 13 in a Tj operator. I Have created a small test document with an type1 font (not embedded) using WinAnsiEncoding with Differences mapping 10 to X and 13 to Y. In a Tj command using quoted charcodes (A\rA\nA\r\n)Tj is displayed in Acrobat Reader as AYAXAYX, while the binary encoded (#$0dA#$0aA#$0d#$0a)Tj is displayed as AYAXAX. The #$0d#$0a is used as one character code in this case. My Question is for the case of an embedded font. A document using an embedded font (symbolic flag is set in font descriptor) using binary #$0d#$0a charcodes in a Tj, these charcodes are ignored. Question: would this also be true for the quoted variant \r\n, and is this behaiviour the same for symbolic and non symbolic fonts?
with best regards
Michael Hinrichs

Hello,
in my previous question was a mistake, the document with the embedded font did contain a binary #$0d#$0a quoted with a backslash \#$0d#$0a and this character is ignored. So decoding is independent of font type. So I think there are the following cases:
if #$0d, #$0a or #$0d#0a used as binary codes they are used as one single charcode #$0a which then is used as charcode for the encoding array.
if the quoted variants are used then \n is used as #$0a, \r as #$0d and \r\n as #$0d#$0a.
if binary #$0d, #$0a or #$0d#0a are quoted with a backslash they are ignored.
Is this correct?
with best regards
Michael Hinrichs

Similar Messages

  • Functions for mapping Latin-1 character codes to and from WinLatin-1  character codes

    HI ALL
    I will like to know how could i write own functions for mapping Latin-1 character codes to and from WinLatin-1
    character codes.
    Can show me some source code or how to mapping it. Because i just begineer.
    Hope you able to help me..

    I see your issue. I tried to reproduce this issue using sqlplus.
    Setup NLS_LANG as you mentioned using WE8ISO8859P1 and connect to a UTF8 db.
    [oracle@server ~]$ locale -a | grep en_US
    en_US
    en_US.iso88591
    en_US.iso885915
    en_US.utf8
    [oracle@server ~]$ export LC_ALL=en_US.iso88591
    [oracle@server ~]$ locale
    LANG=en_US.UTF-8
    LC_CTYPE="en_US.iso88591"
    LC_NUMERIC="en_US.iso88591"
    LC_TIME="en_US.iso88591"
    LC_MEASUREMENT="en_US.iso88591"
    LC_IDENTIFICATION="en_US.iso88591"
    LC_ALL=en_US.iso88591
    [oracle@server ~]$ echo $NLS_LANG
    AMERICAN_AMERICA.WE8ISO8859P1
    SQL> select value from nls_database_parameters where parameter='NLS_CHARACTERSET';
    AL32UTF8
    SQL> select nchr(223) from dual;
    NCHR
    ß
    SQL> select chr(223) from dual;
    ERROR:
    ORA-29275: partial multibyte character
    SQL> SELECT CHR (223 USING NCHAR_CS) from dual;
    C
    ß
    SQL>  select  CONVERT('ß', 'WE8ISO8859P1','UTF8') FROM DUAL;
    CO
    SQL> select  CONVERT(CHR(223 USING NCHAR_CS), 'WE8ISO8859P1','UTF8') FROM DUAL;
    select  CONVERT(CHR (223 USING NCHAR_CS), 'WE8ISO8859P1','UTF8') FROM DUAL
    ERROR at line 1:
    ORA-12703: this character set conversion is not supportedI found that beta is in WE8ISO8859P1 character set
    here[url http://docs.oracle.com/cd/E11882_01/server.112/e10729/ch2charset.htm#NLSPG164]What Characters Does a Character Set Support?
    But I don't really understand whats the problem in the conversion.

  • Company code and operating concern currency in COPA

    Dear experts,
    I have one controlling area and one operating concern for indian and foreign entitiy with INR as currency for controlling area and one operating concern.
    but outside india i have sgd as company code currency.
    So i ticked company code currency in operating concern.so while posting revenue in billing .system store in company code as well as operating concern currency.
    But all my expenses for outside india entity will store(cost center) in company code currency 'SGD' and controlling area currency 'INR'.
    while doing copa assesssment cycle- whether system will store data in copa table in SGD and INR or only INR as operating concern currency.
    i need report on operating concern currency as well as company code currency.
    regards
    Raman Rana

    Hi,
       If you have ticked 'company code ccy' in KEA0 then all COPA postings (including COPA assessments) will happen in both currencies i.e. company code ccy and operating concern ccy.
    regards
    Waman

  • Character encoding and ByteOutputStream

    Hi!
    I'm currently working on a web application that needs to print non-english characters (e g swedish � � �). Currently this doesn't work, although i have set the character encoding for the HttpServletResponse.
    I figure that it is this code that doesn't manage the non-english characters (it's not my own code but i need to fix it and, sorry to say, I'm not that experienced with streams):
    ByteArrayOutputStream baos = new ByteArrayOutputStream(16384);
    baos.write("���".getBytes());
    resp.setDateHeader("Expires", 0);
    resp.setContentLength(baos.size());
    ServletOutputStream out = resp.getOutputStream();
    out.write(baos.toByteArray());
    out.flush();
    out.close();Any hints on what to do or where to look? Should i wrap the ServletOutputSream in a Writer?
    Cheers,
    David

    But there's no character encoding set for this operation:baos.write("���".getBytes());

  • Function return value == -10. Native error code -2146824584 ADOBD.Recordset: Operation is not allowed when object is closed

    I want to call Stored Procedure that return records and output parameter, from CVI
    I can get output parrameter but when I want to get records stream I recieve following wrror:
    function return value == -10. Native error code -2146824584 ADOBD.Recordset: Operation is not allowed when object is closed

    in Stored procedure I create table variable and and insert into string values
    when I remove usage of table variable the error desappear

  • Convert char to ascii code and vice versa

    HI
    Is there any function module to convert char to ascii code and vice versa.
    Thanks in advance

    Hi,
    be careful if you have unicode running in your system. URL_ASCII_CODE_GET is platform-dependent so it will return the internal HERX representation of the character in your system - which is hopefully and in most cases ASCII.
    Under unicode, we use double-byte characters here. I tried this function and the result CHAR_CODE is '00' regardless what character I specify for TRANS_CHAR. But the coding is so simple I corrected resultig in this sample code:
    [P]
    convert p_form to ASCII (internal) representation
      DATA:
        l_ofs TYPE syfdpos,
        l_len TYPE sy-linsz,
        l_ascii TYPE i.
      FIELD-SYMBOLS:
        <x> TYPE x.
      l_len = STRLEN( p_ascii ).
      DO l_len TIMES.
        l_ofs = sy-index - 1.
        ASSIGN p_ascii+l_ofs(1) TO <x> CASTING.
        l_ascii = <x>.
        WRITE: l_ascii.
      ENDDO.
    [/P]
    Here, for each character of string p_ascii, the internal (ASCII) representation is determined and written to the output list.
    Regards,
    Clemens

  • HT2731 How do I enrol in iTunes u? It asks for a code and I don't no what that means and my iPod does this wierd thing!....

    Hey I need help in enrollment on iTunes u I already did my appleID but then it asks for a code and idk what that is. Btw I need iTunes u to catch up in school cuz some things I'm bad at and I tried diff. Things in school and it didn't work so I'm trying this out, school has just begun... It would b totally awesome if some1 could get back to me on this plz email me at [email protected]..........and I also have troubles with my iPod touch 4g, when I'm searching things on the google app my iPods screen turns black for 5 seconds then goes to the home screen and it does this every time I'm in the google app and sometimes it does this when I'm playing a game or looking on iTunes plz help me!!!! P.s I won't b on here very much so if you have an answer for me email me :) at [email protected]      :) :)

    I am using MAC OSx 10.5.8 (9L31a) as my operation system.  The TV says "No signal.  Check connected device's power, cable connection and source selection."  Seems to me that that goes in hand with what the Samsung tech said about the Mac needing to be forces to use the external display.  But how do I do that?

  • UTF/Japanese character set and my application

    Blankfellaws...
    a simple query about the internationalization of an enterprise application..
    I have a considerably large application running as 4 layers.. namely..
    1) presentation layer - I have a servlet here
    2) business layer - I have an EJB container here with EJBs
    3) messaging layer - I have either Weblogic JMS here in which case it is an
    application server or I will have MQSeries in which case it will be a
    different machine all together
    4) adapter layer - something like a connector layer with some specific or
    rather customized modules which can talk to enterprise repositories
    The Database has few messages in UTF format.. and they are Japanese
    characters
    My requirement : I need thos messages to be picked up from the database by
    the business layer and passed on to the client screen which is a web browser
    through the presentation layer.
    What are the various points to be noted to get this done?
    Where and all I need to set the character set and what should be the ideal
    character set to be used to support maximum characters?
    Are there anything specifically to be done in my application code regarding
    this?
    Are these just the matter of setting the character sets in the application
    servers / web servers / web browsers?
    Please enlighten me on these areas as am into something similar to this and
    trying to figure out what's wrong in my current application. When the data
    comes to the screen through my application, it looks corrupted. But the asme
    message when read through a simple servlet, displays them without a problem.
    Am confused!!
    Thanks in advance
    Manesh

    Hello Manesh,
    For the database I would recommend using UTF-8.
    As for the character problems, could you elaborate which version of WebLogic
    are you using and what is the nature of the problem.
    If your problem is that of displaying the characters from the db and are
    using JSP, you could try putting
    <%@ page language="java" contentType="text/html; charset=UTF-8"%> on the
    first line,
    or if a servlet .... response.setContentType("text/html; charset=UTF-8");
    Also to automatically select the correct charset by the browser, you will
    have to include
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> in the
    jsp.
    You could replace the "UTF-8" with other charsets you are using.
    I hope this helps...
    David.
    "m a n E s h" <[email protected]> wrote in message
    news:[email protected]...
    Blankfellaws...
    a simple query about the internationalization of an enterpriseapplication..
    >
    I have a considerably large application running as 4 layers.. namely..
    1) presentation layer - I have a servlet here
    2) business layer - I have an EJB container here with EJBs
    3) messaging layer - I have either Weblogic JMS here in which case it isan
    application server or I will have MQSeries in which case it will be a
    different machine all together
    4) adapter layer - something like a connector layer with some specific or
    rather customized modules which can talk to enterprise repositories
    The Database has few messages in UTF format.. and they are Japanese
    characters
    My requirement : I need thos messages to be picked up from the database by
    the business layer and passed on to the client screen which is a webbrowser
    through the presentation layer.
    What are the various points to be noted to get this done?
    Where and all I need to set the character set and what should be the ideal
    character set to be used to support maximum characters?
    Are there anything specifically to be done in my application coderegarding
    this?
    Are these just the matter of setting the character sets in the application
    servers / web servers / web browsers?
    Please enlighten me on these areas as am into something similar to thisand
    trying to figure out what's wrong in my current application. When the data
    comes to the screen through my application, it looks corrupted. But theasme
    message when read through a simple servlet, displays them without aproblem.
    Am confused!!
    Thanks in advance
    Manesh

  • Tax code and Special equipment code

    Hi All,
    Our Tax Department brought to our attention the need to include a Tax Code and a Special Equipment Code to all fixed assets. We are loading balances from last year to new company code. Where do we include this tax code and Special equipment code.
    Thank You,
    Misbah

    Hi,
    1.     When you are transferring the balances of assets which are already in use in the business to the new company code, you have to use the non-taxable transaction codes for this transaction.
    Create the tax codes in T.Code : FTXP .
    You can configure these taxes in SPRO>Financial Accounting>Asset Accounting>Integration with the General Ledger>Assign Input Tax Indicator for Non-Taxable Acquisitions.
    2.     Special equipment code for identifying these assets can be identified through the Eval group codes.
    The Eval codes can be configured in SPRO> Financial Accounting>Asset Accounting>Master Data>User Fields>Define 4-Character Evaluation Groups
    The Eval code can be assigned in the asset master. With this code you can classify the assets.
    You can use an evaluation group to:
    •     Create reports on the defined evaluation groups
    Access individual assets using a match code defined for the evaluation group
    Regards
    Prasad

  • SNP and DP T.Code and Tables

    Hi
    Can anyone send me SAP APO (SNP, DP) module transaction code and standard Tables
    Thanks & Regards,
    Ram

    Following are some transactions:
    Hope it helps:::::
    TCode Text
    /INCMD/UI Maintenance of Interchageable groups
    /SAPAPO/86000118
    /SAPAPO/AC03 Product Availability
    /SAPAPO/AC04 ATP Simulation
    /SAPAPO/AC05 Time Series
    /SAPAPO/AC06 Temporary Quantity Assignments
    /SAPAPO/AC07 Exclusive Lock Records
    /SAPAPO/AC08 Generate Safety Stock Requirement
    /SAPAPO/AC42 Display Product Allocation Situation
    /SAPAPO/ADVM Macro Workbench
    /SAPAPO/AHTS1 Start-up of Action Handler
    /SAPAPO/AMON1 Alert Monitor
    /SAPAPO/AMONMSG Settings 'Automatic Sending'
    /SAPAPO/AMONMSG_SEND Sending Alerts
    /SAPAPO/AMON_REORG Delete Database Alerts
    /SAPAPO/AMON_SETTING Alert Monitor Settings
    /SAPAPO/ATP2PPDS ATP -> PP/DS Conv. in Background
    /SAPAPO/ATPC00 Global Settings
    /SAPAPO/ATPC01 ATP Group
    /SAPAPO/ATPC02 Business Event
    /SAPAPO/ATPC03 Maintain Categories
    /SAPAPO/ATPC04_05 Maintain ATP Check Control
    /SAPAPO/ATPC06 Maintain Check Mode
    /SAPAPO/ATPC07 Maintain Check Mode
    /SAPAPO/ATPC08 Maintain Requirements Profile
    /SAPAPO/ATPCH01 Maintain ATP Characteristic View
    /SAPAPO/ATPCLOG_DEL ATP: Delete C Log Files
    /SAPAPO/ATPCQ_AREA Maintain Plng Area Assignments
    /SAPAPO/ATPCQ_CHECK Check Prod. Allocations Customizing
    /SAPAPO/ATPCQ_CUBE Maintain InfoCube Assignment
    /SAPAPO/ATPCQ_GENER Generate Objects
    /SAPAPO/ATPCQ_GRP Maintain Product Allocation Group
    /SAPAPO/ATPCQ_LST Maintain Seq. of Prod. Alloc.Proced.
    /SAPAPO/ATPCQ_OBJ Maintain Product Allocations Object
    /SAPAPO/ATPCQ_PRO Maintain Product Alloc. Procedure
    /SAPAPO/ATPCQ_RESET Reset Time Stamp
    /SAPAPO/ATPCQ_TSTMP APO: Generation Status, Transfer
    /SAPAPO/ATPLOG Activate ATP Application Log
    /SAPAPO/ATPLOG_DEL ATP: Delete Application Log
    /SAPAPO/ATPLOG_DSP ATP: Display Application Log
    /SAPAPO/ATPQ_ALERT APO: Product Allocations, Shortage
    /SAPAPO/ATPQ_CHKCHAR Check Characteristics Combinations
    /SAPAPO/ATPQ_CHKCUST Product Alloc. Assgmt, Sales Order
    /SAPAPO/ATPQ_CHKUSG Check Product Allocation Assignment
    /SAPAPO/ATPQ_COLLECT Generate Coll. Prod. Alloc. Charact.
    /SAPAPO/ATPQ_KCGRP_U Product Allocations: Update Assgmt
    /SAPAPO/ATPQ_PAREA_C Copy Characteristics Combinations
    /SAPAPO/ATPQ_PAREA_K Copy Characteristics Combination
    /SAPAPO/ATPQ_PAREA_R Product Allocations from Plan. Area
    /SAPAPO/ATPQ_PAREA_W Product Allocations in Plan. Area
    /SAPAPO/ATPTUBE_DISP Display Parameter Buffers
    /SAPAPO/ATREE_DSP ATP: Display ATP Tree Structures
    /SAPAPO/BLRG01 Generation of Reqmnts from Blocks
    /SAPAPO/BOP ATP: Batch Backorder Processing
    /SAPAPO/BOPI Backorder Processing (Interactive)
    /SAPAPO/BOP_COMPARE Backorder Processing: Comparison
    /SAPAPO/BOP_DELETE Delete Backorder Processing
    /SAPAPO/BOP_MONITOR Monitor Backorder Processing
    /SAPAPO/BOP_RESULT Backorder Processing Results
    /SAPAPO/BOP_RUNTIME Backorder Processing: Runtimes
    /SAPAPO/BOP_UPDATE Backorder Processing: Update
    /SAPAPO/BOP_VS ATP: Backorder Processing for VS
    /SAPAPO/BOP_WORKLIST ATP, BOP: Worklist
    /SAPAPO/BP1 Send Transaction Data
    /SAPAPO/BP2 Delete Transaction Data
    /SAPAPO/C3 Display Application Log
    /SAPAPO/C4 Maintenance of global parameters
    /SAPAPO/C41 Activate/Deactivate Login
    /SAPAPO/C5 Send Planning Results to OLTP
    /SAPAPO/C6 Delete Application Log
    /SAPAPO/C7 Find Entries
    /SAPAPO/CALENDAR Calendar
    /SAPAPO/CC Core Interface Cockpit
    /SAPAPO/CCR CIF_DELTAREPORT3
    /SAPAPO/CCRR CIF Compare/Reconcile Reorganization
    /SAPAPO/CDPS0 DPS Variable View
    /SAPAPO/CDPS1 DPS View 1
    /SAPAPO/CDPS2 DPS View 2
    /SAPAPO/CDPS3 DPS View 3
    /SAPAPO/CDPSB0 Production Planning Run
    /SAPAPO/CDPSB1 Prod. Planning Run in the Background
    /SAPAPO/CDPSC6 Customizing: Setup Group Maintenance
    /SAPAPO/CDPSC7 Maintenance of Setup Matrices
    /SAPAPO/CDPSS0 Simulation Version
    /SAPAPO/CDPS_REPT Evaluations
    /SAPAPO/CDPS_SETUP List Output for Setup Matrix
    /SAPAPO/CLPIPCAL Collaborative Promotion Planning
    /SAPAPO/CLPISDP Collab. Supply and Demand Planning
    /SAPAPO/CLPITPL Collaborative Transport. Planning
    /SAPAPO/CLPRPDEL CLP: Delete RFQs
    /SAPAPO/CLPRPIN Incoming RFQ Processes
    /SAPAPO/CLPRPOUT Outgoing RFQ Processes
    /SAPAPO/CLPRPSTART CLP: Publish RFQs
    /SAPAPO/CLP_PBPULL Read Time Series
    /SAPAPO/CLP_PBPUSH Send Time Series
    /SAPAPO/CLP_SETTINGS Collaboration Partners
    /SAPAPO/CMDS_DEFCNF Maintain Default Confirm. Profiles
    /SAPAPO/CMDS_DEFCNTR Maintain Default Control Profiles
    /SAPAPO/CMDS_DEL Delete Releases and Confirmations
    /SAPAPO/CMDS_SCO1 Maintain Sales Scheduling Agreements
    /SAPAPO/CMDS_SCO2 Delete Sales Scheduling Agreements
    /SAPAPO/CMDS_SCO4 Manage Fiscal Year
    /SAPAPO/CMDS_STPD Define Sold-To Party Determination
    /SAPAPO/CMDS_STPSR Define Inbound Release Processing
    /SAPAPO/COMP_VARIANT Comparison of Product Variants
    /SAPAPO/CONSCHK Model Consistency Check
    /SAPAPO/CONSPRF Model Consistency Check: Profile
    /SAPAPO/CONSSHOW Read log from database
    /SAPAPO/CPP CIF Postprocessing
    /SAPAPO/CPP1 CIF Postprocessing: Multiple Call
    /SAPAPO/CPP2 Display CIF Postprocessing Records
    /SAPAPO/CPPA CIF Error Handling: Alert
    /SAPAPO/CPPR Reorg. CIF Postprocessing Records
    /SAPAPO/CQ SCM Queue Manager
    /SAPAPO/CQINW qRFC Monitoring for Inbound Queues
    /SAPAPO/CSNP Costs Maintenance: SNP
    /SAPAPO/CSPRF Maintain TSP Profile
    /SAPAPO/CTM Capable-to-Match: Main Screen
    /SAPAPO/CTM01 CTM: Consistency Check
    /SAPAPO/CTM02 CTM: Stock Limits
    /SAPAPO/CTM10 CTM: Distribute Receipt Objects
    /SAPAPO/CTMAPLOG CTM Logs
    /SAPAPO/CTMB Execute CTM in Background
    /SAPAPO/CTMCUST CTM: Global Customizing
    /SAPAPO/CTMMSEL Selection of CTM Master Data
    /SAPAPO/CTMORDSEL CTM: Maintain Order Selection
    /SAPAPO/CTMSCPR Profile Maint. Supply Categorization
    /SAPAPO/CTMSSTRAT Define CTM Search Strategy
    /SAPAPO/CTMTP Transport CTM Profile
    /SAPAPO/CTMTSTR Define CTM Time Stream
    /SAPAPO/CTMVIEWER CTM: Call Viewer
    /SAPAPO/CTRP Costs Maintenance - Vehicle Sched.
    /SAPAPO/CULL_RTO_DEL Delete Production Data Structure
    /SAPAPO/CURTO_GEN_DP Generate DP PDS
    /SAPAPO/CURTO_SIMU Display Production Data Structures
    /SAPAPO/CW qRFC Monitoring
    /SAPAPO/DFCT Maintain Distribution Function
    /SAPAPO/DISPLAY_CONF Display of DelSched and Confirmation
    /SAPAPO/DMP1 Display Consumption Situation
    /SAPAPO/DMP2 Generate Planned Independent Reqmts
    /SAPAPO/DM_PEGCHECK Consistency Check Pegging Areas
    /SAPAPO/DPC3 Change Overview
    /SAPAPO/DPLSPLIT Deployment Stk Transfer Prioritizatn
    /SAPAPO/GEN_CHK_PDS Generate iPPE Check PDS
    /SAPAPO/GEN_PDS Generation of iPPE PDS
    /SAPAPO/INCMD_MODEL Model Assignment
    /SAPAPO/IPM01 integrated profile management
    /SAPAPO/LCOUT Release from SNP -> DP
    /SAPAPO/LOC3 Master Data: Locations
    /SAPAPO/LOCTZCALC Calculate transport zone coordinates
    /SAPAPO/LOC_CD_READ Change Documents for Location
    /SAPAPO/LOC_DEL_LOG Location: Delete Application Log
    /SAPAPO/LOC_DISP_LOG Location: Display Application Log
    /SAPAPO/MASSGEOCODE Location: Mass-Geocoding
    /SAPAPO/MAT1 Product
    /SAPAPO/MC62 Maintain Characteristic Values
    /SAPAPO/MC77 Change Selection
    /SAPAPO/MC7A Location Split
    /SAPAPO/MC7B Product Split
    /SAPAPO/MC8D Mass Processing: Create Planning
    /SAPAPO/MC8E Mass Processing: Change Planning
    /SAPAPO/MC8F Delete Planning Job
    /SAPAPO/MC8G Schedule Mass Processing
    /SAPAPO/MC8I Mass Processing: Check Planning
    /SAPAPO/MC8J Copy Mass Processing Jobs
    /SAPAPO/MC8K Logs
    /SAPAPO/MC8S Transfer Profiles
    /SAPAPO/MC8T Activity
    /SAPAPO/MC8U Transfer Profile
    /SAPAPO/MC8V Calculate Proportional Factors
    /SAPAPO/MC90 Release to Supply Network Planning
    /SAPAPO/MC96B Maintain Forecast Profile
    /SAPAPO/MCPSELDEL Delete selections
    /SAPAPO/MD74 Reorganization: Adapt Indep.Reqmts
    /SAPAPO/MNTPROF01 Maintain Display Profile
    /SAPAPO/MP31 Maintain Promotion Attribute Types
    /SAPAPO/MP32 Maintain Cannibalization Group
    /SAPAPO/MP33 Maintain Promotion Key Figures
    /SAPAPO/MP34 Supply & Demand Planner: Init.Screen
    /SAPAPO/MP40 Maintain Promotion Bases
    /SAPAPO/MP41A Maintain Settings for Report
    /SAPAPO/MP41B Promotion Reports
    /SAPAPO/MP42 Promotion Management
    /SAPAPO/MSDP_ADMIN S&DP Administration
    /SAPAPO/MSDP_FCST1 Lifecycle Settings
    /SAPAPO/MSDP_FCST2 Assign Forecast Profiles
    /SAPAPO/MSDP_SB Safety Stock Calculation
    /SAPAPO/MSP01 Maint. and Service Planning Board
    /SAPAPO/MSP_CYCMAINT Cycle Maintenance
    /SAPAPO/MSP_ESIM MSP Easy Simulation
    /SAPAPO/MSP_MOBJ Maintenance of one Maint. Object
    /SAPAPO/MSP_PERFPROF Maintenance of Performance Profile
    /SAPAPO/MTL01 Maintenance Task List
    /SAPAPO/MVM Model/Planning version
    /SAPAPO/OM03 Test Program for liveCache and LCA
    /SAPAPO/OM04 Display of Current LCA Version
    /SAPAPO/OM11 Log
    /SAPAPO/OM12 Delete Log
    /SAPAPO/OM13 Analyze liveCache and LCA Objects
    /SAPAPO/OM16 Data Viewer
    /SAPAPO/OM17 Data Reconciliation
    /SAPAPO/OM25 Daily Reorganization of APO
    /SAPAPO/OO_PPM_CONV Maint. Mode Comb. for PPM Conversion
    /SAPAPO/OPT03 Optimizer User Display
    /SAPAPO/OPT09 Optimization Version Display
    /SAPAPO/OPT11 Log display
    /SAPAPO/OPT12 Opt. server process overview
    /SAPAPO/OPT_PRIOPROF SNP Opt.: Priority Profile
    /SAPAPO/OPT_STOP Terminate Optimization Runs
    /SAPAPO/PCMT Production Campaign
    /SAPAPO/PDSLOG Log of PDS Generation
    /SAPAPO/PEG1 Pegging Overview
    /SAPAPO/PMON Plan Monitor
    /SAPAPO/PMONDEF Definition: Key figure schema
    /SAPAPO/POM1 Planned Order Management
    /SAPAPO/POV1 Product Overview Transaction
    /SAPAPO/PPC1 Backflush Entry
    /SAPAPO/PPC2 Display Backflush
    /SAPAPO/PPE iPPE Workbench Professional
    /SAPAPO/PPELUI iPPE Workbench Express
    /SAPAPO/PPFSCO Output of Confirmations
    /SAPAPO/PPL1 Production List
    /SAPAPO/PPM_CONV Conversion of PP/DS PPMs to SNP PPMs
    /SAPAPO/PPM_CONV_310 Report for Generating SNP PPMs
    /SAPAPO/PPM_CONV_LOG Log of SNP-PPM generation
    /SAPAPO/PPM_DEL Mass Deletion of Plans and PPMs
    /SAPAPO/PPT1 Product Planning Table
    /SAPAPO/PROD_CD_READ Change Documents for Produkt
    /SAPAPO/PSTRUCONS Plng Obj. Struct. Consistency Check
    /SAPAPO/PWBSCH1 Create SA Release(s)
    /SAPAPO/PWBSCH2 Release Output
    /SAPAPO/PWBSCH3 Process Sched. Agreement Releases
    /SAPAPO/PWBSCH4 Enter Confirmation
    /SAPAPO/PWBSRC1 Ext. Procure. Rltnshps Maintenance
    /SAPAPO/PWBSRC2 Delete External Proc. Relationships
    /SAPAPO/RBA04 Integrated Rule Maintenance
    /SAPAPO/RBAC01 Maintain Rule Strategy Determination
    /SAPAPO/RELHSHOW Hierarchy Maintenance
    /SAPAPO/REL_TO_OLTP Direct Release InfoProvider to R/3
    /SAPAPO/REL_TO_SNP Direct Release InfoProvider to SNP
    /SAPAPO/REORG_WUL Reorg. of Where-Used-Lists in LC
    /SAPAPO/RES01 Change Resources
    /SAPAPO/RET2 Restrictions Maint.- Create & Change
    /SAPAPO/RET_EVAL Restriction Evaluation
    /SAPAPO/RET_RP Restrictions & Reservation Planning
    /SAPAPO/RLCDEL Delete Orders from Livecache
    /SAPAPO/RLGCOPY Realignment
    /SAPAPO/RRP1 Requirements View
    /SAPAPO/RRP2 Process Order
    /SAPAPO/RRP3 Product View
    /SAPAPO/RRP4 Receipts view
    /SAPAPO/RRP7 Mass Conversion of Orders
    /SAPAPO/RRP8 ATP Check for REM Planned Orders
    /SAPAPO/RRPEVAL Log for Last Planning Run
    /SAPAPO/RRPLOG1 Display Logs
    /SAPAPO/RRPLOG2 Delete Logs
    /SAPAPO/RRP_ATP2PPDS ATP Tree Structure Conversion
    /SAPAPO/RRP_NETCH Planning File Entries
    /SAPAPO/RRP_SNP2PPDS Conversion SNP -> PP/DS
    /SAPAPO/RSP_CONSIS Cons. Check RSC + Per.-Slot Creation
    /SAPAPO/RSP_DBORSHOW Display Configuration for Orders
    /SAPAPO/RSP_DCR Releasing Daily Packages
    /SAPAPO/RSP_DICP Daily Package Creation
    /SAPAPO/RSP_D_DEL Delete Delta Records
    /SAPAPO/RSP_EXPLAIN Explanation Facility
    /SAPAPO/RSP_G1 Planning Table
    /SAPAPO/RSP_INFO Information Center RP
    /SAPAPO/RSP_LC01 Initialize Time Series
    /SAPAPO/RSP_LC03 Update Time Series
    /SAPAPO/RSP_LC04 Restore Time Series
    /SAPAPO/RSP_MCSC Manuf.Compl. Proposed Orders f.Stock
    /SAPAPO/RSP_P1 Copy Orders
    /SAPAPO/RSP_P2 Start Medium-Term Planning
    /SAPAPO/RSP_P3 Reset Result of Medium-term Planning
    /SAPAPO/RSP_RD_SIMU Simulation of Restriction Explosion
    /SAPAPO/RSP_RSC Rescheduling
    /SAPAPO/RTO_ORD_COMP Compare PP/DS PDS (R/3)
    /SAPAPO/SCC02 Supply Chain Cockpit
    /SAPAPO/SCC03 PPM Maintenance
    /SAPAPO/SCC07 Supply Chain Engineer
    /SAPAPO/SCC_TL1 Transportation Lanes
    /SAPAPO/SCC_TL2 Mass Creation of Transport Rltnships
    /SAPAPO/SCC_TQ1 Quota Arrangements
    /SAPAPO/SCC_USR_PROF SCC Cockpit User Settings
    /SAPAPO/SCE_USR_PROF SCC Engineer User Settings
    /SAPAPO/SCHED_TEST Simul. Transp. & Shipment Scheduling
    /SAPAPO/SDP8B Define Planning Book
    /SAPAPO/SDP94 Supply & Demand Planner: Init.Screen
    /SAPAPO/SDPALPR Assign Planners to Alert Profiles
    /SAPAPO/SDPPLBK Assign User to Planning Book
    /SAPAPO/SDPT SD Sched. Agrmt. Prod.Planning Table
    /SAPAPO/SDPUSET SDP User Settings
    /SAPAPO/SDRQCR21 Correction Report /sapapo/sdrqcr21
    /SAPAPO/SEQ1 Interactive Sequencing
    /SAPAPO/SEQ2 Model Mix Planning Run
    /SAPAPO/SNP01 SNP Run
    /SAPAPO/SNP02 Deployment
    /SAPAPO/SNP03 Call Deployment Optimizer
    /SAPAPO/SNP04 Transport Load Builder
    /SAPAPO/SNP05 Capacity leveling
    /SAPAPO/SNP06 Hierarchical Planning Disaggregation
    /SAPAPO/SNP103 Maintain TLB Profile
    /SAPAPO/SNP113 SNP: Maintain Costs
    /SAPAPO/SNP2PPDS SNP -> PP/DS Conv. in Background/SAPAPO/SNP94          SNP: Interactive Planning
    /SAPAPO/SNPAPLOG          Application Logs
    /SAPAPO/SNPDRP          DRP: Interactive Planning
    /SAPAPO/SNPFCST          Release SNP Forecast
    /SAPAPO/SNPLLC          Low-Level Code Determination
    /SAPAPO/SNPOP          Call Up SNP Optimizer
    /SAPAPO/SNPOPLOG          SNP Optimizer Log Data
    /SAPAPO/SNPSA          Sched. Agreemt: Interactive Planning
    /SAPAPO/SNPSOP          SOP: Interactive Planning
    /SAPAPO/SNPSRC          Call: Sourcing of Forecast in SNP
    /SAPAPO/SNPTLB          TLB: Interactive Planning
    /SAPAPO/SNPVMI          SNP: Interactive Planning with VMI
    /SAPAPO/SUPCAT          CTM Supply Category Maintenance
    /SAPAPO/TI01          Evaluation of Production Tracking
    /SAPAPO/TLBPRF          TLB Profile Maintenance
    /SAPAPO/TR30          Maintain DP/SNP Time Buckets Profile
    /SAPAPO/TR32          Periodicities for Planning Area
    /SAPAPO/TR_CD_QUOTA          Change Docs for Quota Arrangements
    /SAPAPO/TR_CD_TLANE          Change Docs for Transportation Lanes
    /SAPAPO/TR_DELTRPR          Deletion of Prod.-Spec. Trnsp. Lane
    /SAPAPO/TR_IGS_BPSEL          Scheduling of GIS Preselection
    /SAPAPO/TR_IGS_BUTRM          Update of GIS Data
    /SAPAPO/TR_IGS_RPSEL          Reorganization of GIS Preselection
    /SAPAPO/TSCONS          Time Ser. Network Consistency Check
    /SAPAPO/TSCOPY          Copy/Version Management
    /SAPAPO/TSCUBE          Load Planning Area Version
    /SAPAPO/TSKEYFMAIN          Mass Maint. for Time Series Key Fig.
    /SAPAPO/TSLCREORG          Check LC Time Series Master Data
    /SAPAPO/TSPSTRU          Toolbox for Planning Object Struct.
    /SAPAPO/TTC1          Schedule Maintenance
    /SAPAPO/TTV1          Maintain Validity Area
    /SAPAPO/TTW1          Itinerary Maintenance
    /SAPAPO/VERCOP          Copy Version
    /SAPAPO/VERDELLD          Delete a planning version
    /SAPAPO/VERMER          Merge Planning Versions (SNP)
    /SAPAPO/VERMRM          Merge Versions: Messages
    /SAPAPO/VS01          VS Interactive Planning
    /SAPAPO/VS05          Schedule optimization run
    /SAPAPO/VS10          Transportation Service Provider Sel.
    /SAPAPO/VS11          TPVS: Define Delivery/Pickup Windows
    /SAPAPO/VS12          TP/VS: Define Compatibilities
    /SAPAPO/VS50          Orders for Delivery Generation
    /SAPAPO/VS501          Schedule Delivery Generation
    /SAPAPO/VS51          Change Plan. Shipments to Shipments
    /SAPAPO/VS511          Transfer Planned Shipments to OLTP
    /SAPAPO/VS52          Check Release of Planned Shipments
    /SAPAPO/VS521          Check Release of Planned Shipments
    /SAPAPO/VS53          Deleting deliveries
    /SAPAPO/VS531          Delete Deliveries
    /SAPAPO/VS54          Deleting Shipments
    /SAPAPO/VS541          Delete Shipments
    /SAPAPO/VS551          Release Shipments in the Background
    /SAPAPO/VS60          Monitor for OLTP Publication
    /SAPAPO/VS70          Apply Split Rules
    /SAPAPO/VS71          Determine Split Rules
    /SAPAPO/VS72          Maintain Access Sequence for Splits
    /SAPAPO/VS73          Maintain Split Rules
    /SAPAPO/VSHIST          Display the Change History
    /SAPCND/AO01          Conditions: V_T681F for O RB
    /SAPCND/AO03          Create condition table
    /SAPCND/AO04          Change condition table
    /SAPCND/AO05          Display condition table
    /SAPCND/AO06          Condition Type: Rules-Based ATP
    /SAPCND/AO07          Access: Maintain (Rules-Based ATP)
    /SAPCND/AO08          Conditions: Procedure for O RB
    /SAPCND/AO11          Create Rule Determination
    /SAPCND/AO12          Change Rule Determination
    /SAPCND/AO13          Display Rule Determination
    /SAPCND/AO14          Copy Rule Determination
    /SAPCND/AU11          Create Scheduling Step
    /SAPCND/AU12          Change Scheduling Step
    /SAPCND/AU13          Display Scheduling Step
    /SAPCND/AU14          Copy Scheduling Step
    /SCMB/ODM_CHECK          ODM: Check Customizing
    /SCMB/ODM_DATA_CHECK          ODM: Check Data Consistency
    AHTGL01          Action and Parameter Maintenance
    AHTGL02          Definition of Action Points
    BAPI          BAPI Explorer
    CL02          Classes
    CL20N          Object Assignments
    CL22N          Assign Class to Superior Classes
    CL24N          Class Assignments
    CT04          Characteristics
    LC10          liveCache Assistant
    LSMW          Legacy System Migration Workbench
    MASSD          Mass Maintenance
    MDEM          Orders with Explosion Errors
    MDMD          Matrix for Product/Location
    MDRPM          Control Data for RPM Products
    OPPE13          User Assgmt: iPPE WB Professional
    OPPELUI02          User Assignment: iPPE WB Express
    PPECHK          iPPE Consistency Check (Prod. Vers.)
    PPEHDR01          Create a Production Version
    PPEHDR02          Change a Production Version
    PPEHDR03          Display a Production Version
    RPMBAL          Line Balancing for Demand Program
    RPMCALL          Explosion for RPM
    RPMEVAL          Evaluations
    RPMLOG          RPM Log
    RPMPERF          Display Performance Data
    RPMPLF          Planning Flags for Planning Matrices
    RPM_DATEVECTORS_REOR          Reorganize Table of Periods in LC
    RPM_DATEVECTOR_COMPU          Calculate Table of Periods f. Res.
    RPM_OM_DATEVECTOR_SH          Display Table of Periods from LC
    RPM_RESOURCE_TSTREAM          Display Resource Time Stream
    RSKC          Maintaining the Permittd Extra Chars
    RSPC          Process Chain Maintenance
    RSSM          Authorizations for Reporting
    RZ20          CCMS Monitoring
    SLG2          Application Log: Delete logs
    SM37          Overview of job selection
    SMQ1          qRFC Monitor (Outbound Queue)
    SMQ2          qRFC Monitor (Inbound Queue)
    S_AP5_28000002          
    S_AP8_94000074          
    S_AP8_94000284          
    S_AP9_75000079          IMG Activity: APO_PPS_CDPSC0
    S_AP9_75000085          IMG Activity: APO_PPS_CDPSC8
    S_AP9_75000086          IMG Activity: APO_PPS_CDPSC5
    S_AP9_75000087          IMG Activity: APO_PPS_CDPSC4
    S_AP9_75000088          IMG Activity: APO_PPS_CDPSC3
    S_AP9_75000089          IMG Activity: APO_PPS_CDPSC2
    S_AP9_75000090          IMG Activity: APO_PPS_CDPSC1
    S_AP9_75000095          IMG Activity: APO_SNP_SNP112
    S_AP9_75000101          IMG Activity: APO_SNP_SNP107
    S_AP9_75000102          IMG Activity: APO_SNP_SNP105
    S_AP9_75000130          IMG Activity: APO_ALLG_TRANS
    S_AP9_75000138          IMG Activity: APO_ALLG_CAL
    S_AP9_75000141          IMG Activity: APO_PPS_ROUNDPRF
    S_AP9_75000142          IMG Activity: APO_DEMPL_BEDARF
    S_AP9_75000146          IMG Activity: APO_DEMPL_WORK
    S_AP9_75000169          Call the IMG Activity
    S_AP9_75000183          
    S_AP9_75000184          
    S_AP9_75000202          
    S_AP9_75000203          
    S_AP9_75000206          
    S_AP9_75000212          
    S_AP9_75000249          
    S_AP9_86000053          
    S_AP9_86000062          IMG Activity: APO_SNP_SNP120
    S_AP9_86000161          
    S_APO_12000024          
    S_APO_12000025          
    S_APO_12000026          
    S_APO_12000035          
    WUF          Where-Used List
    Tables:
    Tables where SALES ORDER Data is stored in APO
    In addition to the requirements in SAP liveCache, the SD order tables are also included in the comparison with SAP R/3. Data is stored in these tables that is required for SAP APO functions from the area of Global ATP, such as the check against product allocations and backorder processing.
    Both the existence and the consistency of the stored data is checked, based on the most important fields, as well as on the connection between main item(s) and subitem(s) in the following tables:
    ·     /sapapo/posmapn (mapping the item)
    ·     /sapapo/ordadm_h (order header)
    ·     /sapapo/ordadm_i (order item)
    ·     /sapapo/schedlin (order schedule line)
    ·     /sapapo/obref (object reference)
    ·     /sapapo/sdfield (SD order/delivery: Item additional data, also called 'field catalog')
    ·     /sapapo/ciflooku (CIF lookup table)
    The following inconsistencies can arise:
    ·     r3obj : R/3 object of item in table /sapapo/posmapn
    ·     atpcat: ATP category of item in table /sapapo/ordadm_i
    ·     chmod: Check mode of item in table /sapapo/ordadm_i
    ·     pstyv: Item category of item in table /sapapo/ordadm_i
    ·     from_time: Schedule line date in table /sapapo/schedlin
    ·     to_time: Schedule line date in table /sapapo/schedlin
    ·     uepos: Assignment of higher-level (main) item
    (Mapping in table /sapapo/posmapn and entry table in /sapapo/sdfield)
    ·     wmeng: Requested quantity in table /sapapo/schedlin
    ·     edatu: Requested delivery date in table /sapapo/schedlin
    ·     obref: Object reference between order and delivery item in table /sapapo/obref
    ·     matnr (MainItem)/matnrMItem: Product of main item in table /sapapo/ordadm_i
    ·     werks (MainItem)/werksMItem: Plant of main item in table /sapapo/ordadm_i
    ·     lgort (MainItem)/lgortMItem: Storage location of main item in table /sapapo/ordadm_i
    ·     Account assignment (MainItem)/accMItem: The account assignment of the main item, that is, the pegging area from table /sapapo/ordadm_i does not correspond to the account assignment in SAP R/3 (vbap-sobkz, vbap-vbeln and vbap-posnr)
    Important Tables in R/3
    Table     Remarks
    QTVB     Product Allocation: Allocation used by Customer Order* Use this table to find allocation assignment by Sales Order
    Important Tables in APO
    Table     Remarks
    /SAPAPO/TBQTVB     ATP: Parameter Buffer, Product Allocation Assignment
    /SAPAPO/PAGZE001     PAG-Z001 Product Allocations: Characteristic Value* This table is generated when a Product Allocation Group is defined. Use it to convert the GUID into a CVC.
    /SAPAPO/MATKEY     Product Master* Use it to convert Material GUID into a material number.
    /SAPAPO/MATLOC     Location product Master* Use it to see valid material plant combinations (GUID’s) in APO.
    /SAPAPO/MATMAP     Mapping Table for Products* Use it to see mapping of material numbers in R/3, APO and GUID
    /SAPAPO/LOC     Locations* Use it to convert Location GUID into a Location number.
    /SAPAPO/QTTAB     Product Allocations: Schedule Line
    /SAPAPO/SDQTVB     SD Order: Product Allocation Assignment* Use it to see detailed allocation assignment by Sales Order
    /SAPAPO/POSMAPN     Order Items Mapping Table*Use to get GUID for Sales Orders
    /sapapo/treqires- All the confirmed qty and confirmed timestamp for order transaction GUID
    CDHDR, CDPOS- Broader- All changes
    /sapapo/DMCP
    R-Delete
    N-Create
    C-Change

  • Maxi code and Barcode - WMS shipping labels

    Hi All,
    As a part of creating shipping label process we create XML files which stores the data to be printed.
    We just use loftware to print the labels directly to the Zebra printers
    Requirement: To send a copy of the label to the user instead of printing
    Question: i know barcodes can be printed using rdfs
    but
    1. can i print maxi codes on to pdf using RDFs
    2. can i use any other utility in Oracle apps that would help me in creating a pdf with maxi code and bardcode?
    Would appreciate any help in this context
    Thanks

    Hi;
    Subject: How to Configure Web Report Using Barcode Font on UNIX without Barcode Font Doc ID: 118671.1
    Subject: ORACLE*REPORTS CHARACTER MODE AND PRT FILES Doc ID: 61407.1
    Subject: Troubleshooting Printer Format Problems for Release 10 Doc ID: 1011985.6
    Please follow below link and see its helpfull
    Regards
    Helios

  • Any way around the 393 character code limit?

    Hi,
    I'm using BI Publisher with Siebel 8.1.1.1.
    I'm using the following to count the number of severity 1 Service Requests entered during the month of January:
    <?count(ssServiceRequest[ssSeverity[.='1-Critical'] and xdoxslt:date_diff('d', xdoxslt:format_date(ssCreated,'yyyy-mm-dd','mm/dd/yyyy',$_XDOLOCALE,$_XDOTIMEZONE), '2011-01-31', $_XDOLOCALE, $_XDOTIMEZONE) <=30 and xdoxslt:date_diff('d', xdoxslt:format_date(ssCreated,'yyyy-mm-dd','mm/dd/yyyy',$_XDOLOCALE,$_XDOTIMEZONE), '2011-01-01', $_XDOLOCALE, $_XDOTIMEZONE) >=-30])?>
    I now want to add another search criteria but it blows the 393 character code limit:
    <?count(ssServiceRequest[ssSeverity[.='1-Critical'] and ssTrProductName[.!='WS-MService'] and xdoxslt:date_diff('d', xdoxslt:format_date(ssCreated,'yyyy-mm-dd','mm/dd/yyyy',$_XDOLOCALE,$_XDOTIMEZONE), '2011-01-31', $_XDOLOCALE, $_XDOTIMEZONE) <=30 and xdoxslt:date_diff('d', xdoxslt:format_date(ssCreated,'yyyy-mm-dd','mm/dd/yyyy',$_XDOLOCALE,$_XDOTIMEZONE), '2011-01-01', $_XDOLOCALE, $_XDOTIMEZONE) >=-30])?>
    I have tried using an if statement to filter on the product name, but it is not working.
    Any tips will be appreciated!
    many thanks,
    Claire

    Try to insert a separate form field in your template where you should declare a variable and assign it the value of - xdoxslt:format_date(ssCreated,'yyyy-mm-dd','mm/dd/yyyy',$_XDOLOCALE,$_XDOTIMEZONE. Then call this variable in your existing form field.
    This should reduce the code.
    -Jeet

  • I lost my disk for cs5 creative suite 5.5 design premium but I have product code and a new computer I want to reinstall. What can I do?

    I lost my disk for cs5 creative suite 5.5 design premium but I have product code and a new computer I want to reinstall. What can I do?

    You can download the software from the website and then type in your old serial number to activate it... that is, IF the installer database will work with your operating system. I am having problems reinstalling CS4 with a new computer running on Win 8.1. When I called customer support, they told me a whole lot of nothing for 45 minutes and then directed me to a chat session. After about 30 minutes on chat, I was basically told they don't offer support for older products. The website says "no known issues" for installation... but that very well may be because they are unwilling to record the issues when someone calls to report them! Good luck with your install. I wish I had CS5 at this point, as it appears there is still support available for it... but you are on the bubble timewise for that to continue. Other downloads

  • 8 is rejecting my key code.  Support indicates it is a valid code and I need to reinstall.  I did and it is still rejecting.  What should I do next.

    Thank you for considering my question.  That is very generous.
    8 is rejecting my key code.  Support indicates it is a valid code and I need to re install.  I did and it is still rejecting.  What should I do next.

    Acrobat 8 ?
    Standard (sn:1016...) or Pro (sn:1118...) ?
    Do you install from CD/DVD or download?
    If it's a download, what's the size of the install file and where did you download it?
    Is it a full version or an upgrade?
    What's the operation System (Win, Mac) ?

  • [svn] 3466: Refactored TransformOffset to reduce code and confusion.

    Revision: 3466
    Author: [email protected]
    Date: 2008-10-02 21:13:46 -0700 (Thu, 02 Oct 2008)
    Log Message:
    Refactored TransformOffset to reduce code and confusion.
    UIComponent and GraphicElement now aggregate an AdvancedLayoutFeatures object, which is responsible for computing the
    actual transform based on the layout properties and a CompoundTransform object passed in as a set of offset values.
    Re-enabled updateComplete events when component transform is modified, for mustella tests.
    Review: Glenn, Evtim.
    Modified Paths:
    flex/sdk/trunk/frameworks/halo-manifest.xml
    flex/sdk/trunk/frameworks/mxml-2009-manifest.xml
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/graphics/Path.as
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/graphics/graphicsClasses/GraphicElement .as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
    flex/sdk/trunk/tools/dependencychecker/frameworkSwcExceptionsList.txt
    Added Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/AdvancedLayoutFeatures.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/geom/CompoundTransform.as
    Removed Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/TransformOffset.as

    As far as creating this code goes, look up the % operator - it returns remainder. You could use it to find whether or not each number was a factor (for example, take all the numbers <= half of the given number - 24 - and perform a loop that uses the % operator to find if the remainder is 0, which would mean that the numbers were a factor), then use the sqrt method on applicable factors to determine if any of them are perfect squares.
    If you were wondering about the term referring to the creation of these factored numbers, I normally hear the process referred to as "factoring radicals" or "simplifying radicals."

Maybe you are looking for