Help with two goofy queries

This is for SQL 2005 - 2012. I was given these specs. There are no indexes on the two tables
This first one I have working, but wondering if anyone has any ideas to try and make it more efficient
IF OBJECT_ID('tempdb..#temp')IS NOT NULL
DROP TABLE #temp;
--IF DDORSC = ‘XFR’ and DDORBT = ‘XFR’ and pos1 = X,Y,Z and pos3 = '-' and pos4 <> X THEN
-- Move 16 ‘X’s starting at position 4 in field DDTRCE
select * into #Temp from
(SELECT 'X2-Y1234567890123451234', 'XFR', 'XFR' UNION ALL
SELECT 'Y2-Y1234567890123451234', 'XFR', 'XFR' UNION ALL
SELECT 'Z2-Y1234567890123451234', 'X2FR', 'XFR' UNION ALL
SELECT 'X2-X1234567890123451234', 'XF3R', 'XFR' UNION ALL
SELECT 'Y2-X12345678901234512354', 'XFR', 'XFR' UNION ALL
SELECT 'Z2-X1234567890123451234', 'XFR', 'XFR' UNION ALL
SELECT 'W2-X1234567890123451234', 'XFR', 'XFR' UNION ALL
SELECT 'Q2RX1234567890123451234', 'XFR', 'XFR' UNION ALL
SELECT 'Z2EW1234567890123451234', 'XFR', 'XFR') d (DDTRCE, DDORSC, DDORBT)
Update #Temp
SET DDTRCE = REPLACE(DDTRCE, substring(DDTRCE, 4, 16), 'XXXXXXXXXXXXXXXX')
WHERE DDORSC = 'XFR' and DDORBT = 'XFR' and
(DDTRCE like 'X%' or DDTRCE like 'Y%' or DDTRCE like 'Z%') and
DDTRCE like '__-%' and DDTRCE NOT like '___X%'
Select * from #Temp
This second one I am just stuck. No idea how to select 15 consecutive digits where the first digit is not a 0.
IF OBJECT_ID('tempdb..#temp2')IS NOT NULL
DROP TABLE #temp;
--IF HMPGMN = ‘AT01007’ and HMOLDF has more than 15 consecutive digits, and the consecutive
--digits is > 99,999,999,999,999 (14 digits) THEN mast consecutive digits just leaving the last 4
select * into #Temp2 from
(SELECT 'X2-Y1234567890123451234', 'AT01007' UNION ALL
SELECT '1234567890123451234', 'AT01007' UNION ALL
SELECT 'Y1234567890123451234', 'AT01007' UNION ALL
SELECT 'X2-X1234567890123451234', 'AT01007' UNION ALL
SELECT 'Z2EW1234567890123451234', 'AT01006') d (HMOLDF, HMPGMN)
Update #Temp2
Select * from #Temp2

Came of up with this for #2. It does not 100% work. I know that HMOLDF is varchar(20). So if the field had 20 digits, it would mask 15 and leave 5 unmasked. But it is the best that I can come up with
Update #Temp2
SET HMOLDF = REPLACE(HMOLDF, substring(HMOLDF, patindex('%[1-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]%',HMOLDF), 15), 'XXXXXXXXXXXXXXX')
WHERE patindex('%[1-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]%',HMOLDF) > 0
and HMPGMN = 'AT01007'

