CUF and custom positions on the template

Hi,
I added two customer fields on the template of shopping Cart (thanks to all of you).
Now I would like to change the position of them, let's say after the field "Category" (at item level).
I implemented BBP_CUF_BADI_2 but I don't see where I can change the attribute position.
Any suggestion ?
Regards.
Nico

Hello Nico,
changes regarding the display of the customer fields can be done by modifying the service BBPCUF, template SAPLBBP_PDH_CUF 300.
Regards,
Armin

Similar Messages

  • Restrict table position in the template

    I have a table located in the middle of 2 sections of data (1 on the top and another at bottom)
    Is there a way to restrict table in a particular position in the template? I mean, no matter what the data is above it, the table should always be in the same position in the template.
    Any help would be highly appreciated...
    Thanks..

    his question has been answered already multiple times - please search the forum before posting a question - in case you did and you didn't find it - we added a feature
    in 5.6.2 to solve this problem - It is described in the user guide in the RTF template section search for start@last-page:
    Last Page Support
    XML Publisher now has the ability to show content only on the last page. This is useful for documents such as checks, invoices or purchase orders where you want want content such as the check or a summary in a specific place only on the last page.
    The basic command is:
    <?start@last-page:body?>
    <?end body?>
    http://forums.oracle.com/forums/search.jspa?threadID=&q=%40last-page&objID=f245&dateRange=last90days&userID=&numResults=15&rankBy=9
    Any content above or below these two tags will only appear on the last page of the document.
    Hope that helps,
    Klaus

  • Fixing table position on the template and printing on the last page

    Hi,
    I have a requirement where i need to print a table at a fixed position and at the last page.
    if there is a single page, then the said table should print at the bottom of the page ... if there are multiple line records, the records should print on the first page and second page till it completes ... and the table at the bottom ..
    even if there is a single line record, the table should be at a fixed position.
    how can this functionality be acheived ...

    clarify one question pls....
    For eg if there is only one record then the table should be in the bottom of the first page or in the fixed position in the second page.... b'cos as you told about multiple lines of records then it obviously comes in the bottom of the end page and will not be inthe fixed position...... right!!!
    Thanks
    PBV

  • In Address Book, why does Apple let you create custom fields in the Template cards but not have them available for importing?

    I open Address Book, go into Preferences, select Template and under the Names field (friend, assistant, father, etc) I add a custom field called "Principal".
    I also add two more custom fields in the Email area.
    Quit Address Book then relaunch. Add a new contact and the new custom fields, Principal, etc. are there. All good so far.
    I have a Now Contact file with about 200 contacts in it. I export all fields as a Text file, Tab delimited. No problems there. With Address Book launched, select Import, pick the text file, leave Text Encoding on Automatic and click Open.
    The window that shows the fields for Address Book and fields for the text file side by side opens. This is where you match up the correct fields for importing. If I go to one of the fields from the text file that I created a custom field for, click under the Address Book heading on the Do not import, scroll thru the Apple choices of fields, none of the custom fields show up. Only the original Apple ones are there. Why does Apple let you create them in the Template area but not have them available for importing? Does anyone have suggestions on getting around this?

    While most likely not of interest to you, Spotlight can also tell you where the files it finds are located
    Hover the mouse pointer over the name, and press Command-Option and the path to the file will be displayed.
    As for opening a terminal session in the directory where a file is located, there is Applescripts that do just that as well as specific features in Lion/Mountain Lion terminal:
    <http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder>
    <http://hints.macworld.com/article.php?story=20110729034827358>
    <http://www.macworld.com/article/1047793/folderinterm.html>
    <http://www.macworld.com/article/1161876/open_finder_folder_in_terminal.html>
    <http://www.macobserver.com/tmo/article/os_x_lion_open_a_folders_location_in_term inal>

  • How to display current postion and previous position in the same row?

    I need to produce a promotions/transfer report that gives the employee's current position as well as his/her previous position in the same row.
    for example:
    Employee current position current organization current company previous postion previous organization previous company
    Jane Smith Executive PA ZYX ltd Harmony personal assistant ABC ltd Yahoo
    I am using the per_all_people_f, per_all_assignments_f, per_periods_of_service, hr.all_organization_units, per_all_positions tables
    Somehow i cannot manage to display the previous position. I can only get so far to display the current postions
    Any ideas? here is the full code
    --this query gives current info
    select ppf.employee_number, ppf.full_name
    , (DECODE (ppf.sex, 'M', 'Male', 'F', 'Female') ) gender
    , (DECODE (ppf.per_information4
    ,'01', 'Indian'
    ,'02', 'African'
    ,'03', 'Coloured'
    ,'04', 'White') ) race
    , ppf.ORIGINAL_DATE_OF_HIRE
    , paf.EFFECTIVE_START_DATE current_postion_start_date
    , RTRIM (SUBSTR (hpt.NAME, 1, INSTR (hpt.NAME, ';') ),';')Current_Position
    , ho.name Current_Organization
    , xx_return_structures.xx_return_company_name
    (paf.person_id,
    paf.effective_start_date
    ) current_company
    from per_all_assignments_f paf,
    hr_all_positions_f_tl hpt,
    hr_all_organization_units_tl ho,
    per_all_people_f ppf
    --where paf.person_id = 16170
    and paf.POSITION_ID=hpt.POSITION_ID
    and paf.ASSIGNMENT_NUMBER is not null
    and ho.organization_id = paf.organization_id
    and ppf.person_id=paf.person_id
    and paf.EFFECTIVE_START_DATE between ppf.EFFECTIVE_START_DATE and ppf.EFFECTIVE_END_DATE
    order by paf.EFFECTIVE_START_DATE
    --this query gives previous position, organization and company
    select ass.EFFECTIVE_START_DATE
    , RTRIM (SUBSTR (hpt.NAME, 1, INSTR (hpt.NAME, ';') ),';')Previous_Position
    , ho.NAME previous_organization
    , xx_return_structures.xx_return_company_name
    (paf.person_id,
    paf.effective_start_date
    ) previous_company
    from per_all_assignments_f paf, hr_all_positions_f_tl hpt, hr_all_organization_units_tl ho
    where paf.person_id = 16170
    and paf.EFFECTIVE_START_DATE not in (select max(paf.EFFECTIVE_START_DATE)
    f rom per_all_assignments_f paf
    where ass.person_id = 16170)
    and paf.PRIMARY_FLAG ='Y'
    and paf.POSITION_ID=hpt.POSITION_ID
    and paf.ORGANIZATION_ID=ho.ORGANIZATION_ID

    Ok so here is my problem. The current position display 3 times. The rest is correct. it only display once. Any ideas on how to get rid of the 2 extra rows that is being displayed with the current position?? I only need the current position to display once with the previous position info.
    select distinct pvs.person_id,
    peo.EMPLOYEE_NUMBER empno,
    peo.FULL_NAME,
    (DECODE (peo.sex, 'M', 'Male', 'F', 'Female') ) gender,
    (DECODE (peo.per_information4
    ,'01', 'Indian'
    ,'02', 'African'
    ,'03', 'Coloured'
    ,'04', 'White') ) race,
    peo.ORIGINAL_DATE_OF_HIRE,
    pvs.EFFECTIVE_START_DATE curr_start_date,
    RTRIM (SUBSTR (pvs.job, 1, INSTR (pvs.job, ';') ) ,';') current_position,
    pvs.ORGANIZATION current_organization,
    substr(pvs.PAYROLL,5)current_company,
    a1.previous_position,
    a1.previous_organisation,
    a1.previous_company
    from per_periods_of_work_v pv,
    per_assignments_v2 pvs,
    per_all_people_f peo,(select distinct RTRIM (SUBSTR (pvs.job, 1, INSTR (pvs.job, ';') ) ,';') previous_position,
    pvs.ORGANIZATION previous_organisation,
    substr(pvs.PAYROLL,5)previous_company,
    pvs.job_id job_id,
    pvs.organization_id,
    pvs.position_id,
    pvs.location_id,
    pvs.PERSON_ID,
    pvs.PEOPLE_GROUP_ID,
    pvs.EFFECTIVE_END_DATE,
    pvs.EFFECTIVE_START_DATE
    from per_assignments_v2 pvs
    where sysdate > pvs.EFFECTIVE_END_DATE
    and pvs.person_id=4723
    )a1
    where peo.person_id = pvs.person_id
    and pvs.person_id = pv.person_id
    and a1.person_id = pvs.person_id
    and pvs.EFFECTIVE_START_DATE between peo.EFFECTIVE_START_DATE and peo.EFFECTIVE_END_DATE
    and pvs.PEOPLE_GROUP_ID <> a1.people_group_id
    and pvs.JOB_ID <> a1.job_id
    and pvs.ORGANIZATION_ID <> a1.organization_id
    and pvs.position_id <> a1.position_id                     activating this elimnates 1-Feb-2008 info
    and pvs.effective_start_date -1 = a1.effective_end_date     activating this eliminates 1-feb-2008, 1-jul-2006, 1-april-1996 info
    and pv.person_id = 4723
    order by pvs.effective_start_date desc

  • Is it possible to print JTable and custom JPanel on the same page?

    Hello everybody!
    I have a custom panel extending JPanel and implementing Printable.
    I am using paint() method to draw some graphics on it's content pane. I would like to print it, but first I would like to add a JTable at the bottom of my panel. Printing just the panel goes well. No problems with that.
    I was also able to add a JTable to the bottom of JFrame, which contains my panel.
    But how can I print those two components on one page?

    Hi, thanks for your answer, but I thought about that earlier and that doesn't work as well... or mybe I'm doing something wrong. Here is the sample code:
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.print.PageFormat;
    import java.awt.print.Printable;
    import java.awt.print.PrinterException;
    import java.awt.print.PrinterJob;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    public class ReportFrame extends JFrame implements Printable {
         private static final long serialVersionUID = -8291124097290245799L;
         private MyPanel rp;
         private JTable reportTable;
         private HashPrintRequestAttributeSet attributes;
         public ReportFrame() {
              rp = new MyPanel();
              String[] columnNames = { "Column1", "Column2", "Column3" };
              String[][] values = { { "Value1", "Value2", "Value3" }, { "Value4", "Value5", "Value6" }, { "Value7", "Value8", "Value9" } };
              reportTable = new JTable(values, columnNames);
              add(rp, BorderLayout.CENTER);
              add(reportTable, BorderLayout.SOUTH);
              setTitle("Printing example");
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setPreferredSize(new Dimension(700, 700));
              pack();
              setVisible(true);
         @Override
         public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
              if (pageIndex >= 1)
                   return Printable.NO_SUCH_PAGE;
              Graphics2D g2D = (Graphics2D) graphics;
              g2D.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
              return Printable.PAGE_EXISTS;
         public static void main(String[] args) {
              new ReportFrame().printer();
         class MyPanel extends JPanel implements Printable {
              private static final long serialVersionUID = -2214177603101440610L;
              @Override
              public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
                   if (pageIndex >= 1)
                        return Printable.NO_SUCH_PAGE;
                   Graphics2D g2D = (Graphics2D) graphics;
                   g2D.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
                   return Printable.PAGE_EXISTS;
              @Override
              public void paint(Graphics g) {
                   super.paintComponent(g);
                   Graphics2D g2D = (Graphics2D) g;
                   int x = 0, y = 0, width = 70, height = 70;
                   for (int i = 0; i < 50; i++) {
                        g2D.drawOval(x + i * 10, y + i * 10, width, height);
         public void printer() {
              try {
                   attributes = new HashPrintRequestAttributeSet();
                   PrinterJob job = PrinterJob.getPrinterJob();
                   job.setPrintable(this);
                   if (job.printDialog(attributes))
                        job.print(attributes);
              } catch (PrinterException e) {
                   JOptionPane.showMessageDialog(this, e);
    }UPDATE:
    I've managed to get this to work, by calling 2 methods inside the outer frame's print method (lines 78 and 79)
    Those two methods are:
    rp.paint(g2D);
    reportTable.paint(g2D);but still it is not the way I would like it to be.
    First of all both the ReportPanel and ReportTable graphics are printed with the upper-left corner located in the upper-left corner of the JFrame and the first one is covering the second.
    Secondly, I would like to rather implemet the robust JTable's print method somehow, because it has some neat features like multipage printing, headers & footers. But I have no idea how to add my own graphics to the JTables print method, so they will appear above the JTable. Maybe someone knows the answer?
    Thanks a lot
    UPDATE2:
    I was googling nearly all day in search of an answer, but with no success. I don't think it's possible to print JTable using it's print() method together with other components, so I will have to think of something else i guess...
    Edited by: Adalbert23 on Nov 22, 2007 2:49 PM

  • ChaRM Scenario: Workbench and Customizing CR in the same Change Document

    We use the ChaRM scenario of Solution Manager 3.2 to manage the transport request for the R/3 landscape.
    We have two different project with two different landscape:
    - the first one is used for customizing purpose ED1/010 - EQ1/010 - EP1/010
    - the second one is for workbench purpose ED1/011 - EQ1/010 - EP1/010
    We usually assign a Change Request each Change Document.
    Assigning the Change Document to a maintenance cycle (owned by a SolMan Project) to assigne the CD/CR to the right source client.
    Sometime we need to create a Change Document that contains two CR one for customizing purpose the other one for workbench purpose.
    Is this possible using ChaRM standard features ?
    Regards,
    Giampaolo

    Hi Martin,
    Solmaniacs' assumptions are correct. You can have as many source clients as you want.
    As long as
    - STMS configuration (transport routes, and domain links) are consistent
    - SMSY configuration (logical components are declared properly with assigning the right role types to systems/clients)
    - Project declaration are done correctly (so that from Solman solar_project_admin you can read the STMS as confiured in the distant STMS domain)
    - IMPORTANT: those configuration GO ALONG with each other !! (SMSY should nt contradict STMS for example...)
    The tasklist that is generated for each Solman project will be as follow
    - Node 1: Header Tasks (commun to all systems)
    - Node x: Corresponding to track x declared in Project (each Source System will have his own node with the corresponding track under)
    - Node x+1
    - Node ...
    - Last Node : Tasks for Tasklist closure - checks on scma consistancy and CTS projects closure
    So you'll always have n+2 nodes in your tasklist; n beeing the number of declared source (=dev) systems in project
    For each action launched from change docuemnts like creation of TR, release of TR or Retrofit (as Solmaniac said) you'll have an additional pop-up that will appears letting you choose the system you want to use for the action
    Hope its helpful
    Regards
    Khalil

  • PROFIT SHARING TO YOUR CUSTOMERS TO HELP BOTH COMPANY AND CUSTOMER GROW FOR THE FUTURE

    DEAR VERIZON
    WHY NOT OFFER PROFIT SHARING TO YOUR VERIZON CUSTOMERS AND MORE MORE PLANS A CUSTOMER HAS THE MORE PROFIT VERIZON WILL SHARE WITH ITS CUSTOMERS THE 99%.....
    I feel whtn you give back it would help THE PEOPLE AND COMPANY. AS ONE
    {edited for privacy}

    davester62,
    Hi there!  I completely agree with your suggestions and Verizon Wireless is always in development of creating more customer service outlets for our hearing impaired customers.
     We do offer email support on the Contact Us link, as well as Chat support. Our chat team will be available in the same link, but only when a live representative is available to speak with you immediately. Their hours are from 9AM-7PM (Monday-Friday). 
    Our Customer Service call centers are also happy to field calls from TTY services. Also, we have support on Twitter and of course, right here on our community forum!
    Thank you for your feedback!

  • Transporting the Templates in Objective settings and Appraisals

    Hello expert:
    I am finding problem in transporting the Personnel appraisal Templates from dev box to test box.
    I could transport the category group and category, but not the templates.
    When I rt. click on templates and select TRANSPORT, it is asking for a customizing transport. I did not get any error while assigning the templates to a transport.
    But after assigning template to a request number, it is not getting transported to test system.
    Any suggestions will be rewarded.
    Thanks,
    Raghu Kolukuluri

    Hi,
    I found the answer to this question in a different thread.
    If there is any problem transporting PD objects, one should try executing a report "RHSOBJCH" and adjust any inconsistencies that the report suggests.
    Regards
    Raghu Kolukuluri

  • The HUD Inspector in Full Screen View seems to position at the right margin of the image as a default(?)  If I toggle the button in the top right of the HUD it 'unlocks' and I can drag it to where I prefer -- at the left margin; (for over a decade) my doc

    The HUD Inspector in Full Screen View seems to position at the right margin of the image as a default(?)  If I toggle the button in the top right of the HUD it 'unlocks' and I can drag it to where I prefer -- at the left margin; (for over a decade) my dock has resided at the right margin so all my slider manipulation over countless editing sessions in Aperture has been ingrained to work at the left margin -- but, the vast majority of the time, the HUD overlaps the image I am editing in this 'unlocked' mode. 
    Every occasionally I enter Full Screen View and it positions on the left margin *without* superimposition...(!) My great joy is modulated into aggravation, however, should my tracking cursor drift all the way 'out of bounds' -- to call in the hidden pane of adjacent images sequenced in the library... This dramatically shrinks the Full Screen display and re-locks the HUD; if I toggle the switch to re-xpand the image it re-positions at the right margin!!!!  I SOOoooooo wish I knew how to control the default 'locked' margin of the HUD in Full Screen View...

    Drag it over to the Left. Then lock it there.

  • How do I convert the single x and y coordinates returned by a CWGraph Click event to the Cursor X and Y Positions?

    I am trying a work around for another problem.
    cwCSnapNearestPoint does not give me a CursorDown event (TrackMode = cwGTrackDragCursor). I need to know when the user has clicked on a Cursor. I need to figure out when the user has clicked on a cursor.
    The click event gives you coordinates as "Single" which are an OLE_XPOS_PIXELS. How do I convert to the Cursor coordinates (or vis a vis)?
    Or better yet is there another way to figure that a cursor has been clicked on (while using cwCSnapNearestPoint and TrackMode = cwGTrackDragCursor )

    Here are a couple potential fixes for the problem. If you are dealing with cursors on the graph, I would look into CursorChangeEvent, CursorMouseDown, CursorMouseUp, and CursorMouseMove. The ChangeEvent is triggered upon repositioning of the cursor. MouseDown triggers on the depression of a mouse button on a cursor, while MouseUp triggers on the button's release. MouseMove is triggered when the mouse is moved over a cursor. These each give X and Y positions in the arguments. If you used these and then made a Sanp to nearest point, you should have the coordinates before you sanpped to the point.

  • How to set the X-position and Y-position

    I started an application but was struck due to a problem.
    The problem was : I was unable to set the X-position and Y-position in the desired place... Any one who can help please help me to continue my application......
    I wanted to set my choice group elements in the center of the screen.. help me plz....

    You want to change to x/y position of what? The main frame?
    If it is the Frame class take a look into the CDC/PP specification:
    "An implementation may prohibit resizing of Frames by a user. In such a case, attempts to make any Frame resizable will fail silently"

  • Capture the x and y position of a rectangle

    Hi,
    I'm working on a letting a user draw a rectangle to define a position on the stage. Te rectangle draws out ok. My problem is that I need to convert this dimensions and position of the rectangle in dynamic text. Plus, I need to make a way for the user to save these values into a text file.
    Right now, I am able to capture the width and height, however, I can't seem to capture the x and y coordinates of the rectangle. I'd like to get the position of the top left corner if possible.
    Here is what I have so far-
    //Draws the final rectangle and logs the size and position
    var hasRect: Boolean = false;
    var rectHeight: Number;
    var rectWidth: Number;
    var rectXPos: Number;
    var rectYPos: Number;
    imprintHeightLabel.text = "Imprint Height: 0";
    imprintWidthLabel.text = "Imprint Width: 0";
    imprintXPosLabel.text = "Imprint X Position: 0";
    imprintYPosLabel.text = "Imprint Y Position: 0";
    function mUp(MouseEvent):void
    mouseHolding = false;
        if(hasRect == false)
        myDrawing.graphics.lineStyle(2, 0xFF0000, 1);
        myDrawing.graphics.beginFill(0xFF0000, 0.2);
        myDrawing.graphics.drawRect(clickedX, clickedY, mouseX-clickedX, mouseY-clickedY);
        myDrawing.graphics.endFill();
        hasRect = true;
        clearTemp();
        rectHeight = myDrawing.height;
        rectWidth = myDrawing.width;
        rectYPos = myDrawing.y;
        rectXPos = myDrawing.x;
        if(hasRect == true)
            imprintHeightLabel.text = "Imprint Height: " + rectHeight;
            imprintWidthLabel.text = "Imprint Width: " + rectWidth;
            imprintXPosLabel.text = "Imprint X Position: " + rectXPos;
            imprintYPosLabel.text = "Imprint Y Position: " + rectYPos;
        else
            imprintHeightLabel.text = "Imprint Height: 0";
            imprintWidthLabel.text = "Imprint Width: 0";
            imprintXPosLabel.text = "Imprint X Position: 0";
            imprintYPosLabel.text = "Imprint Y Position: 0";

    Here is what I did to get the top left corner. Now, I am trying to populate that value of the x position into a number stepper and then allow adjustments, but it's not working. I've managed to stave off the IO errors I was receiving, though.
    What I want to do is let the user draw a rectangle. Then find the x and y position of the top left cornder of the rectangle along with the rectangle's height and width. These 4 values are updating in dynamic text fields. All of this works now.
    However, I want to make it so the user can see the values update in numeric steppers and allow the user to use the numeric steppers to make tweaks. Eventually I want the user to select and place the rectangle too.
    Here is what I have so far. The numeric stepper sets to it's default value in the variable, but that's all I've got so far.
    import flash.display.Sprite;
    import fl.controls.NumericStepper;
    //Draws a transluscent rectangle
    var temporaryDrawing:Shape = new Shape();
    addChild(temporaryDrawing);
    temporaryDrawing.graphics.lineStyle(2, 0x666666, 1);
    var myDrawing:Shape = new Shape();
    addChild(myDrawing);
    myDrawing.graphics.lineStyle(2, 0xFF0000, 1);
    var mouseHolding:Boolean = false;
    var clickedX:Number;
    var clickedY:Number;
    stage.addEventListener(MouseEvent.MOUSE_DOWN, mDown);
    stage.addEventListener(MouseEvent.MOUSE_UP, mUp);
    var clickDownY:Number = new Number;
    var clickDownX:Number = new Number;
    function mDown(e:MouseEvent):void
    var tempDownX:Number = new Number;
    var tempDownY:Number = new Number;
         tempDownX = e.stageX;
         tempDownY = e.stageY;
         clickDownY = tempDownY;
         clickDownX = tempDownX;
        myDrawing.graphics.clear();
        hasRect = false;
        mouseHolding = true;
        clickedX = mouseX;
        clickedY = mouseY;
    //Draws the final rectangle and logs the size and position
    var hasRect: Boolean = false;
    var rectHeight: Number;
    var rectWidth: Number;
    var rectXPos: Number;
    var rectYPos: Number;
    imprintHeightLabel.text = "Imprint Height: 0";
    imprintWidthLabel.text = "Imprint Width: 0";
    imprintXPosLabel.text = "Imprint X Position: 0";
    imprintYPosLabel.text = "Imprint Y Position: 0";
    var clickUpX: Number = new Number;
    var clickUpY: Number = new Number;
    var absYPos: Number = new Number;
    var absXPos: Number = new Number;
    function mUp(e:MouseEvent):void
         var tempUpX:Number  = new Number;
            var tempUpY:Number = new Number;
         tempUpX = e.stageX;
         tempUpY = e.stageY;
         clickUpY = tempUpY;
         clickUpX = tempUpX;
        mouseHolding = false;
        //compares the mouse_down and mouse_up to see which one creates the top left corner position
        if(hasRect == false)
            myDrawing.graphics.lineStyle(2, 0xFF0000, 1);
            myDrawing.graphics.beginFill(0xFF0000, 0.2);
            myDrawing.graphics.drawRect(clickedX, clickedY, mouseX-clickedX, mouseY-clickedY);
            myDrawing.graphics.endFill();
            hasRect = true;
            clearTemp();
                //Comparison Determines if the "ClickUp or ClickDown is at the top left corner
                if(clickDownY < clickUpY)
                    absYPos = clickDownY;
                else if (clickDownY > clickUpY)
                    absYPos = clickUpY;
                if(clickDownX < clickUpX)
                    absXPos = clickDownX;
                else if (clickDownX > clickUpX)
                    absXPos = clickUpX;
                rectHeight = myDrawing.height;
                rectWidth = myDrawing.width;
                rectYPos = absYPos;
                rectXPos = absYPos;
                if(hasRect == true)
                    imprintHeightLabel.text = "Imprint Height: " + rectHeight;
                    imprintWidthLabel.text = "Imprint Width: " + rectWidth;
                    imprintXPosLabel.text = "Imprint X Position: " + absXPos;
                    imprintYPosLabel.text = "Imprint Y Position: " + absYPos;
                else
                    imprintHeightLabel.text = "Imprint Height: 0";
                    imprintWidthLabel.text = "Imprint Width: 0";
                    imprintXPosLabel.text = "Imprint X Position: 0";
                    imprintYPosLabel.text = "Imprint Y Position: 0";
    stage.addEventListener(MouseEvent.MOUSE_MOVE, mMove);
    function mMove(MouseEvent):void
        if (mouseHolding)
            if(hasRect == false)
            clearTemp();
            temporaryDrawing.graphics.drawRect(clickedX, clickedY, mouseX-clickedX, mouseY-clickedY);
    function clearTemp():void
        temporaryDrawing.graphics.clear();
        temporaryDrawing.graphics.lineStyle(2, 0x666666, 1);
    xPosAdj.addEventListener(Event.CHANGE, adjustXPosition);
    var stepperValue: Number = new Number;
    function adjustXPosition(Evt:Event):void
        stepperValue = xPosAdj.value;
        if (hasRect == true)
            stepperValue = rectXPos;
        else
            stepperValue = 0;

  • Error when accessing a custom RFC from the ISA framework

    Hi,
    I am trying to add new functionality to Ecommerce 5.0 by providing my own custom actions and calling a custom RFC. I followed the procedure given in "Development and Extension Guide u2013 SAP E-Commerce 5.0" i.e., "Extension Demo 6: Copy-Template for Customer Extensions"...
    I am passing 2 parameters company code and customer number to the RFC via JCO.Function.getImportParameterList().setValue(String) one of which is a value "BP01"..I am getting back an error saying
    Guest#0##n/a##8a55139c594311df8f0a000000000000#SAPEngine_Application_Thread[impl:3]_17##0#0#Error##Plain###Field BP01 not a member of INPUT#
    I checked with the SAP guys at my work, the function module works well with those parameters from the GUI.. NOt sure what the problem could be..
    Any kind of input could be of help
    Thanks
    S

    Thanks for your help guys, Your answers were accurate for Ecommerce 6.0 and higher, I just learn t that E Commerce 5.0 uses Sapjco 2.X and there is a slight difference in the way we set the import parameter list..
    In SAPJCO 2.x, we need to set
    <b>myFunction.getImportParameterList.setValue<u>("Value", "FieldName")</u>;</b>
    where as in new SAPJCO3.x, we need to change the order i.e.,
    <b>myFunction.getImportParameterList.setValue<u>("FieldName", "Value")</u>;</b>
    I am glad that my problem got solved
    Cheers..

  • Where is the template section in pages 5.0?

    In the new Pages 5.0 i cannot find the icon that use to help me add table content , section , chapter and sections according to the template that you choose. does anyone know where it is??

    hmm this seems like to resolve the problem only temporarily.
    when i shut down pages and reopens, it jumps back to the british spelling. how can i make this fixed to the american spelling?

Maybe you are looking for

  • Problem with authentication in OBIEE

    Hello, I have a problem with authentication in OBIEE. A user who does not exist, enter the application and can enter but can not access almost anything, it is very rare because in addition webcatalog are created within the folder with your name and n

  • Call transaction in new session (but only one)

    Dear all, as a hotspot functionality I would like to open a new transaction in a new session. For that reason, I use the FM ABAP4_CALL_TRANSACTION with the option STARTING NEW TASK. However I would like to restrict the new tasks in a way that only on

  • Pavilion DV9008NR BIOS problem Windows 8 32-bit

    I have an older Pavilion DV9008NR notebook: RAM - 2 GB RAM CPU - Athlon Turion 64 x2 1.6 GHz TL-50 Motherboard - Quanta 30B9 Chipset - NVDIA GeForce 6150 Southbridge - NVIDIA NForce 410/430 MCP BIOS HP F.43 3/22/2010 Nvidia GPU - GeForce Go 6150 (UMA

  • Exception in java mail API when parsing email

    I am receiving the following exception when receiving some emails that contain attachments with java mail (irrelevant part of stack trace omitted): javax.mail.internet.ParseException: Expected ';', got ","      at javax.mail.internet.ParameterList.<i

  • Flash Builder 4 is ANNOYING!

    Is anyone else annoyed with how Flash Builder 4 runs? Stuff I hate: I hate the new Package Explorer. Why isn't it alphabetical?...dumb. I hate the twirl downs on in the Package Explorer that show the methods and such of a class. This is what the Outl