PPOSE to OrgPublisher: How to have position descr. instead of job descr. ?

Hi,
I'm using tx PPOSE and I have the application OrgPublisher installed on my PC.  This invokes an extra button available in PPOSE: 'Format Structure Graphically'.
Pressing this button sends a file to the pc, which opens in OrgPublisher.
In this file (and thus in OrgPublisher) the job description is displayed (if no job assigned to it, it displays the position description). 
I 'ld like this always to be the position description (if there is a job assigned to it or not). 
Can anybody tell me where this can be customized/configured?
Thanks in advance!
Christian
Message was edited by:
        Christian Taeymans
Message was edited by:
        Christian Taeymans

Hi, 
I've found the solution myself.  Thanks to everybody who was looking into it.
It is configuration, to be done in tables T77AW_SCEN or T77AW_SCEN_SYST and in T77AW.
Kind regards,
C.

Similar Messages

  • How do you position tags in a spreadsheet? Can I eSign more than one tab in a spreadsheet?

    How do you position tags in a spreadsheet? Can I eSign more than one tab in a spreadsheet?

    Using text tags
    https://workspaces.acrobat.com/app.html#d=Bi-SZ3cbVCHwiWBBp-7G7g
    but spreadsheets are quite difficult to predict as they don't typically have a page size defined. If you can do this in Word it'll be easier.
    or convert to pdf before uploading to EchoSign.
    You an upload a spreadsheet with multiple tab and place tags on each tab and all will get converted.

  • How to have multiple images on the same screen? like in the movies where you see several actions at

    how to have multiple images on the same screen? like in the movies where you see several actions at the same time ....
    i don't find  a tutorial in adobe tv....
    thanks !!

    The short answer is that you'll put the source clip(s) for each inset on a different video track, all stacked up. Then use the Scale and Position effects (under "Motion" on the Effect Controls panel) to reduce their size and place them where you want.
    If the content of an inset will involve edited content (where you're cutting among various clips or just trimming out unwanted content from a single clip), then you'll probably find it easier to do all those edits in one sequence, then nest that sequence in the master sequence, where you apply the Scale and Positioning effects. That will save the step of applying the scale and position effects to each edited track item.

  • Please for referral information, how can I get more disk space, or actually information and guidelines that can have enough free disk space. How, I have to delete documents or downloading to another drive.

    Please for referral information, how can I get more disk space, or actually information and guidelines that can have enough free disk space. How, I have to delete documents or downloading to another drive. (The problem is that Safari could not download the file "iTunesSetup.exe" because there is not enough free disk space.Try deleting documents or downloading to another drive) ... Perhaps this is the main problem why can not open iTunes and inscription is: the folder "iTunes" can not be found or created, and is required. The default location for this folder is inside the "Music" folder. - And after options ok, appears option: Choose iTunes Library with inscription iTunes needs a library to continue. You may choose an existing iTunes library or create a new one - but still following options Choose Library and the following options can not open iTunes ... Please for instructions on how to eliminate the problem or eror ...
    Mac is running OS X v10.6.8, Safari should be 5.1.10. Or  Mac OS X  /  Version  10.6.8  /  Build 10K549 / Serial Number W8****ATM  /  Processor 2.4 GHz Intel Core 2 Duo  /  Memory 4 GB 1067 MHz DDR3 or More Info:
    Hardware Overview:
      Model Name: MacBook Pro
      Model Identifier: MacBookPro7,1
      Processor Name: Intel Core 2 Duo
      Processor Speed: 2,4 GHz
      Number Of Processors: 1
      Total Number Of Cores: 2
      L2 Cache: 3 MB
      Memory: 4 GB
      Bus Speed: 1,07 GHz
      Boot ROM Version: MBP71.0039.B0B
      SMC Version (system): 1.62f7
      Serial Number (system): W80394HFATM
      Hardware UUID: 94647506-C5D0-5D73-BC7F-FC680D238F43
      Sudden Motion Sensor:
      State: Enabled
    <Personsl Information Edited by Host>

    buy an external HD   1TB for $60
    NO notebook is a mass storage device, so dont try to turn it into one, it doesnt work that way.
    Unless youre using it every couple weeks, its static data and should be on an external HD
    In the case of a Macbook Air or Macbook Pro Retina with ‘limited’ storage on the SSD, this distinction becomes more important in that in an ever rapidly increasing file-size world, you keep vital large media files, pics, video, PDF collections, music off your SSD and archived on external storage, for sake of the necessary room for your system to have free space to operate, store future applications and general workspace.  You should never be put in the position of considering “deleting things” on your macbook SSD in order to ‘make space’.
    Professionals who create and import very large amounts of data have almost no change in the available space on their computers internal HD because they are constantly archiving data to arrays of external or networked HD.
    Or in the case of the consumer this means you keep folders for large imported or created data and you ritually offload and archive this data for safekeeping, not only to safeguard the data in case your macbook has a HD crash, or gets stolen, but importantly in keeping the ‘breathing room’ open for your computer to operate, expand, create files, add applications, for your APPS to create temp files, and for general operation.

  • How do I position to panels in a single frame?

    Hi,
    Can someone tell me how i can position two panels in a single frame using the BorderLayout class.
    I have included my code below. When it is run it shows two JPanels positioned at the top and the bottom, a text area to the right, a panel in the center and a panel on the left. I want to get the panel on the left - the yellow panel - to be positioned in the lower third of the center panel. I have tried to use the BorderLayout.SOUTH statement - but this positions the panel across the very bottom which causes the bottom JPanel and part of the text area to disappear.
    Can anyone help with this please???
    Many thanks
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Panels extends JFrame implements ActionListener
         private TopPanel topPanel;
         private BottomPanel bottomPanel;
         private JButton open;
         private JButton close;
         private JButton connect;
         boolean openClicked = false;
         boolean closeClicked = false;
         public Panels()
              super("Panels");
              setSize(1000,600);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setVisible(true);
              Container contentArea = getContentPane();
              topPanel = new TopPanel();
              bottomPanel = new BottomPanel();
              JTextArea textArea = new JTextArea("Text Area",20,20);
              JScrollPane textScroller = new JScrollPane(textArea);
              open = new JButton("Open");
              open.addActionListener(this);
              close = new JButton("Close");
              close.addActionListener(this);
              connect = new JButton("Connect");
              connect.addActionListener(this);
              JPanel topBar = new JPanel();
              topBar.setBackground(Color.red);
              topBar.add(open);
              topBar.add(close);
              JPanel lowerBar = new JPanel();
              lowerBar.setBackground(Color.red);
              lowerBar.add(connect);
              bottomPanel.setPreferredSize(new Dimension(100,100));
              contentArea.add(topPanel);
         contentArea.add(bottomPanel,BorderLayout.WEST);
              contentArea.add(textScroller,BorderLayout.EAST);
              contentArea.add(lowerBar,BorderLayout.SOUTH);
              contentArea.add(topBar,BorderLayout.NORTH);
              setContentPane(contentArea);
    public void actionPerformed(ActionEvent e)
         if(e.getSource() == open)
         openClicked = true;
         topPanel.repaint();
         if(e.getSource() == close)
         {closeClicked = true;
         bottomPanel.repaint();
    class TopPanel extends JPanel
         public TopPanel()
         public void paintComponent(Graphics painter)
              super.paintComponent(painter);
              painter.setColor(Color.white);
              painter.fillRect(0,0,getSize().width,getSize().height);
              if (openClicked == true)
              drawTopMessage(painter);
         public void drawTopMessage(Graphics painter)
              painter.setColor(Color.black);
              painter.drawString("This is the top panel", 20,20);
    class BottomPanel extends JPanel
         public BottomPanel()
         public void paintComponent(Graphics painter)
              super.paintComponent(painter);
              painter.setColor(Color.yellow);
              painter.fillRect(0,0,getSize().width,getSize().height);
              if (closeClicked == true)
              drawBottomMessage(painter);
         public void drawBottomMessage(Graphics painter)
              painter.setColor(Color.black);
              painter.drawString("This is the bottom panel", 20,20);
    public static void main(String[] args)
         Panels example = new Panels();

    One solution would be to create a new panel, bothPanels and adding the two panels that you need to this panel.
    Once you have done that, you can add bothPanels to contentArea.add( bothPanels, BorderLayout.CENTER)
    hth

  • How do i position a dialog popup box when it opens???

    i'm using the adf faces to follow a navigation link (dialog:addUser) to a new dialog popup page. all is working great; i am able to return the values in the popup as expected.
    what i can't find is how do i position this popup when it opens? i don't want it in the upper left over the calling page...i want to move it over and down so it appears to be more centered. can this be done? there's an attribute for height and one for width but not one for upper left X and Y positions that i can find.
    thanks for any support on this.

    apparently, i'm using the defaults as I don't have any idea as to that attribute. i searched for the showPopupBehavior and it's nowhere in my application. btw: i'm using jDeveloper 10.1.3.4

  • How to use position hierarchy for approval in custom workflow ?

    Dear All,
    I have created a custom workflow which fires when ever a new supplier site is created.
    Now I want to add approval hierarchy in this flow. For that I want to use Position Hierarchy.
    I have not find useful resources for doing that. Can you please help me?
    Regards,
    Rubayat

    Hi;
    Please review:
    How to Create a New Position Hierarchy [ID 437489.1]
    Adding Positions to a Hierarchy from Another Business Group [ID 356127.1]
    How To Determine Position Controlled Organizations In The Hierarchy? [ID 549628.1]
    How Does One Create and/or Update Position and Position Hierarchy in HR Using an API? [ID 736443.1]
    Using AME, How To Create Approval Routing To a Certain Position In HR Position Hierarchy [ID 1501433.1]
    Regard
    Helios

  • How do you position side by side tables so they print correctly on separate sheets?

    How do you position side by side tables so they print correctly on separate sheets?

    Hi CJ,
    I just saw this solution by Jerry:
    https://discussions.apple.com/thread/5653936?tstart=0
    It is non-intuitive how to get there, but Menu > File > Print... to get to Print Preview. Then Click on Print.. at bottom right. This does not print, but opens a dialogue where you can choose to Open PDF in Preview (click on PDF bottom left).
    Have fun!
    Regards,
    Ian.

  • How to Set Position Cursor Option to Non key fields in Table Maintenance .

    Hi,
    I have created a Ztable and i am using table maintenance for that table. In TMG ,by default  we have position cursor option to key fields only . User wants that position cursor option for non key fields also. Please help me out of this issue .
    How to provide Position Cursor option to Non key fields.
    Thanks & Regards,
    Prasad.

    Hi Nabheet,
    I tried using TYPE S DISPLAY LIKE E and am setting vim_abort_saving as X and sy-subrc as 4. However, this is also not enabling the fields. In this case, the first 2 fields - key fields are getting enabled but not the required ones. The above snapshot is for the same.
    lv_date1 = table1-date1.
       lv_date2 = table1-date2.
       lv_diff = lv_date2 - lv_date1.
       IF lv_diff LT 0.
         CLEAR: lv_err_msg.
         lv_err_msg = text-005.
         MESSAGE lv_err_msg TYPE 'S' DISPLAY LIKE  lc_e.
         vim_abort_saving = lc_x.
         sy-subrc = 4.

  • How can we position 5 Database Server for a centralized Database ?

    1) We are providing a e governance solution for an organization,where we are providing a  centralized database,Client have provided 5 Database server for the same.how can we position the Database Server? there are 5000 Concurrent users and 25000 users,SAN
    Storage for approx. 60 TB,Database size of 2 TB and growth of 1 TB every year
    2) How many instance can we have for above said Case?
    3) How much RAM Required ?

    Thanks for sharing information!!
    DB size is going to be too huge, you need to check for data archival option along with proper compression option.
    As per requirement, you need good server setup like; CPU: 4 cpu, 12 cores and RAM will be good to start with 256 GB.
    When you say 5 db server, is that it means 5 physical server not db instances rt?
    If that is the case then you can go for SQL Server 2014 to use that in memory options along with so many good support for temppdb, query optimization due to cardinality changes, SSD support etc.
    Intances will be:
    INS1, 2 : main instance and archival instance, using first two servers out of 5 servers.
    INS3: DR server, if it will not be active all the time and then we can easily check for 1/4 load on DR server so you can configure AlwaysOn to check INS1 and DR instance to get all HA DR part too.
    In case of INS4, INS5 can be used for reporting purpose being configured as other replication to act as local DR too.
    Hopefully I have covered all the available objects you have.
    Santosh Singh

  • How do I position a apDiv tag?

    Hi there,
    I am having trouble trying to position my apDiv tag (apDiv1).
    How do i position it so that when the browser window is resized, it stays directly under the words "quick links"
    Please see my page https://dl.dropbox.com/u/4966582/intranet/index.html
    Also, does anyone know why two faint lines are appearing in the bottom half of the page?
    Thanks
    Nathan

    First, there's no reason at all for apdivs in your layout.  Do away with it altogether.
    The lines are appearing because your footer is one big image and it's not a repeating image and either it doesn't go to the edge or it doesn't match up with your.  Again this has to do with your layout.  There is really no reason to make everything into big images like you have.  Make a simple 450px high by 5px wide image and use it for your footer bg.  Set it to repeat-x.
    My suggestion would be to just start with a template or look to a framework like Bootstrap to help you out with the coding and look at making the site with CSS.
    http://twitter.github.com/bootstrap/index.html

  • How i can position my spreadsheet stuff left upper corner ?

    How i can position my spreadsheet stuff left upper corner ? i always get small (but too big to my special needs,and even poorer i dont know how big this margin is) margin y-axis. ps. also same thing applies for Pages. I this special use i think both are suitable tools but looks like i must use numbers becouse in pages there is limits how many rows i can get.

    Hi Jupeko,
    Welcome to Apple discussions and the Numbers'09 forum.
    I'm not sure exactly what you are asking here. Both Numbers and Pages start in the upper left corner of the page, but both also have tools that take some space across the top of the window and a sidebar of the left side of the window.
    Pages will let you hide the format bar and the ruler (see the View menu) to reclaim most of the space at the top, and hide the Page Thumbnails running down the left side of the page (Uncheck the Page Thumbnails item in the View button's menu). Use the (Document) Inspector to set the margins to smaller values to move the content closer to the top left corner, and set the header and footer values to 0 if you are not using headers or footers.
    Numbers will not let you hide the Sheets list on the left side, but you can make it take less space by dragging the square to the right of the word "Sheets" left toward the edge of the screen. As in Pages, the Format bar may be hidden (the ruler is hidden by default). Margins may be set in the (Sheet) Inspector.
    On the screen, Numbers hides Print view by default, allowing you to scroll over the whole sheet without seeing page breaks.
    PDF uses the page size set for the document fom which the PDF file was created. To get more rows in a table, you will need to either decrease the height of each row or increase the size of the page.
    I hope that these comments do address your actual question.
    Regards,
    Barry

  • How to link Position flexfield and grade flexfield with business group?

    Hello guys,
    I am a new for Oracle HRMS. We have 2 position flexfields and 2 grade flexfields that need to be assigned to each business group.
    How to link it? I have found the way for job flexfield (within job group) however I can't find any similar setup for those flexfields.
    Please advise.
    Many thanks.

    Can you provide the solution, please.
    thanks in advance

  • I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically. Can some one out there help me?

    I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically.

    Update automatically under which circumstances, exactly?

  • How to have a live feed from application server log file (realtime viewr )

    how to have a live feed from application server log file (realtime viewr for apps log files)
    hi , thank you for reading my post.
    is there any way to have a live feed of Application server log ?
    for example is there any application that can watch the log file and show the changes as new log items come in ?
    can some one with more experience help ?

    Your question would be more suited to the Developer Forums
    http://devforums.apple.com
    but anyway...
    My goal is to develop a web application that is able to run on iPhone too, to capture the audio and video content from its camera and mic.
    Web Apps running in Safari don't have access to the camera or mic hardware.
    Or I should built a native application distributed through Apple store?
    That is your only option, although such a system already exists:
    http://itunes.apple.com/us/app/ustream-live-broadcaster/id319362690?mt=8

Maybe you are looking for

  • MIRO Error-Can not post to mat.account & using overhead cost centre &.

    Dear Colleagues, On MIRO,users have come across this error where they can not post to a particular G/L account using 2 different cost centres(219 & 220). We have some validations on OB28 but although one particular step menitons this message as I sta

  • Third party order process

    HI SD Gurus, I would like to know the process (mainly the list of documents), how is followed for Third party order processing in Indian scenerio. When the vendor is supplying the goods to the customer, what are all the documents needs to be carried

  • TNS: could not resolve service name

    ERROR: ORA-12154: TNS: could not resolve service name does any1 know what this means...and how to overcome this problem username : scott passwd: tiger host string: myora i have personal oracle8i in d:\oracle and d2k in d:\d2k it connects with the SQL

  • HT201406 why is the touch on the bottom part of my screen not working all of a sudden on iphone 4s?

    all of a sudden over night the bottom part of my screen does not react to touch  i have moved the bottom row icons through itunes but this still doesnt allow me to use this section of the screen once im inside an app. such as banking?????????

  • Itunes asking to restore windows?

    "Restore Windows. The application "iTunes" was forced to quit while trying to restore its windows.  Do you want to try to restore its windows again?" What does this mean? Should I do it? I think when I rebooted my laptop iTunes and Firefox were froze