Similar Messages

  • Help with two scripts - Mounting remote DMG and Checking which network I'm connected to

    Hey guys, I need some help with two separate scripts:
    1. The first script I'm trying to create to mount a DMG stored remotely on another Mac using an AppleScript or shell script. Using the following:
    set cmd to "hdiutil mount 'afp://username:[email protected]/Lion/Users/username/Desktop/Test.sparseim age'"
    do shell script cmd
    results in the following error:
    error "hdiutil: mount failed - not recognized" number 1
    I'm not very experienced regarding AppleScript or using hdiutil, could somebody point out what's wrong with my script?
    2. The second script I'm working on to try and essentially prevent the 'Could Not Find Server' Finder dialog when a network mount is unavailable. I guess what I'd like it to do is detect which network I'm connected to, and if I'm connected to the correct network, then mount the shares, otherwise just fail silently without any errors. From the searching I've done, using try statements should do this, but they do not, and I'm still presented with an error dialog after the server cannot be found.
    Does anybody have any suggestions on this script? Also, I've seen some tips regarding detecting which wireless network the Mac is connected to, which could work, but what about when connected via Ethernet?
    Thanks!

    Edit: I need to clarify on my first script request:
    I need to mount the DMG on the remote Mac, not on the Mac I'm running the script from.

  • Chart from data with two bex queries in crystal reports 4.0 for enterprise

    Hi,
    I'm fairly new to crystal reports and I have a requirement to show the data from 2 bex queries in one single cross table. is it possible ?
    after getting it i should be able to create chart with that data
    Eg: my table would be something like below :
                   calendar day
    Input     : 12      34     50     60
    Output  :  09     23     19     57
    Input Data will be coming from one bex query
    Out put data comes from another bex query
    is it possible to merge the dimensions and then work on ????         
    any help is much appreciated

    Hi Tanveer,
    The only way you can add two BEx queries in a report is using a Subreport. The First BEx query goes in the Main Report and the second one goes in the Subreport.
    You'll not be able to add the dimensions and measures from these two BEx queries in a Crosstab anyway. Perhaps, you could create a mock crosstab and send values (all rows) from the Main Report to the Subreport as a string however, I can see that it's going to get complex.
    -Abhilash

  • Help with two DIVs as columns at 100% page height

    I've got two DIVs side by side on my page and I want both columns to fill the page from top to bottom.
    The left DIV stops about half way down the page.
    There are DIVs inside of each column.
    My test link is: http://faceworks.webtestingsite.net/pages/facials.html
    Here's the CSS I used for the columns,
    #leftSideBkgd {
              position:absolute;
              min-height:100%;
              background-color: #f0f0f0;
              width: 25%;
              left: 0px;
              top: 0px;
              z-index: 0;
              background-image: url(../img/bkgd/leftMenu.jpg);
              background-repeat: repeat-y;
              background-position: 100% 0px;
    #rightSideBkgd {
              position: absolute;
              background-color: #FFFFFF;
              width: 75%;
              left: 25%;
              top: 0px;
              z-index: 0;
              min-height:100%;
              background-image: url(../img/bkgd/pageBkgd.jpg);
              background-repeat: repeat-x;
              background-position: 0px 0px;
    html {
              height:100%;
    body {
              height:100%;
              background-image: url(../img/bkgd/pageBkgd.jpg);
              background-repeat: repeat-x;
              margin-left: 0px;
              margin-top: 0px;
              margin-right: 0px;
              margin-bottom: 0px;
              background-color: #FFF;
              font-family: Tahoma, Geneva, sans-serif;
              font-size: 14px;
              font-style: normal;
              line-height: 1.75em;
              font-weight: normal;
              color: #000;
    Thanks for your help with this

    You cannot safely force the height on those divs, without also getting ugly vertical scrollbars.
    Your choices are three -
    1.  Use Faux columns (Google it) to make it *look* like the divs are the same height.
    2.  Use javascript to actually dynamically determine what height to use for the columns.
    3.  Use CSS3 to make the adjacent columns behave as if they were two adjacent cells in a table, resulting in them being the same height.
    My preference is #1 - it's easy and VERY effective.  I don't like #2 as a solution, and #3 works beautifully if you are not worried about supporting IE6 or 7.

  • Create a View with two BEx Queries in BEx

    Hi Experts,
    I have got a scenario where in I have to create a single view on two BEx queries. Can any one give me the necessary steps to create the View?
    Awaiting for your reply,
    Thanks in advance,
    With kind regards,
    Shreeem

    Hi Shreem,
      I think that can be easily done. Check the below thread
    WAD - Integration of multiple queries
    Also see If you can include the two queries in a workbook and maybe later you can try creating a view on it?
    Thanks

  • Read Only/ Plan Mode Changes for a layout with two different queries

    Hi,
    I have a situvation where a layout opens in a read only mode and when
    the users click on button plan, it changes to plan mode. The catch here however is the queries
    for read mode and plan mode are slightly different, in the read only mode the query has subtotals
    and other calculations that are not a part of the plan mode ( where they input forecasts).
    I know if the read and plan query are the same, we can achieve this through the command
    SET_DATA_ENTRY_MODE. In case they are different, as above, how can i achieve this.
    Thanks
    Rashmi.

    Say you are using two different queries as DP1 & DP2 for Display and Plan mode respectively. You also have one Analysis grid item in Web template which initially points to DP1.
    On PLAN button call command SET_ITEM_PARAMETER to set the data provider of analysis item to DP2.
    OR
    You have only one dataprovider in your web template as DP1 initially pointing to Query 1 which you want to show in Display mode. Then on PLAN button call a command SET_DATA_PROVIDER_PARAMETERS to point the DP1 to 2nd query instead of 1st query.  You can find this command under Commands for data Provider --> Basic data provider commands.
    Edited by: Deepti Maru on Nov 27, 2009 9:52 PM

  • Help with two Ipods on Same Computer

    I have several questions in this one thread...
    I have two Ipods (Mine and my wifes). We each have seperate user names on the PC. I have all my music in the Public Folder, Music, Itunes. I have both Itunes preferences setup to share libraries, I have both setup to use that as one library, and I have considated the libraries. So the problems:
    1. How can I insert a new CD we own and have it be in the library and both Ipods sync it? I placed a new CD we own and it is syncing to my ipod, but not my wifes. I confirmed it is in the shared folder.
    2. Can you both use the songs you purchase on Itunes? It is saying no when I am syncing hers for songs I purchased on my acct. But I thought it could be on 5 different devices.
    Thank you for any help. I have searched high and low and I am sure the solution is here somewhere, but I keep doing what I find with no success.

    If the old iPod works, the new iPod will work.
    Simply plug it in.
    Create a new playlisy with the songs you want.
    Open iTunes orefs -> iPOd.
    Select Automatically update only selected playlists.
    Select the playlist you just created.
    That is all.

  • Help with two computers, two accounts on one apple tv

    I'm about ready to pull the trigger on an apple tv to add to my building home theater system. My biggest desire in getting the apple tv is mainly for music streaming to my speaker system. So here is my question. My wife and I both have our own separate itunes accounts, separate itunes libraries on our own macbooks. My question is if it will be a problem to access both of those itunes libraries through the apple tv. I have the remote app for my iphone and can control both of our libraries with that, and can switch between both easily on the iphone, but will the apple tv be able to play different libraries without difficulty? I don't know if i need to set up home sharing because both libraries are currently on different accounts, so i don't even know if it's possible.
    Any help, suggestions, or ideas would be appreciated.

    JKStraw - but you understand that when you use the appleTV you can stream from a computer without "taking over" the iTunes on that computer?
    there are two mode for streaming to an appleTV..
    1) you can stream what is being played on a computer's iTunes Library through airPlay and remote control the iTunes on the computer with the remote app
    OR
    2) you can just access the files in a computers iTunes Library from the appleTV without affecting the computer at all.. you could be playing a song on iTunes or not on the computer and be playing a completely different song on your appleTV.. you just enable home sharing on the appleTV and computer.. from appleTV you just go computers > +the name of the iTunes Library+ and you can access all your songs, video etc on that computer without affecting that computer at all..
    on the remote app you can link to an appleTV and 1) just use gestures to navigate the appleTV or 2) skip the appleTV GUI altogether and view what's available directly from the remote app.. click on something and it plays.. again this in no way affects what's happening on the computers the appleTV is linked to..

  • Help with some sql queries

    Hi, I have a few queries which I'm having difficulty in executing and I'm not sure where I'm going wrong. Here are the tables and their columns:
    AGENTS (AGENT_ID (num), LOCATION_ID (num), FIRST_NAME (varchar2), LAST_NAME (varchar2), SECURITY_LEVEL (num), BIRTH_DATE (date), ACTIVATION_DATE (date), DEACTIVATION_DATE (date)).
    MISSIONS_AGENTS (MISSION_ID (num), AGENT_ID (num)).
    MISSIONS (MISSION_ID (num), LOCATION_ID (num), SECURITY_LEVEL (num)).
    MISSION_TARGETS (MISSION_ID (num), TARGET_ID (num)).
    TARGETS (TARGET_ID (num), LOCATION_ID (num), FIRST_NAME (varchar2), LAST_NAME (varchar2), BIRTH_DATE (date)).
    INFORMATION (INFORMATION_ID (num), AGENT_ID (num), GLEANED_DATE (date), SECURTIY_LEVEL (num), TARGET_ID (num)).
    ACCESS_COST (COST_ID (num), LOWER_BOUND_LEVEL (num), UPPER_BOUND_LEVEL (num), COST (num)).
    LOCATIONS (LOCATION_ID (num), DESCRIPTION (varchar2)).
    The schema represents all of the relevant information for a secret government agency. The AGENTS table contains information on employees of the agency. MISSIONS regards the missions those agents are sent on. TARGETS contains information on non-agency people encountered on missions. On the course of missions, these targets provide information that goes into the INFORMATION table. LOCATIONS is a list of places where both agents and targets are based and where missions take place. MISSION_TYPES contains the different types of mission.
    MISSIONS_AGENTS is the linking tables for the many-to-many relationship between MISSIONS and AGENTS. This is needed because one agent can go on many missions, and many agents can be involved in a single mission. There is a similar relationship between targets and missions, hence the MISSIONS_TARGETS linking table.
    One table isn't linked to the others - the ACCESS_COST table. This table tells the database how much money to charge when someone accesses the INFORMATION table, based on the SECURITY_LEVEL of the information. You can find out how much a piece of information is worth by seeing which bracket of LOWER_BOUND_LEVEL and UPPER_BOUND_LEVEL it lies between. Note that the highest UPPER_BOUND_LEVEL is defined as NULL to allow for indefinitely high security levels. Similarly, the bottom LOWER_BOUND_LEVEL is also defined as NULL.
    Q1. Develop a query which will return agents and the total amount each spent on accessing information with a security level between 2 and 3.
    Create a table from the query called ‘ONE’ with columns FIRST_NAME, LAST_NAME and SPENT.
    Q2. For those deactivated agents that are on more than seven missions, change their deactivation date to the earliest deactivation date of all agents who were activated in the same year as the agent you are updating.(this does make sense if you think about it!).
    Now create a copy of your updated AGENTS table called ‘TWO’.
    Q3. Return the agents that are not on a mission. (Provide two different solutions). Create a table to hold the information called ‘THREE’. It should contain a single column NAME to hold the agent's full name. Alphabetise the table.
    Q4. Return the locations by top ten associated information cost. Define 'associated information cost' as follows: each piece of information that comes from a target living in a location adds to that location's information cost.
    Note that your query should account for the fact that two locations may have the same cost - were this the case, your query should return eleven values (not just ten) and the locations should all be in the range of the top ten costs. Create a table to hold these results called ‘FOUR’ with columns LOCATION_ID and COST. Put the data in descending order of cost.

    ok this is what I've done so far but the queries don't work
    --Q1
    CREATE TABLE ONE
    AS
    SELECT A.FIRST_NAME, A.LAST_NAME,
    SUM(AC.COST) SPENT
    FROM AGENTS A
    INNER JOIN
    INFORMATION I
    ON A.AGENT_ID=I.AGENT_ID
    INNER JOIN
    ACCESS_COST AC
    ON I.SECURITY_LEVEL BETWEEN 2 AND 3
    GROUP BY
    A.FIRST_NAME, A.LAST_NAME
    ORDER BY
    SUM(AC.COST)
    SELECT *
    FROM ONE
    --Q2
    UPDATE AGENTS A
    SET
    A.DEACTIVATION_DATE =
    SELECT *
    FROM
    SELECT MIN(A1.DEACTIVATION_DATE)
    FROM AGENTS A1
    INNER JOIN
    MISSIONS M
    ON A1.AGENT_ID = MA.AGENT_ID
    WHERE     MA.MISSION_ID > 7
    AND     A.DEACTIVATION_DATE,'YYYY' =
         A.ACTIVATION_DATE, 'YYYY'
    CREATE TABLE TWO
    AS
    SELECT *
    FROM AGENTS
    SELECT *
    FROM TWO
    --Q3
    CREATE TABLE THREE
    AS
    SELECT A.LAST_NAME||' '||A.FIRST_NAME NAME
    FROM AGENTS A
    INNER JOIN
    MISSIONS_AGENTS MA
    ON
         A.AGENT_ID = MA.AGENT_ID
    WHERE
         MA.MISSION_ID = 0
    ORDER BY
         A.LAST_NAME||' '||A.FIRST_NAME
    SELECT *
    FROM THREE
    CREATE TABLE THREE
    AS
    SELECT
         A.LAST_NAME||' '||A.FIRST_NAME NAME
    FROM AGENTS A
    INNER JOIN
    MISSIONS_AGENTS MA
    ON
         A.AGENT_ID = MA.AGENT_ID
    WHERE
         MA.MISSION_ID < 1
    ORDER BY
         A.LAST_NAME||' '||A.FIRST_NAME
    SELECT *
    FROM THREE
    --Q4
    CREATE TABLE FOUR
    AS
    SELECT
         LOCATION_ID, COST
    FROM
    SELECT
         L.LOCATION_ID LOCATION,
         T.LOCATION_ID + I.INFORMATION_ID COST
    FROM
         INFORMATION I
    INNER JOIN
         TARGETS T
    ON
         I.TARGET_ID = T.TARGET_ID
    INNER JOIN
         LOCATIONS L
    ON
         T.LOCATION_ID = L.LOCATION_ID
    ORDER BY
         T.LOCATION_ID + I.INFORMATION_ID DESC
    WHERE
         ROWNUM < 11
    SELECT *
    FROM FOUR
    ;

  • Help with Entities and Queries

    Hello,
    I am trying to link three tables, but only display info from a People table and a Role table. Can someone help me with the views and links needed to do this.
    Tables:
    people table key People_id, plus Last name, first name etc....
    User Role table has two columns user_id and Role_id. People_id = user_id.
    Role table also has two columns role_id and Desc. Would like to use a shuttle for the desc column.
    I would like to create / update people records with one to many roles. Is this the best way to do this? Also, would like to use a shuttle for the role desc column.
    Thanks,

    In your VO you can define more then 1 Entity. After this you can put the fields from the other entities in the VO.
    Regards,
    Menk

  • Could someone please help with two differences between CS and CS4?

    Hello, I just moved from Photoshop CS to CS4 and have a couple of questions regarding some differences I'm seeing in the two versions.
    (1) When opening files, I'm used to them opening in a smaller view as individual windows.  CS4 opens all images in the expanded view.  Is there a way to prevent this from happening?  I create massive sports photo galleries (often more than 100 images) and usually open 25-30 images at a time, then minimize all images and work on them one at a time in chronological order.  The was CS4 opens these images in full screen mode, it prevents me from doing this in a timely manner - PS never opens a group of photos up in a true chrono order.  It misplaces the first image to the end.
    (2) In CS, I used to be able to Right-Mouse-Click on the image's title bar to change Image and Canvas sizes.  Any way to get this to work in CS4?  CTL+ALT and either I or C is a three-key process and takes considerably longer than right clicking my mouse and choosing the correct option.
    Thanks for any help you can provide.  And apologies for being such a newbie to the latest and greatest Photoshop version.  I've been living in CS for years
    Mike

    You are a life saver. Thanks!  I looked in the INTERFACE area about three times and never understood that TABBED meant that it was opening them full screen.
    Any idea how to deal with question #2?  Cannot set up an ACTION for this as the action makes me have to choose an image size.  I just want to have the Image or Canvas size windows open with one click, rather than holding down three keys.
    Thanks again.  You have been rewarded with a CORRECT ANSWER click
    Mike

  • Need help with two-factor auth for windows logon using CSS

    Hi all,
    I have been trying for a couple of days now to get two-factor auth for windows logon working on my X1C Type 3443.
    I am running Windows 7 (64-bit) with Lenovo System Update 5.06.0007, Lenovo Solution Center 2.6.001.00, ThinkVantage Fingerprint Software 5.9.9.7282, ThinkVantage Client Security Solution 8.30.0031.00. If it's of any importance, my X1C was originally shipped with Windows 8, but I couldn't stand it and reinstalled Windows 7 instead.
    I have uninstalled and reinstalled the above programs in the following order:
    1) Install System Update and reboot
    2) Install Solution Center and reboot
    3) Install CSS and reboot
    4) Install Fingerprint Software and reboot
    Everything seems to be working fine by itself, except that when I try to configure two-factor auth in CSS, the Fingerprint tab (on the left of the GUI) is greyed out and CSS tells me that I have no fingerprints enrolled. The Fingerprint Software, however, is working just fine and shows me as having a fingerprint enrolled there.
    I have spent all morning searching for a solution, but everything I find dates back to 2011, when ThinkPads still came with ThinkVantage Toolbox. I obviously can't download that anymore, so I'm at a loss. Can someone please help? Thanks!
    Candace

    Hi all,
    I have been trying for a couple of days now to get two-factor auth for windows logon working on my X1C Type 3443.
    I am running Windows 7 (64-bit) with Lenovo System Update 5.06.0007, Lenovo Solution Center 2.6.001.00, ThinkVantage Fingerprint Software 5.9.9.7282, ThinkVantage Client Security Solution 8.30.0031.00. If it's of any importance, my X1C was originally shipped with Windows 8, but I couldn't stand it and reinstalled Windows 7 instead.
    I have uninstalled and reinstalled the above programs in the following order:
    1) Install System Update and reboot
    2) Install Solution Center and reboot
    3) Install CSS and reboot
    4) Install Fingerprint Software and reboot
    Everything seems to be working fine by itself, except that when I try to configure two-factor auth in CSS, the Fingerprint tab (on the left of the GUI) is greyed out and CSS tells me that I have no fingerprints enrolled. The Fingerprint Software, however, is working just fine and shows me as having a fingerprint enrolled there.
    I have spent all morning searching for a solution, but everything I find dates back to 2011, when ThinkPads still came with ThinkVantage Toolbox. I obviously can't download that anymore, so I'm at a loss. Can someone please help? Thanks!
    Candace

  • Lightroom 3 help with two hard drives that has missing folders

    Ok so I am operating on Lepoard osx using lightroom 3.  I have two external hard drives we will call them A and B.  I have used the existing catalog for a while in hard drive B.  Hard drive A is where I done the most work on photos.  I have imported a ton of photos from hard drive A and exported them etc. I'm not sure what happened exactly but, the folders that should be in Hard Drve A are now in Hard B and they have question marks next to them.  I then right clicked on the folders in Hard Drive B and located them in Hard Drive A.  I then made a new cataloge in hard drive A and closed Lightroom.  I opened up Lightroom and told Lightroom to use the new cataloge I created.  when it opend the folders were back in hard drive B.  What is going on?  Can any one help?
    Thanks
    Calvin

    I'm not sure why this is happening to you but I would suggest that you use Mac Finder to make sure where these folders actually are - on drive A, on drive B, or - maybe - on both?
    Only when you know where the folders are can you start rectifying the situation in Lr.
    If you find that you have folders on both drives - and you don't want that - consolidate all folders into one drive. Do this in Mac Finder but - at this point - do not rename folders or change the folder structure, if you can help it.
    When - according to Mac Finder - everything is as it should, open LR and locate all the folders that show question marks.
    Also, it doesn't help when you tell Lr to create a new catalog every time something is not right. Having more than one catalog tends to be confusing, and - unless you are very experienced in Lr - brings trouble.
    Since your different catalogs are probably contradictory I would suggest that you do NOT merge them to create one catalog. Instead - after everything is fine again - move all the other catalogs into a different folder so that Lr does not find them (but memorize the location). If after a while you decide that you don't need the other - moved - catalogs, you can delete them. From then on, it would be preferable that you work only with one catalog.

  • Help with two ipod users on one computer???

    Ok heres a quick rundown of the problem. My girlfriend and i both have ipod minis and i am having difficulty getting I tunes to work for me. Her I tunes works fine for her I pod, but when i try to add music files to my ipod using her I tunes, it keeps telling me that my ipod is attached to another music library, then it asks me if i want to erase the music on the ipod and download her music. I thought that maybe i was doing something wrong so i decided to install my copy of itunes to remedy the problem. I tried to install my ipods i tune disc onto the computer, everything looks like it installs well but for some reason its seems as though you can't have two versions of itunes on one computer. Can someone help me? Is there an easy way to fix this?

    OH good lord! Go into your start up menu and find Tour Windows XP and it will show you how. OR GO into your Control Panel, click on USER ACCOUNTS and go from there...its not rocket science, trust me

  • Help with two columns

    So I have two columns on my page and when I type the left column spills over into the right column. But this is not what I want to happen. I want the text that I type on the left to stay on the left and the text on the right to stay on the right. Please Help!

    Welcome to Apple Discussions
    I'd use a text box for one column or the other or text boxes for both. You can then link the left box on one page to the left box on the next page.
    Another option is to use a two-column table, but I think text boxes is easier.

