Subquery Not Working

I am trying to match the subquery data with the data in the 1st query and I received an error message that I am missing an expression, I am not sure what to do at this point, assistance would be greatly appreciated.
Error:
ORA-00936: missing expression
00936. 00000 - "missing expression"
*Cause:   
*Action:
Error at Line: 32 Column: 32
Query
select
h.external_order_number,
c.call_type,
c.call_disposition_lid,
r.lookup_desc call_reason,
p.user_name,
d.reason_code_name
from ain.impl_oh_order_header h,
ain.sncr_ct_request c,
ain.sncr_ct_lookup r,
ain.sncr_reason_code_lkup d,
ain.sncr_ssm_principal p
where c.flex_field1 = h.transaction_id (+)
and c.create_user_guid = p.user_id (+)
and c.call_reason_lid = r.lookup_id (+)
and c.call_start_time >= to_date('11/12/2012', 'mm/dd/yyyy')
and c.call_start_time <= to_date('12/11/2012', 'mm/dd/yyyy')
group by
h.external_order_number,
p.user_name,
d.reason_code_name,
c.call_type,
c.call_disposition_lid,
r.lookup_desc
(select distinct oh.partner, od.order_affiliate_name, oh.external_order_number,
cd.state
from ain.impl_oh_order_header oh
inner join AIN.impl_order_data od on od.transaction_id = oh.transaction_id
inner join ain.sncr_order_curr_disp cd on cd.transaction_id = oh.transaction_id
where oh.created_ts BETWEEN to_date('11/12/2012 00:00:00','mm/dd/yyyy hh24:mi:ss')
AND to_date('12/11/2012 23:59:59','mm/dd/yyyy hh24:mi:ss')
and cd.state in (17) -- Cancelled
and od.order_affiliate_name = 'DIRECTV')

