Join of RESB with either EBAN/EKPO

Hi Friends
Currently I am Developing Supply Chain Planning and Shipment Report by using PS, MM, SD modules. I have problem in finding
corresponding either Purchase Req./ Stock Transport Order based Reservation no & Item no from RESB.
Pelase let me know your thoughts on join RESB with Either EBAN/EKPO.
Thanks
Ashok

Hi Ashok,
You can link RESB with EBAN using fields BANFN and BNFPO.
You can link RESB with EKPO using fields EBELN and EBELP.
Hope it is helpful to you.
Regards,
Vinod

Similar Messages

  • Unable to join online games with 10.5.1, 2 or 3.

    So, basically I have a problem as well as some of the other friends I have. The problem is that I'm rarely able to join certain users of the game that I play online on gameranger called " Age of Empires II." This problem hasn't bothered me until lately, because usually it's always me that hosts the game (which works fine by the way) However, when I jump over to a game room that I'm not hosting, I am able to join the actual Pre-game room, but then once the host presses "Start" I get the "Unable to Join game" message. And before you ask, IP joining does not work either. I have a few other friends with the exact same problem, same OS, same issue. I've been told that this has to do with the settings in my router, well, I don't have a router, just a modem. I've called my ISP and they have said that the modem is set (by default) to not block any connections going in or out. I have my firewall tab set to "allow all incoming connections" as well. I'll say right now that there are actually a few select hosts that I can join with, only a few, and when I talk to them, they say they have a 10.5 OS and I can join their game just fine. So if I figure out what they did to enable me to join them, then it should work the other way around. So my question is, what did those few hosts do to their computer to make it so I could join?

    No firewall on, the firewall tab in my security pane is set to "allow all incoming connections" is there another firewall that I need to worry about?

  • I have just converted from PC to iMac. Yay. But pls be nice to me; I am back to newb! Running Lion. Have connected a Time Capsule as both a backup and WAP. I want to be able to join the network with my iPad, iPhone, iPod to print. How can I do this?

    Can I do this using the Time Capsule. I am not tech, so bear with me. Can I get the iPad to connect wirelessly to the TC, which connects wirelessly to the Canon MP495? Or, can I connect/network the iPad to the iMac to print?
    Either way, or if there is any other solution, I would appreciate if someone would walk me through it, or point me to a plain-speaking resource.
    Thankyou.
    Actually, one more: I would like to connect my HP laptop as well. I have heard this is not simple, but possible.

    You can create a wifi network with your TC, and you can join this network with your iPad. However, your printer does not support the AirPrint protocol, so you will not be able to print from your iPad, unless you load additional software.
    These are the steps:
    1.  (You may have completed this step already) Set up your TC to create a wireless network. You can do this from AirPort Utility on your Mac or from the AirPort Utility App on your iPad (free download from the App Store).
    2. From your iPad, go to settings / wifi and join the network.
    3. Download the Canon iPhone App from the App store on your iPad
    4. You can now print photos from your iPad to your Canon printer.
    If you want full functionality, (not just photos), there is software for your Mac that makes your printer available to your iPad through AirPrint (Printopia). The downside is, you have to purchase it, and you have to have your Mac running when you want to print from your iPad.
    Good luck!

  • Join fact table with higher dimension level

    how do i join fact tables with higher dimension levels with discoverer?
    fact with detail at level C
    measure X
    dimension with
    D->C->B->A
    E->C
    level
    A B C
    1------1------1
    2------2------1
    3------2------1
    join between fact X and dimension level C
    X=3*C because of sum(X) in discoverer and 3xC in dimension
    is there a way to get correct values for X without creating a dimension like
    D->C
    E->

    another way of asking this is whether you can create a summary table in Discoverer at a higher level than a dimension's fundamental grain. In other words - the summary examples in the documentation all describe leaving out one or more of your dimensions... they are either left in or completely taken out. But, some of the most effective summarization occurs when you summarize daily data to a monthly level. Assuming that I have a sales table (at a daily level, and a key value sales_date), and a table date_dim (primary key sales_date), I would like to create a summary sales_month_summary where the sales are grouped on month_year (which is a field in the sales_date table).
    How is this done? I suspect that we can't use the date_dim table with the summary (due to the problems noted by the poster above). Do we have to create another table "month_dim"? Do we have to fold all of the desired date attributes (month, quarter, year) into the summary? Obviously we'd like to re-use all of the pertinent already existing date items (quarter, month, year, etc.), not recreate them over again, which would result in essentially two sets of items in the EUL. [One used for this month summary, and another used for the detail.]
    I searched the forum - someone asked this same question back in 2000 - there was no answer provided.
    The only other thought I have is to "snowflake" the date_dim into two tables and two folders, one at a date level, another at the month level. Then the detail tables can connect to date_dim (which is linked to month_dim), while the summary data can connect directly to month_dim.

  • SQL - JOIN using UNION ?? UNION using JOIN ?? with example!

    I was asked this question during one of my interviews. Can you do JOIN using UNION keyword? Can you do UNION using JOIN keyword?
    That is -
    1. I should get same output as JOIN without using JOIN keyword, but using UNION Keyword?
    2. I should get same output as UNION without using UNION keyword, but using JOIN Keyword?
    Can you give me an example of how to do this if possible?

    Hi,
    Welcome to the forum!
    user13067794 wrote:
    I was asked this question during one of my interviews. Can you do JOIN using UNION keyword? Can you do UNION using JOIN keyword?The correct answer to those questions is: Why would you want to? All versions of Oracle (and probably any other database product) provide JOIN to do certain things and UNION to do other things. Why not use those features the way they were designed to be used? Even if it is possible to do what you ask, it's going to be more complicated and less efficient.
    If you really must:
    That is -
    1. I should get same output as JOIN without using JOIN keyword, but using UNION Keyword? You can select the relevant columns from each table, and NULLs for all the columns from other tables, in a UNION query. Then you can use GROUP BY or analytic functions to combine data from different rows. For example, this JOIN:
    SELECT     d.dname
    ,     e.mgr
    FROM     scott.dept     d
    JOIN     scott.emp     e  ON     d.deptno  = e.deptno
    ;could be written using UNION, but no JOIN, like this:
    WITH     union_data     AS
         SELECT     deptno
         ,     dname
         ,     NULL     AS empno
         ,     NULL     AS mgr
         FROM     scott.dept
        UNION ALL
         SELECT     deptno
         ,     NULL     AS dname
         ,     empno
         ,     mgr
         FROM     scott.emp
    ,     quasi_join     AS
         SELECT     MAX (dname) OVER (PARTITION BY deptno)     AS dname
         ,     mgr
         ,     empno
         FROM     union_data
    SELECT     dname
    ,     mgr
    FROM     quasi_join
    WHERE     empno     IS NOT NULL
    ;Depending on your tables and your requirements, you might be able to do something a little simpler.
    2. I should get same output as UNION without using UNION keyword, but using JOIN Keyword?A FULL OUTER JOIN is similar to UNION.
    This UNION query:
    SELECT     dname          AS txt
    FROM     scott.dept
    UNION
    SELECT     TO_CHAR (mgr)     AS txt
    FROM     scott.emp
    ;Can be written like this, using JOIN but no UNION:
    SELECT DISTINCT
         NVL2 ( e.empno
              , TO_CHAR (e.mgr)
              , d.dname
              )          AS txt
    FROM          scott.dept     d
    FULL OUTER JOIN     scott.emp     e  ON       1 = 2
    user13067794 wrote:I too don't any example as such, but I am thinking on this line -
    Select a.x, b.y
    from a,b
    where a.key=b.key and sal<5000
    UNION
    Select a.x, b.y
    From a,b
    Where a.key=b.key and sal>7000
    can we get same result using JOIN?That's a very special case. You can get the same results without using UNION like this:
    Select distinct
         a.x
    ,      b.y
    from      a
    ,     b
    where      a.key     = b.key
    and      (        sal < 5000
         OR     sal > 7000
    Can we do something similar using UNION without using JOIN keyword??What you posted does not use the JOIN keyword.
    To get the same results without using a join (either with or without the JOIN keyword), you can use UNION together with aggregate or analytic functions, as I showed earlier.
    Edited by: Frank Kulash on Jul 5, 2011 9:01 PM

  • Windows 7 not joining to domain with SCCM OSD Task sequence

    Iam having trouble with Windows 7 deployment through SCCM, where the systems dont get joined to the domain if the system name is not already present in the AD.
    If I have the system name already in AD it works fine also Iam able to join the system to the domain with the same account Iam using in SCCM TS for domain join.
    Searched around and not able to find a resolution. I checked the setupact.log and found the follwoing messages.
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: Begin
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: Loading input parameters...
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: AccountData = [NULL]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: UnsecureJoin = [NULL]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: MachinePassword = [secret not logged]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: JoinDomain = [xposure.com]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: JoinWorkgroup = [NULL]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: Domain = [xposure]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: Username = [domain.join]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: Password = [secret not logged]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: MachineObjectOU = [CN=Computers,DC=Xposure,DC=com]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: DebugJoin = [NULL]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: DebugJoinOnlyOnThisError = [NULL]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: Checking that auto start services have started.
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: Joining domain [xposure.com]...
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: Calling DsGetDcName for xposure.com...
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: DsGetDcName returned [NJYAD01.xposure.com]
    2011-01-03 21:00:31, Info                         [DJOIN.EXE] Unattended Join: Constructed domain parameter [xposure.com\NJYAD01.xposure.com]
    2011-01-03 21:00:35, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:00:40, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:00:46, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:00:51, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:00:56, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:02, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:07, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:12, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:17, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:23, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:28, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:34, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:39, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:44, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:49, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:01:55, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:00, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:05, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:10, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:16, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:21, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:26, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:32, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:37, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:42, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:48, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:53, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:02:58, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:04, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:09, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:14, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:20, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:25, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:30, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:35, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:41, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:46, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:51, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:03:56, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:02, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:07, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:12, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:17, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:23, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:28, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:33, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:39, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:44, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:49, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:04:55, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:00, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:05, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:10, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:15, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:21, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:26, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:32, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:37, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:42, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:48, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:53, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:05:58, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:04, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:09, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:14, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:20, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:25, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:30, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:35, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:41, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:46, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:51, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:06:57, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:07:02, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:07:08, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:07:13, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:07:18, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:07:24, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:07:29, Warning                      [DJOIN.EXE] Unattended Join: NetJoinDomain attempt failed: 0x2, will retry in 5 seconds...
    2011-01-03 21:07:34, Error                        [DJOIN.EXE] Unattended Join: NetJoinDomain failed error code is [2]
    2011-01-03 21:07:34, Error                        [DJOIN.EXE] Unattended Join: Unable to join; gdwError = 0x2
    2011-01-03 21:07:34, Info                         [DJOIN.EXE] Unattended Join: Exit, returning 0x0
    Any help is much appreciated. Thanks

    It is possible.  You could do this with either a script or Task Sequence steps.  If you go the TS route, use 'Set Task Sequence Variable' and set the MachineObjectOU variable equal to OU=ABC,DC=Contoso,DC=COM or whatever with the condition (on
    the Options tab for the Step) Select * from Win32_ComputerSystem WHERE Name LIKE 'ABC%' 
    And that should do it for you.
    If this post was helpful, please vote up or 'Mark as Answer'! More of this sort of thing at www.foxdeploy.com

  • I Have a Mac 10.9.5 I have Photoshop CS 5.. Also have Photoshop CC. As of last month was able to edit any image with either program,as of today I can't edit images in either program. I can't see and editing I've done ,but when close the image both program

    I Have a Mac 10.9.5 I have Photoshop CS 5.. Also have Photoshop CC. As of last month was able to edit any image with either program,as of today I can't edit images in either program. I can't see and editing I've done ,but when close the image both program ask (do you want to save changes) I look at the image I don't see any changes to save. Please help Thanks for time in advance

    Please describe the steps involved in the issue exactly (with screenshots maybe).
    What have you done for trouble-shooting so far?
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html

  • Error message: "Warning: unresponsive script". Afterward, the system freezes and will then crash. Crash reports have been submitted many, many times without response. I have tried the fore-mentioned solutions with either no results or very bad results

    Error message: "Warning: unresponsive script". Afterward, the system freezes and will then crash. Crash reports have been submitted many, many times without response. I have tried the fore-mentioned solutions with either no results or very bad results which I filed a report but did not receive an answer. The application to block scripts actually worsened the problem and I could not correct the situation for a while (no response from Firefox, at all). I have also been through this procedure without any one contacting me, AT ALL.
    == URL of affected sites ==
    http://http://www.facebook.com (always) and www.YouTube.com (sometimes)

    There does appear to be any support whatsoever from mighty "non caring" FIREFOX & people are getting fed up. We may as well try another system, if they can't be bothered to provide any support for their system, we can't be bothered to use their system.
    Brianeng

  • Why can I no longer access google from my mac with either Firefox or Safari

    why can I no longer access google from my mac with either Firefox or Safari — both with latest updates loaded. My PC is fine.

    What was before? And what is now?
    It is a good idea to include the machine type and OS version in your problem posts.

  • Raw files from the new Nikon D810 will not open with either Photoshop CS5.1 or Lightroom 4.  When will a real Adobe solution be available to work with Raw (NEF) files in their native format, using CS5.1 and LR4?

    Raw files from the new Nikon D810 will not open with either Photoshop CS5.1 or Lightroom 4.  When will a real Adobe solution be available to work with Raw (NEF) files in their native format, using CS5.1 and LR4?

    Clarification: this is a user forum; you are not addressing Adobe here.
    The answer to your question as phrased is: never.
    CS5 is history and it is not longer supported.  There will not be any updates or bug fixes for CS5.
    You need to convert the raw NEF files from your D810 to raw DNGs using the free, standalone Adobe DNG Converter 8.6 RC (beta), the first version ever to support that camera.. 

  • I cannot ope PDF files that are within a web link.  Neither Safari nor Firefox will work.  If I receive a PDF file as an email attachment, I can open it with either Adobe or Preview.  I'm running 10.6.8 on an iMac.

    I'm going to re-state this.  Several weeks ago, I had installed Security Update 2012-004 on my iMac.  I'm running Snow Leopard 10.6.8.  Immediately afterwards, my Mail 4.6 was GONE.  Mail 4.2 was there, but the system would not open it.  The Apple Support Communites quickly solved my problem.  The problem lay within the Update.  Now, I cannot open PDF files that are contained within a website, i.e. a lunch menu that is on a restaurant website.  This happens on both Safari and Firefox.  If someone sends me an email with an attached PDF file, I can open the file with either Adobe or Preview.  This is happening only on my iMac.  My MacBook Pro, also running Snow Leopard 10.6.8 has not experienced either the first or second problem.  Thanks for any help you can offer.

    fomamac2guy wrote:
    Now, I cannot open PDF files that are contained within a website, i.e. a lunch menu that is on a restaurant website.
    Does this help with Firefox?

  • I have just bought four songs from iTunes store using my iMac. I can play the music on my iMac and throughout my Apple TV. However after several restarts and double checks I can't get the four tunes to sync with either my iPhone or my iPad.

    I have just bought four songs from iTunes store using my iMac. I can play the music on my iMac and throughout my Apple TV. However after several restarts and double checks I can't get the four tunes to sync with either my iPhone or my iPad. All the software is up to date.

    do you use the same Apple ID on your iMac, your iPhone and iPad? This is a requirement.

  • Left outer join 3 tables with where-statement

    Hi folks,
    I hope you can understand (and maybe solve) my problem.
    Generally I try to left outer join three tables. The third table is used for a WHERE-statement.
    The three table structures are the following:
    table 1 (user)   
    user1 | key
    table 2 (detail)  
    key | ID
    table 3 (header)
    ID | user2                 
    ...and I want to achieve the following structure (as example filled with data):
    user | key | ID
    |-----|----
    xy    | a    | 001
    xy    | b    | #
    z     | b     | #
    The clue ist the usage of the third table. I need the table to set user1 and user2 equal (WHERE) but there are two problems:
    1) Obviously I can't left outer join two tables with each other. In this case I already used the 'key' of table 1 to join it with the 'key' of table 2. So I can't left outer join the 'ID' of table 2 with the 'ID' of table 3. Error message that I can only left outer join a table once. Any proposals?
    2) I have to include a WHERE to equal user1 with user2. But I am not allowed to use the user2 from table 3 because of the left outer join.
    I tried this coding:
    SELECT auser1 akey b~id INTO TABLE itab FROM ( table1 AS a
      LEFT OUTER JOIN table2 AS b ON akey = bkey )
      LEFT OUTER JOIN table3 AS c ON bID = cID )
      WHERE auser1 = cuser2.
    I would really appreciate your help.
    Regards
    MrclSpdl

    IF you want to join a DB table with an internal table, you need to use the 'FOR ALL ENTRIES' statement.
    select dbfields
    into table itab2
    from dbtab
    for all entries in itab
    where dbfield1 = itab-field1.
    This will get you a second internal table with all the corresponding data for the first selection.  You can then join them with a loop through the first table and a read table on the second table (for 1 - 1 relation) or a nested loop statement on both tables (for 1 - N relation).  Make itab a hashed table when using read table with key, use a sorted table if you need to loop without key access.
    Regards,
    Freek

  • Why can't I join a network with my IPhone with IOS7?

    Why can't I join a network with my IPhone with IOS7?

    Hi gvtxman,
    The articles below may be able to help you troubleshoot your Wi-Fi issue.
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398?viewlocale=en_US
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings.
    Note: This will reset all network settings including previously connected Wi-Fi networks and passwords
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/HT4199
    I hope this information helps ....
    Have a great day!
    - Judy

  • Joining a table with all_tab_columns

    How is it possible to join a table with the tab_columns?
    The query im trying to establish is that in my table they are 12 columns with months names. So under an input variable im trying to return the required values with the selected months. The only way i could think of to get the months to connect with the tab_columns table.
    Any suggestion is really appreciated
    SELECT bust,
    Sum(jan) JAN,
    Sum(feb) FEB,
    Sum(mar) MAR,
    Sum(apr) APR,
    Sum(may) MAY,
    Sum(jun) JUN,
    Sum(jul) JUL,
    Sum(aug) AUG,
    Sum(sep) SEP,
    Sum(oct) OCT,
    Sum(nov) NOV,
    Sum(DEC) DECC
    FROM budget a,all_tab_columns b
    WHERE vsl_code = 4602
    AND code = 1
    AND year=2013
    AND account_code='30'
    AND b.table_name='BUDGET'
    AND b.column_name IN
                         (SELECT column_name
                          FROM (SELECT Column_name, ROWNUM r
                                        FROM all_tab_columns b
                                        WHERE table_name = 'BUDGET'
                                        AND Column_id BETWEEN 3 AND 14
                                        ORDER BY column_id)
                          WHERE r BETWEEN 2 AND 3 ) --Returns February,March
    group by bust;

    Sorry, I don't understand what you're trying to do or why you think you need to join to all_tab_columns. Perhaps you could post the definition of the budget table, some sample data, and the results you're hoping to see.
    Without that, I don't see why you can't just do this:
    SELECT bust,   
    Sum(jan) JAN,   
    Sum(feb) FEB,   
    Sum(mar) MAR,   
    Sum(apr) APR,  
    Sum(may) MAY,  
    Sum(jun) JUN,   
    Sum(jul) JUL,   
    Sum(aug) AUG,   
    Sum(sep) SEP,   
    Sum(oct) OCT,  
    Sum(nov) NOV,   
    Sum(DEC) DECC  
    FROM budget a
    WHERE vsl_code = 4602  
    AND code = 1  
    AND year=2013  
    AND account_code='30' 
    group by bust;

Maybe you are looking for