Maybe you are looking for

  • ALV LIST/GRID DISPLAY

    Hi, My program output is in ALV format either LIST or GRID based on Sy-batch. In that program they are using table Z1021. They are retreiving data from Z1021 table based on selection screen parameters like werks, bukrs, vkorg, auart and date and pass

  • Cannot log into OpenDirectory server

    I am running OSX Server 2.2 on a Mac Mini with 10.8.5.  I have successfully enabled Open Directory and created several users that are set up as Services Only, as they do not need home directories, only file sharing and (hopefully in the future) conta

  • Transfer Sent Email to Another Mac

    I have a G4 laptop that I travel with. I often send email from this computer which end up appearing in the Sent file. I would love to transfer (copy) these individual sent emails (not the entire Sent file) to my desktop Mac Pro also running Mail. Any

  • Oracle 10.2.0.4 to 11.2.0.2 fails with ORA-03113

    This is Oracle upgrade from 10.2.0.2 to Oracle 11.2   (on Windows platform) Since 10202 to 11 is not SAP supported, we upgrade from 10.2.0.4 first before upgrade to 11 10202 to 10204 upgrade finished fine.  All post upgrade sql files are run without

  • What does this icon mean? HELP PLEASE

    Everytime i play a song in my ipod on the right corner there is a symbol its like two arrows going opposite of eachother in a circle what does it mean?