I am trying to match the subquery data with the data in the 1st query and I received an error message that I am missing an expression, I am not sure what to do at this point, assistance would be greatly appreciated.
Error at Line: 32 Column: 32Looks like line referred to is this:
(select distinct oh.partner, od.order_affiliate_name, oh.external_order_number,
cd.state   -- LINE 32, column 32 is (probably) hereI would then try to add a semi-colon to this (Thereby guessing that do not have any aubquery, but two separate queries)
c.call_disposition_lid,
r.lookup_descSo it becomes
c.call_disposition_lid,
r.lookup_desc;Making everything into:
select   h.external_order_number,
         c.call_type,
         c.call_disposition_lid,
         r.lookup_desc call_reason,
         p.user_name,
         d.reason_code_name
from     ain.impl_oh_order_header h,
         ain.sncr_ct_request c,
         ain.sncr_ct_lookup r,
         ain.sncr_reason_code_lkup d,
         ain.sncr_ssm_principal p
where        c.flex_field1 = h.transaction_id(+)
         and c.create_user_guid = p.user_id(+)
         and c.call_reason_lid = r.lookup_id(+)
         and c.call_start_time >= to_date ( '11/12/2012', 'mm/dd/yyyy')
         and c.call_start_time <= to_date ( '12/11/2012', 'mm/dd/yyyy')
group by h.external_order_number,
         p.user_name,
         d.reason_code_name,
         c.call_type,
         c.call_disposition_lid,
         r.lookup_desc;
(select distinct oh.partner,
                 od.order_affiliate_name,
                 oh.external_order_number,
                 cd.state
from  ain.impl_oh_order_header oh
       inner join ain.impl_order_data od
         on od.transaction_id = oh.transaction_id
       inner join ain.sncr_order_curr_disp cd
         on cd.transaction_id = oh.transaction_id
where      oh.created_ts between to_date ( '11/12/2012 00:00:00', 'mm/dd/yyyy hh24:mi:ss')
                              and to_date ( '12/11/2012 23:59:59', 'mm/dd/yyyy hh24:mi:ss')
        and cd.state in (17) -- Cancelled
        and od.order_affiliate_name = 'DIRECTV');Please do as following before asking questions:
Lean back,
Look at your question and
Ask yourself, does this question make sense to anybody.
In this case it should have been a NO.
On numerous occasions you have been asked to read the FAQ's "How to ask a question". - Did you ever?
Regards
Peter

Similar Messages

  • Subquery not working in 11g

    Hi all,
    We have an 11.1.0.7 instance on SLES10. And when we run following sql, it crashes.
    select decode(sum(pos),0,'H',decode(sum(hareket),0,'P','T')) from
    (select count(1) pos,0 hareket from cost.pos_hareket p where
    p.onay_eh='E' and p.is_merkez_kod='70' and
    p.tarih>='28.04.2011'
    union
    select 0,count(1) from otel.hareket h where h.tarih>='28.04.2011' and
    h.is_merkezi_kod='70' and h.belge_no not in (select
    p.belge_no from cost.pos_hareket p where p.onay_eh='E' and
    p.is_merkez_kod='70' and p.tarih>='28.04.2011' union select
    o.belge_no from otel.onburo_manuel_extra o where
    o.is_merkez_kod='70'));
    But when we run following sql, it is ok.
    select decode(sum(pos),0,'H',decode(sum(hareket),0,'P','T')) from
    (select count(1) pos,0 hareket from cost.pos_hareket p where
    p.onay_eh='E' and p.is_merkez_kod='70' and
    p.tarih>='28.04.2011'
    union
    select 0,count(1) from otel.hareket h where h.tarih>='28.04.2011' and
    h.is_merkezi_kod='70' and (h.belge_no not in (select
    p.belge_no from cost.pos_hareket p where p.onay_eh='E' and
    p.is_merkez_kod='70' and p.tarih>='28.04.2011') or h.belge_no not in (select
    o.belge_no from otel.onburo_manuel_extra o where
    o.is_merkez_kod='70')));

    ilke_altinpulluk wrote:
    the query hold up very very long time.In that case the obvious thing to do would (normally) be to run the faster query.
    In your case I am not keen on suggesting this as the two queries don't appear to be logically equivalent.
    They are hard to read in the form you've posted but one appears to be:
    select ....
    where something not in (
        select ...
        union
        select ...
    )While the second is:
    select ....
    where something not in (
        select ...
    or something not in (
        select ...
    )If my interpretation is correct, then that OR should be an AND for the queries to be logically the same.
    In the absence of any further information, I think it's likely that the first query is able to unnest the subquery, while the second query has to operate the two subqueries as filter subqueries - and the nature of your data, indexing, etc. makes one plan much more efficient than the other.
    You could try an /*+ no_unnest */ hint in the subquery of the first query to see what impact that might have.
    Regards
    Jonathan Lewis

  • Update query not working in the JDBC sender Communication channel

    Hi,
    We are working on JDBC to File scenario. As per the configuration, XI should pick the data from SQL database every 20 secs and should update the corresponding flag. We are using subquery in the select and update statement as both header and detail tables are involved.
    Now the issue is, select query is working fine but update statement is not working as expected. It is somehow updating some other records rather than doing for the ones selected by the adapter.
    Moreover logSQLstatement is also not working. Hence we are unable to identify the records which are getting updated.
    Please advise.

    Hi Rumi,
    See Question 8. Transaction Handling (Sender) in [SAP Note 831162 - FAQ: XI 3.0 / PI 7.0 / PI 7.1 JDBC Adapter|https://websmp130.sap-ag.de/sap(bD1wdCZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=831162].
    8.  Transaction Handling (Sender)
    Q: If I have the following configured in a JDBC Sender:
    Select Query:
    SELECT column FROM TABLENAME WHERE FLAG = "TRUE"
    Update Query:
    UPDATE TABLENAME SET FLAG = "FALSE" WHERE FLAG = "TRUE"
    How do I know that the JDBC adapter will not update newly added rows (rows that were
    added between the time that the SELECT and UPDATE queries were executed) that were
    not read in the initial SELECT query?
    A: The SELECT and the UPDATE are run in the same DB transaction, i.e. both statements
    have the same view on the database.
    Make sure that both statements use the same WHERE clause. An additional
    requirement for the correct operation of this scenario is the configuration of
    an appropriate transaction isolation level on the database
    (i.e., repeatable_read or serializable). You might also consider using a
    "SELECT FOR UPDATE" statement instead of a plain SELECT statement to
    ensure proper locking on the database. "SELECT FOR UPDATE"
    is not supported in MS SQL database. In this case please make use of an
    appropriate transaction isolation level on the database. For more details
    please contact your DB vendors.
    After, see Transaction Handling Issues in [SAP Note 1039779 - JDBC Adapter issues(Escape character,Transaction handling)|https://websmp130.sap-ag.de/sap(bD1wdCZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1039779].
    Best Regards.
    Pedro Baroni

  • Order by in MATERIALIZED VIEW not work successfully with first column (ID)

    Dears,
    I am trying to create a Materialized View as below:
    CREATE MATERIALIZED VIEW HR.MV_EMP
    PCTFREE 10
    MAXTRANS 255
    TABLESPACE users
    STORAGE (
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    BUILD IMMEDIATE
    REFRESH ON DEMAND
    AS
    SELECT *
    FROM employees
    where rownum < 5000 order by employee_id desc ;But while querying the MATERIALIZED VIEW, it did not work successfully as the data did not appear in the accurate order.
    I tried to create the same MATERIALIZED VIEW but order by another column (Column Date), it worked successfully and the data appeared in the accurate order.
    It means that MATERIALIZED VIEW not work successfully with the first column (id).
    Can you please help me in this ?
    Thanks & regards,,

    A few pointers :
    1. As has been pointed out, the ROWNUM has been incorrectly placed. ROWNUM values are assigned as rows are fetched from the source before the ORDER BY. You need to ORDER BY first (in a SubQuery) and then ROWNUM afterwards (outside the SubQuery).
    2. I wonder why you want only the last 5000 EMPLOYEE_IDs. What if Employee_ID 1 is still an active employee (he is the founder, first employee and CEO ?). There could be very many "low" EMPLOYEE_IDs that are still active.
    3. Logically I would expect some filter other than the ROWNUM ... ORDER BY to be used to select candidate rows. Then, an ORDER BY in the CREATE query would be unnecessary.
    4. When querying the Materialized View you must explicitly ORDER BY (irrespective of whether you did or did not do an ORDER BY in the CREATE ...)
    5. How do you expect to refresh the MV ? Will it always be a COMPLETE Refresh ? Remember that your "5000 employees" filter would likely exclude older employees at the next refresh. If you use some other filter, it should be consistent across all refreshs.
    Hemant K Chitale

  • Problem in SQL with CURSOR( ) ,Why the CURSOR did not work?

    hi All:
    I have a problem in SQL with CURSOR.
    The data is as the attachments.
    Here is the SQL statement as follow:
    SELECT A.WADCTO,A.WADOCO,B.IGCOST,CURSOR (SELECT X.IGLITM
    FROM F3102 X
    WHERE X.IGDOCO=A.WADOCO
    AND X.IGCOST IN ('B1','D1','C3')) AS DETAIL
    FROM F4801 A INNER JOIN F3102 B ON A.WADOCO=B.IGDOCO AND A.WADCTO=B.IGDCTO AND B.IGCOST>' '
    WHERE A.WADOCO='10004'
    The statement above returns records as follow:
    WADC WADOCO IGCOST DETAIL
    WO 10004 A1 CURSOR STATEMENT : 4
    CURSOR STATEMENT : 4
    IGLITM
    1KV90CPG2
    1KV90CPG2
    1KV90CPG2
    But, after I add one statement in the subquery, there is no record returned from CURSOR.
    Here is the SQL statement:
    SELECT A.WADCTO,A.WADOCO,B.IGCOST,CURSOR (SELECT X.IGLITM
    FROM F3102 X
    WHERE X.IGDOCO=A.WADOCO
    AND X.IGCOST=B.IGCOST
    AND X.IGCOST IN ('B1','D1','C3')) AS DETAIL
    FROM F4801 A INNER JOIN F3102 B ON A.WADOCO=B.IGDOCO AND A.WADCTO=B.IGDCTO AND B.IGCOST>' '
    WHERE A.WADOCO='10004'
    The statement above returns records as follow:
    WADC WADOCO IGCOST DETAIL
    WO 10004 A1 CURSOR STATEMENT : 4
    CURSOR STATEMENT : 4
    no rows selected
    Why the CURSOR did not work?
    The database version is Oracle Database 10g Release 10.2.0.4.0 - 64bit Production.
    F3102 DATA:
    IGDOCO     IGDCTO     IGLITM     IGCOST
    10004     WO     1KV90CPG2      A1
    10004     WO     1KV90CPG2      B1
    10004     WO     1KV90CPG2      C3
    10004     WO     1KV90CPG2      D1
    F4801 DATA:
    WADCTO     WADOCO
    WO     10004
    Edited by: user2319139 on 2010/3/2 上午 1:17
    Edited by: user2319139 on 2010/3/2 上午 1:20

    Why this structure and not a join?
    The cursor() function returns a cursor handle that needs to be processed - in other words, the client needs to fetch data from it. The Oracle® Database SQL Reference+ (http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/expressions005.htm#i1035107) describes it as being equivalent to a ref cursor handle.
    Thus why are you creating ref cursor handles as a column in a SQL projection - where each row will have a "+nested+" ref cursor handle to process. What problem are you attempting to hack solve this way?

  • Subquery not allowed - PL/SQL Function Body returning bolean

    Is subquery is not allowed in PL/SQL Expresion.????
    I am using the following query in one of my derived report column but I am getting the error.
    BEGIN
    if :COL1<>'abc' and :COL2 in (select deptno from dept1) then
    return 1;
    elsif :COL1<>'abc' and :COL2 in (select deptno from dept2) then
    return 0;
    elsif :COL1<>'abc' and :COL2 in (select deptno from dept3) then
    return 1;
    else
    return 0;
    end if;
    END;
    secondly CAN I use return value such as 'ABC' or 'XYZ' other than 0,1.
    Error-
    Invalid function body condition: ORA-06550: line 4, column 8: PLS-00405: subquery not allowed in this context ORA-06550: line 2, column 3: PL/SQL: Statement ignored
    -----------------

    Hi Deepak,
    There are at least methods.
    1 - You could create a SQL function that returned 0 or 1 and use that in your statement
    2 - You could use a CASE clause in the SQL statement
    As I don't have your dept1/2/3 tables, I've tried the following on the sample EMP/DEPT tables:
    SELECT EMPNO,
    ENAME,
    SAL,
    COMM,
    DEPTNO,
    CASE WHEN DEPTNO IN (SELECT DEPTNO FROM DEPT) THEN
      CASE WHEN ENAME LIKE '%A%' THEN NVL(SAL,0) + NVL(COMM,0) ELSE 456 END
    ELSE
       CASE WHEN DEPTNO NOT IN (SELECT DEPTNO FROM DEPT) THEN
         CASE WHEN ENAME LIKE '%A%' THEN NVL(SAL,0) + NVL(COMM,0) ELSE 123 END
       ELSE
         789
       END
    END "TOTAL"
    FROM EMPThis returns the values I expect:
    EMPNO     ENAME     SAL     COMM     DEPTNO     TOTAL
    7936     ATD     3000     -      40     3000
    7958     dino4     -      -      -      789
    7839     KINGS     5000     -      40     456
    7698     BLAKES     2850     -      30     2850
    7782     CLARK     2450     -      10     2450
    7566     JONES     2975     -      30     456
    7788     SCOTT     3000     -      20     456
    7902     FORD     3000     -      40     456
    7369     SMITH     800     -      20     456
    7499     ALLEN     1600     300     30     1900Obviously, you may have to experiment with the various CASE statements, but it will work using just a sql select statement.
    Andy

  • SQL Statement not works using functions or subqueries-MAXDB

    Hello All,
    I created an ABAP program to select information about country(table: T005) with the country names (Table: T005T). I tried to create a sql query with a sql subquery to select everything but for some reason that I don't know it doesn't work. Please find the query below.
    DATA:
    resu        TYPE REF TO cl_sql_result_set ,
    stmt         TYPE REF TO cl_sql_statement ,
    qury        TYPE string .
               qury  = `SELECT land1, spras, `
               &&       `(SELECT landx `
               &&         `FROM SAPNSP.T005T `
               &&         `WHERE mandt = '` && sy-mandt && `' `
               &&           `AND spras = 'EN' `
               &&           `AND land1 = ? ), `
               &&       `(SELECT natio `
               &&         `FROM SAPNSP.T005T `
               &&         `WHERE mandt = '` && sy-mandt && `' `
               &&           `AND spras = 'EN' `
               &&           `AND land1 = ? ) `
               &&        `FROM SAPNSP.T005 `
               &&        `WHERE mandt = '` && sy-mandt && `' `
               &&          `AND land1 = ? `
               &&        `GROUP BY land1, spras` .
    resu = stmt->execute_query( qury ) .
    Well, the query above works but the fields LANDX and NATIO are in blank in ALL THE CASES, even with information registred in table T005T.
    So, exploring the SDN forum and after read some documents regarding ADBC, I create a function to handle this sql select and get the correctly the missing informations, but, still don't work. Please find the function below:
    CREATE FUNCTION select_landx (land1 CHAR(3)) RETURNS CHAR(15)
    AS
      VAR landx CHAR(15);
      DECLARE functionresult CURSOR FOR
      SELECT spras, land1, landx
         FROM SAPNSP.t005t
         WHERE spras = 'EN'
             AND land1 = :land1;
         IF $count IS NULL THEN <- | $count is always 0, my SELECT
           BEGIN                                 it's not work but I don't know why
             CLOSE functionresult;
             RETURN NULL;
           END
         ELSE
           SET $rc = 0;
           WHILE $rc = 0 DO
           BEGIN
             FETCH functionresult INTO :landx;
           END;
         CLOSE functionresult;
         RETURN landx;
    Calling the function in a SQL statement:
    DATA:
    resu        TYPE REF TO cl_sql_result_set ,
    stmt         TYPE REF TO cl_sql_statement ,
    qury        TYPE string .
               qury  = `SELECT land1, spras, select_landx(?) landx `
               &&        `FROM SAPNSP.T005 `
               &&        `WHERE mandt = '` && sy-mandt && `' `
               &&          `AND land1 = ? `
               &&        `GROUP BY land1, spras` .
    resu = stmt->execute_query( qury ) .
    Any comments ?
    Best regards,
    Arthur Silva

    Hello,
    Thank's a lot, it works. It's funny because the given solution works using only abap codes.
    It may be happens because the abap interpretor send the sql statement to the db interface that handle the code in the another way.
    Thanks again, it was driving me crazy.
    Best regards,
    Arthur Silva

  • Export will not work - sample query pasted

    I have a complex query whose result needs to be exported into xls format. The export will simply not work. Right-Clicking on the result grid and selecting Export Data > any format will simply do nothing. A simplified version of the code is pasted below:
    SELECT
    CASE WHEN 'TODAY' = 'TODAY'
    THEN
    (SELECT 'TOMORROW' FROM DUAL)
    ELSE 'TODAY'
    END TEST1
    FROM DUAL;
    While this version works as expected:
    SELECT
    CASE WHEN 'TODAY' = 'TODAY'
    THEN
    'TOMORROW'
    ELSE 'TODAY'
    END TEST1
    FROM DUAL;
    Any idea why?
    Version:
    =====
    CVS Version     Internal to Oracle SQL Developer (client-only)
    Java(TM) Platform     1.5.0_06
    Oracle IDE     1.5.4.59.40
    Versioning Support     1.5.4.59.40

    Oh yeah, that's what I've found too. It seems that any query that includes a subquery cannot be exported. The error message I get differs based on the query, but it appears that when it re-runs the query to export the data it doesn't always see the "outer" query, or not all of it anyway. I'll get error messages like "invalid identifier" or "not a GROUP BY expression" when the query runs perfectly fine in the SQL worksheet. Or sometimes I don't get an error, it just doesn't pop up the "Export Data" parameters dialog.
    One workaround if your result set is small is to select all the cells in the query results data grid by clicking and dragging, and then you can copy and paste into Excel. Or, as mentioned above, create a view with your complex query and then just do a "select * from viewname" and export that.
    I sure hope this gets fixed in the next release.

  • Not work tablet UI on Prestigio 5080 PRO tablet

    I read that browser.ui.layout.tablet = "1" can fix this problem. But it not works. I can work only in pnone interface that is not good for my 8'' tablet.

    Would it be possible for you to share the problematic pdf and OS information  with us at [email protected] so that we may investigate?
    Thanks,
    Adobe Reader Team

  • Why self-defined access sequences of free goods can not work?

    Hi gurus,
    I have maintained access sequences of free goods self-defined.but when i creat the SO it does not work!
    when i used the standard access sequences ,it is OK .
    Can anybody tell me why?
    thanks in advance

    Dear Sandy,
    Go to V/N1 transaction select your self defined access sequence then go in to the accesses and fields and check all fields are activated.
    Make sure that these fields are flowing in your sales order.
    I hope this will help you,
    Regards,
    Murali.

  • Adobe bridge raw not working with windows vista in photoshop cc, why?

    adobe bridge raw not working in photoshop cc, is there a fix?

    Your sure your using photoshop cc on windows vista?
    I was under the impression that photoshop cc would not even install on windows vista.
    What version of camera raw do you have?
    In photoshop under Help>About Plugin does it list Camera Raw and if so which version is it?
    (click on the words Camera Raw to see the version)
    Camera raw doesn't work if it's a camera raw file or some other file type such as jpeg or tif?
    What camera are the camera raw files from?
    Officially camera raw 8.3 is the latest version of camera raw that will work on windows vista.

  • Adobe Bridge CS5 in windows 7 not working?

    Adobe Bridge CS5 in windows 7 not working. I was using bridge perfectly for last 2 years. It stops working since 3 days. I tried to install updates. Showing some error to install.
    Tried to install creative cloud..again some error. Error code : 82
    Could you please advice how I can fix my adobe bridge.

    https://www.youtube.com/watch?v=xDYpTOoV81Q&feature=youtu.be
    please check this video I uploaded..this is what happens when I click adobe bridge.. just blinks and go off. bridge not working on task manager

  • ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • Partner application logoff not working

    We have a partner application registered with sso with custom login screen. The login works fine. We use the following code to logoff the partner application in logoff.jsp
    response.setHeader("Osso-Return-Url", "http://my.oracle.com" );
    response.sendError(470, "Oracle SSO");
    session.invalidate();
    but the logoff is not working properly. It is not invalidating the session and the logout http request is not going from the application server to the sso server.
    Are there any additional configurations for SSO logoff.Any help is appreciated.
    Thanks

    Hi
    The WF should also trigger if i add the Partner function in UI.If i change any Attribute the WF triggers but i dont want to change the attribute when i add the partner function.
    If i have only one event for WF that is Partner Change the WF will not trigger it for the 1st time when i save the UI. But next i come to the same saved doc and add a partner function then the Wf triggers.
    So this means that Partner change is active.
    the issue here is i need to trigger the WF on , the 1st time i save the UI, for which i wil be using Attribute Change and next time when i come back to saved doc the and add only the partner function and no changes are made to attributes the WF should again trigger.
    Thanks
    Tarmeem

  • IPhone 4 Voice Memos not working/saving

    Hi there,
    I'm having trouble with my voice memos too. Up until yesterday they were working fine and now, even though the record button works, the stop button does not and I can only pause them. Worse again is that the button to go into the menu to view all voice memos is not working so I can't play them from my iPhone and nothing new is saving to my iTunes. Please help!

    I've always had the "Include Voice Memos" option selected. I think that only pertains to syncing voice memos from iTunes to the iPhone after it has been copied to iTunes. It has to be the new OS/iTunes not communicating that new memos have been recorded. For some reason they won't sync when I want them to, and then a few syncs later they magically appear.
    By the way, I'm VERY comfortable with the iTunes and iPhone systems. I've been using iTunes for 5 years, and I've been recording class lectures with the iPhone voice memo app (and another app) for a couple years. It's not an error of not seeing that the memos were added; they don't exist in my library or music folders.
    JUST OUT OF CURIOSITY, POST WHICH FIRMWARE YOU ARE RUNNING EXACTLY!!!
    I'm on an iPhone 4, running firmware 4.0.1

Maybe you are looking for

  • Handbrake / MediaFork

    Can someone please tell me what the settings are for to make my tv shows / movies encode in widescreen for my 42" widescreen. I keep getting big black lines left and right of the movie Thanks in advance

  • FF707 on FB60 t-code

    Hello experts, we have a problem with the FB60 t-code. The error FF707 occurs when we try to post an invoice where the manual tax amount is correct, but the system advises an incorrect approximation. We have implemented the SAP Note number 944978 but

  • Archive documents not displaying in FPL9

    Hi gurus We archived BPs and documents on it most of this BP have many contract accounts, but FPL9 sem to be showing only one contract account documents. Have any experience this? regards

  • Check Your Macy's Accounts!?!

    I know that I didn't request a Major Purchase account with Macy's (only Bloomie's), so I was a bit surprised to see it listed on my page this morning with my other account types. I called in to see what was up and the agent told me I had a $3000 CL a

  • MeetingPlace 6 to 7, Profile Number Question

    We are planning to upgrade from MeetingPlace 6 to 7.1. We use our 6 digit employee number for the MP6 profile number, it is imported from our ldap directory.  We want to continue using this in MP7.  Can we migrate the old profile number over when we