SAP SQL: Show Invoices and Credits in one table

Hi,
iam searching for a query wich show invoces and credits as negative amount. How is that realisable?
Example:
Customer
ZIPCODE
ITEMCODE
DESCRIPTION
SHIP
Price after discount
total price
freetext
quantity
Example 1
45449
5464
something 1
01.01.2015
20
40
text
2
Example 2
654564
65465
something special
15.02.2015
-10
-20
text
2
SELECT T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], (T1.[Price] * T1.[Quantity]), T1.[FreeTxt], T1.[Quantity] FROM OINV T0  INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OCRD T2 ON T0.CardCode = T2.CardCode INNER JOIN CRD1 T3 ON T2.CardCode = T3.CardCode WHERE CONVERT(nvarchar(8), T1.ShipDate, 112) BETWEEN '[%FromDate]' AND '[%ToDate]' GROUP BY T0.[DocNum], T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], T1.[FreeTxt], T1.[Quantity]
??UNION ALL?? AND?  MINUS - ???
SELECT T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], (T1.[Price] * T1.[Quantity]), T1.[FreeTxt], T1.[Quantity] FROM ORIN T0  INNER JOIN RIN1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OCRD T2 ON T0.CardCode = T2.CardCode INNER JOIN CRD1 T3 ON T2.CardCode = T3.CardCode WHERE CONVERT(nvarchar(8), T1.ShipDate, 112) BETWEEN '[%FromDate]' AND '[%ToDate]' GROUP BY  T0.[DocNum], T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], T1.[FreeTxt], T1.[Quantity]
Who can help??

Hi,
Try this query:
SELECT T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], (T1.[Price] * T1.[Quantity]), T1.[FreeTxt], T1.[Quantity] FROM OINV T0  INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OCRD T2 ON T0.CardCode = T2.CardCode INNER JOIN CRD1 T3 ON T2.CardCode = T3.CardCode WHERE CONVERT(nvarchar(8), T1.ShipDate, 112) BETWEEN '[%FromDate]' AND '[%ToDate]' GROUP BY T0.[DocNum], T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], T1.[FreeTxt], T1.[Quantity]
UNION ALL
SELECT T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], -(T1.[Price] * T1.[Quantity]), T1.[FreeTxt], -T1.[Quantity] FROM ORIN T0  INNER JOIN RIN1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OCRD T2 ON T0.CardCode = T2.CardCode INNER JOIN CRD1 T3 ON T2.CardCode = T3.CardCode WHERE CONVERT(nvarchar(8), T1.ShipDate, 112) BETWEEN '[%FromDate]' AND '[%ToDate]' GROUP BY  T0.[DocNum], T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], T1.[FreeTxt], T1.[Quantity]
Thanks & Regards,
Nagarajan

Similar Messages

  • Want option to view Invoices and credits separately when matching payment

    We are having difficulty when Trying to reconcile/match a high volume customer payment. There can often be hundreds of invoices and credits. They show our full original invoice and full credit on their remittance.This makes it very difficult to reconcile our invoices when a credit has been raised based upon it. Apparently Sage does this.
    I have logged with SAP but must raise a DRQ ( Development Request) as the function is not there.
    Has anyone else had similar experience with 2007A or a solution to this?
    Thanks in advance
    Derek Melville

    Hello Derek,
    thank you for your comment.
    Do you mean Internal Reconciliation screen or Banking module?
    Best Regards,
    Martin Slavik
    SAP Business One Solution Manager

  • Capture from Two Tables and Apply in one Table

    Hi All,
    Is it possible to capture from two tables (master and child table) and apply in one table?
    For example,
    1. DEPT and EMP tables in source database with relation
    DEPT table structure is like DEPT_ID, DEPT_NAME, LOC_NAME
    EMP table structure is like EMP_ID, EMP_NAME, EMP_DOJ, EMP_SAL, DEPT_ID
    2. EMP_DEPT_STAGING in destination database
    EMP_DEPT_STAGING table structure is like EMP_ID, EMP_NAME, EMP_DOJ, EMP_SAL, DEPT_ID. DEPT_NAME, LOC_NAME
    if there is any update in DEPT table, EMP_DEPT_STAGING should get populated with Department and its employee details. Similarly, if there is any update in EMP table EMP_DEPT_STAGING table should get populated with Employee details and along with department detail.
    Is it possible to accomplish this? If yes, could you please provide me some examples?
    Thanks & Regards
    Thiyagu
    Edited by: mt**** on Sep 4, 2011 11:22 PM

    like this
    INSERT @PlantNew  (PlantID, PlantName, PlantDirExists, PlantAssistantDirID, PlantDirID) 
    SELECT p.PlantID,
    p.PlantName,
    CASE WHEN pd.PlantID IS NULL THEN 0 ELSE 1 END,
    PlantAssistantDirID,
    PlantDirID
    FROM @Plant p
    LEFT JOIN (SELECT PlantID,
    MAX(CASE WHEN Assistant = 1 THEN PlantDirectorID END) AS PlantAssistantDirID,
    MAX(CASE WHEN Assistant = 0 THEN PlantDirectorID END) AS PlantDirID
    @PlantDirector
    GROUP BY PlantID)pd
    ON pd.PlantID = p.PlantID
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs
    You're missing a FROM
    insert into @PlantNew
    SELECT p.PlantID,
    p.PlantName,
    CASE WHEN pd.PlantID IS NULL THEN 0 ELSE 1 END,
    PlantAssistantDirID,
    PlantDirID
    FROM @Plant p
    LEFT JOIN (SELECT PlantID,
    MAX(CASE WHEN Assistant = 1 THEN PlantDirectorID END) AS PlantAssistantDirID,
    MAX(CASE WHEN Assistant = 0 THEN PlantDirectorID END) AS PlantDirID
    from @PlantDirector
    GROUP BY PlantID)pd
    ON pd.PlantID = p.PlantID

  • Dimension only query to show manager and employees in one row

    Hi Gurus,
    I am creating a dimension only report. This report will show managers and their direct reportees. Since one manager can have several employees working under him, I am getting one row in the report for each employee. But our end users want employees to appear as comma seperated value for the manager. Thus each manager will have one and only one record in the report
    Current
    ======
    Manager Employee
    M1     E1
    M1     E2
    M1     E3
    Expected
    =======
    Manager Employee
    M1     E1, E2, E3
    Env : OBIEE 10.1.3.4 & Oracle 10.2.0.3.0
    Thanks for your help in advance

    Google ask Tom for string aggregation - there is a listagg equivalent available there, create on your DB then follow the same principal as the listagg / evaluate example.
    regards,
    Robert.

  • How to show English and Arabic in one JTextPane

    Hi,
    Does anyone know how to display English and Arabic in one JTextPane? For English the orientation is left to right while it's right to left for Arabic. So the result might be like:
    hello                    
                سالتك ليتم الرد 
    bye                                             Thanks!
    Alex
    Edited by: alex_46 on Aug 31, 2009 7:54 AM
    Edited by: alex_46 on Aug 31, 2009 7:56 AM

    I think you should be able to do it like this (very psuedo):
    set the pane type to html,
    for your text, have a String with something like:
    <html>
    <div align="left">english</div>
    <div align="right">arabic</div>
    </html>I don't know the exact html for this but something like the above.
    Then set the whole string into your pane.
    patumaire

  • Creating SQL-Loader script for more than one table at a time

    Hi,
    I am using OMWB 2.0.2.0.0 with Oracle 8.1.7 and Sybase 11.9.
    It looks like I can create SQL-Loader scripts for all the tables
    or for one table at a time. If I want to create SQL-Loader
    scripts for 5-6 tables, I have to either create script for all
    the tables and then delete the unwanted tables or create the
    scripts for one table at a time and then merge them.
    Is there a simple way to create migration scripts for more than
    one but not all tables at a time?
    Thanks,
    Prashant Rane

    No there is no multi-select for creating SQL-Loader scripts.
    You can either create them separately or create them all and
    then discard the one you do not need.

  • Fetch data from two tables and insert into one table

    I have similar to the following data in two tables (@Plant, @PlantDirector) and need to consolidate into one table (@PlantNew) as follows.
    DECLARE @Plant TABLE (PlantID INT, PlantName VARCHAR(100))
    INSERT INTO @Plant (PlantID, PlantName) VALUES (1, 'Name One'),(2, 'Name Two'),(3, 'Name Three'),(4, 'Name Four'),(5, 'Name Five'),(6, 'Name Six')
    Director data for the Plants exist in the following table. Assistant value 1 means Assistant Director and 0 means Director. 
    Data exists only for subset of plants and a Plant may have one or both roles.
    DECLARE @PlantDirector TABLE (PlantID INT, PlantDirectorID INT, Assistant bit)
    INSERT INTO @PlantDirector (PlantID, PlantDirectorID, Assistant) VALUES (2, 111, 1),(2, 222, 0),(4, 333, 0),(6,444,1)
    The above data needs to be inserted into one table (@PlantNew) as follows: 
    PlantID in @Plant table is IDENTITY value and needs to be inserted as-is into this table.
    PlantDirExists will get a value of 1 if at least one record exists in @PlantDirector table for a PlantID. PlantAssistantDirID and PlantDirID should be set to the corresponding PlantDirID or NULL appropriately depending on the data.
    DECLARE @PlantNew TABLE (PlantID INT, PlantName VARCHAR(100), PlantDirExists bit, PlantAssistantDirID INT, PlantDirID INT)
    INSERT INTO @PlantNew (PlantID, PlantName, PlantDirExists, PlantAssistantDirID, PlantDirID)
    VALUES (1, 'Name One', 0, NULL, NULL),(2, 'Name Two', 1, 111, 222),(3, 'Name Three', 0, NULL, NULL),(4, 'Name Four', 1, NULL, 333),(5, 'Name Five', 0, NULL, NULL),(6, 'Name Six',1, 444, NULL)
    How do I achieve the above using SQL ? Thanks.

    like this
    INSERT @PlantNew  (PlantID, PlantName, PlantDirExists, PlantAssistantDirID, PlantDirID) 
    SELECT p.PlantID,
    p.PlantName,
    CASE WHEN pd.PlantID IS NULL THEN 0 ELSE 1 END,
    PlantAssistantDirID,
    PlantDirID
    FROM @Plant p
    LEFT JOIN (SELECT PlantID,
    MAX(CASE WHEN Assistant = 1 THEN PlantDirectorID END) AS PlantAssistantDirID,
    MAX(CASE WHEN Assistant = 0 THEN PlantDirectorID END) AS PlantDirID
    @PlantDirector
    GROUP BY PlantID)pd
    ON pd.PlantID = p.PlantID
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs
    You're missing a FROM
    insert into @PlantNew
    SELECT p.PlantID,
    p.PlantName,
    CASE WHEN pd.PlantID IS NULL THEN 0 ELSE 1 END,
    PlantAssistantDirID,
    PlantDirID
    FROM @Plant p
    LEFT JOIN (SELECT PlantID,
    MAX(CASE WHEN Assistant = 1 THEN PlantDirectorID END) AS PlantAssistantDirID,
    MAX(CASE WHEN Assistant = 0 THEN PlantDirectorID END) AS PlantDirID
    from @PlantDirector
    GROUP BY PlantID)pd
    ON pd.PlantID = p.PlantID

  • Parked MM invoice and multiple account assignments (table RBCO) ?

    Hi.
    Could someone please explain how the table RBCO works for parked MM invoice and multiple account assignments.
    What I have observed in this table are:
    1. Every position (table RSEG)  in the invoice can have several lines (table RBCO) with account assignment.
    2, If there is only one record for a position, the key in the table RBCO starts with 0002, field RBCO-COBL_NR (???)
    3. IF I add one more line to the psoition, the first line CHANGES the key in table RBCO from 0002 to 0001 and the second line gets RBCO-COBL_NR = 0002
    4. The third line gets 0003.
    5. If i delete line 1-2, the remaining one line gets a new key feild RBCO-COBL_NR = 0002.
    The reason for understanding how this works is that i need to make a Z-table storing the history of changes done to records in table RBCO (..don’t ask why...)
    Lest say, I make a change for in an invoice for one of the positions, how do I compare the values in the itab, YDRSEG[]-CO[]- with the lines in table RBCO ?
    And whats the logic for the key in table RBCO?
    Please advice, Tom

    -

  • Best Practice to fetch SQL Server data and Insert into Oracle Tables

    Hello,
    I want to read sqlserver data everry half an hour and write into oracle tables ( in two different databases). What is the best practice for doing this?
    We do not have any database dblinks from oracle to sqlserver and vice versa.
    Any help is highly appreciable?
    Thanks

    Well, that's easy:
    use a TimerTask to do the following every half an hour:
    - open a connection to sql server
    - open two connections to the oracle databases
    - for each row you read from the sql server, do the inserts into the oracle databases
    - commit
    - close all connections

  • Implement the Logic in Mapping to select, compare and update on one table

    Hi All,
    We have a Sales Order history table *(HISTORY_TABLE)* and we want implement the below logic in warehouse builder where we are using only one table for checking the condition and selecting the records to update in the HISTORY_TABLE.
    Like
    SELECT ORDERNO, LINENO, ORDERTYPE FROM HISTORY_TABLE A
    WHERE EXISTS IN (SELECT ‘X’
    FROM HISTORY_TABLE B
    WHERE A. ORDERNO = B. ORDERNO
    AND   A. LINENO = B. LINENO
    AND   A.ORDERTYPE = B. ORDERTYPE
    HAVING MAX (B.PDDJ) = 0)
    Thanks in advance.

    Hi,
    you can implement this as
    SELECT A.ORDERNO, A.LINENO, A.ORDERTYPE FROM HISTORY_TABLE A,
    (SELECT ORDERNO,LINENO,ORDERTYPE FROM HISTORY_TABLE GROUP BY ORDERNO,LINENO,ORDERTYPE HAVING MAX(PDDJ) = 0) B
    WHERE A.ORDERNO = B.ORDERNO
    AND A.LINENO = B.LINENO
    AND A.ORDERTYPE = B.ORDERTYPE Use Aggregator (group by with having) and then Joiner
    Regards,
    Oleg

  • Tree: Multiple parents and offsprings from one table in just one tree.

    Hello,
    I have a table similar to this one,
    CREATE TABLE "TABLE_ONE"
    (     "MATERIAL_ID" NUMBER,
    "MATERIAL_NAME" VARCHAR2(80),
         "PARENT_ID1" NUMBER,
         "PARENT_ID2" NUMBER,
         "OFFSPRING_ID1" NUMBER,
         "OFFSPRING_ID2" NUMBER,
         "OFFSPRING_ID3" NUMBER,
         "OFFSPRING_ID4" NUMBER,
         CONSTRAINT "TABLE_ONE_PK" PRIMARY KEY ("MATERIAL_ID") ENABLE
    And I need to generate a tree based on the following assumption:
    There's a relation of 2 parents to several new other materials depending on the combination.
    But the tree should be like:
    A & B generate c,d,e,f,h, (but not i), and
    C & I generate j,l,m,n, (but not k), and so on....
    J & K generate p,q,rm, etc....
    How can I create a dynamic tree with two parents and several offsprings from just one table?
    With the following tree query I get only the PARENT_ID1 side.
    select "MATERIAL_ID" id,
    "PARENT_ID1" pid,
    "MATERIAL_NAME" name,
    'f?p=&APP_ID.:Pxn:&SESSION.::NO::Pxn_MATERIAL_ID:'||"MATERIAL_ID" link,
    null a1,
    null a2
    from "#OWNER#"."TABLE_ONE"
    And I need to get all parents and all offspring materials in the same tree.
    Could you please give me a clue?
    Thanks,
    NJ

    Hi Raje,
    One solution would be to do a UNION ALL:
    select "MATERIAL_ID" id,
    "PARENT_ID1" pid,
    "MATERIAL_NAME" name,
    'f?p=&APP_ID.:Pxn:&SESSION.::NO::Pxn_MATERIAL_ID:'||"MATERIAL_ID" link,
    null a1,
    null a2
    from "#OWNER#"."TABLE_ONE"
    UNION ALL
    select "MATERIAL_ID" id,
    "PARENT_ID2" pid,
    "MATERIAL_NAME" name,
    'f?p=&APP_ID.:Pxn:&SESSION.::NO::Pxn_MATERIAL_ID:'||"MATERIAL_ID" link,
    null a1,
    null a2
    from "#OWNER#"."TABLE_ONE"
    This should give you all of the values but it will be a single tree
    Regards
    Andy

  • Plant to Plant STO with excise invoice and taxes in one company code

    Hi,
    I have a new business requirement, we want to create only one company code and 12 plants in different states,  each plant will have separate purchasing and sales activity this is ok this can be done with separate excise and series group as ther will not be any issue for purchsing and saling of materisl with exice in each plant , but how we can transfer the material plant to plant  if the plant is in different states we want that the material should be transfer from palnt to plant  with excise invoice only,  as we have the company code common,  how to create the billing document for this, and how to pass the duty from the saling plant and capture the same in the recieving plant. with proper tax entry. Can we do the STO with biiling if the two plants are in single compnay code.
    regards,
    zafar

    hi,
    I am trying to create a Stock Transport Order (STO) with document type UB and item category U. My objective is to transfer material from Plant (supplying plant) 100 to Plant (receiving plant) 1100 within one company code (1000) with STO.
    For this purpose I created a raw material 1434 in plant 1000 with sales org 1 view and in that view entered in delivering plant field 1000 as delivery plant. After that I extended material 1434 to plant 1100 without changing anything what I did while creating the material first in Plant 1000 except in organizational level I entered 1100 in the plant field. I entered Sales org 1000 and distribution channel 10 in organization level for both plant while creating and extending the material. In me21n I chose Stock Transport Order with document type UB and item category as U also receiving Plant as 1100. With this when I tried to save the STO the message, I am getting an error,  Cannot determine shipping data for the material 1434? 
    I am doing solely mm function why I need to create Customer master? In this case plant 1100 is the customer right? 
    Solution:
    1. Mat.(1434) should be maintained in both the plants. (1000&1100).
    2. Should have enough stock in supplying plant(1000).
    3. Make its supplying plant as a vendor in vendor master record in receiving plant(1100).
    4. Make it receiving plant as a customer in customization.  
        Create customer (xd01) & and define the shipping data for plants in both the plants.
        Path: spro u2013 img u2013 m.mgmt u2013 purchasing u2013 po u2013 set up STO u2013 define shipping data (1 by1 )
        In Receiving plant (1100)                         In Supplying plant (1000)
        Customer num.  123345 (for ex.)              Customer num.  -
    (don't fill) 
        Sales org.yyy                                                  
        Dist. Channel                                                              
        Sales div.  y   
    5. Assign doc. Type is "NL" for intra company STO. If  STO is inter company, Assign doc. Type is "NLCC".
        Position doc type is "UB"
        Enter supplying plant(1000) & doc type (NL) & checking rule (ex:01)
    6. Assign doc. Type is "UB" to u'r plants.(PO)
        Go for new entries 
        Enter supplying plant(1000) & Receiving plant (1100) & doc type (UB).
    7. Create a PO, choose the doc type is `UB' & item cat.'U', Enter supplying plant as a vendor in PO  of the receiving plant(1100).
    8. Provide this num (PO) to SD people, they will do the delivery by using transactional code is VL10B.
    9. Sales people they will provide "out bound delivery num".
    10. Do the GR. In GR the second tab 05 out bound delivery instead of PO mov.type 101.
    11. See the stock over view in the receiving & supplying plants.  
    thanking you

  • SAP R/3 invoices and payments dates

    Hi,
    I would like to know what is exactly the difference between the following dates
    for invoices in SAP R/3:
    RUN ON DATE
    DOCUMENT DATE
    POSTING DATE
    and for the payments:
    RUN ON
    POST DATE
    VALUE DATE
    thanks,
    Anna

    kindly note the following:
    RUN ON DATE  - is the date of execution
    DOCUMENT DATE - is the date of the document
    POSTING DATE - is the date on which you want posting to happen, the posting period is picked based on this date.
    RUN ON - the date on which the payment is being done.
    POST DATE - is the date on which you want posting to happen, the posting period is picked based on this date.
    VALUE DATE - Implies the date on which the value will be effected, e.g. if INR 100 is paid today with value date 10 days later, then the system reduces balance as per the value date, this is used more in banking parlance.
    regards
    eashwar

  • Is it possible to show live and vod in one stream?

    hello
    i am playing here with fms i want to make a sort of home
    tv-channel
    i have created ".swf-tv_set" for the end user wich connects
    to my server
    the question is: what techniques should i use (on server-side
    maybe) to control what type of data (live or vod) is being streamed
    to the user? i have also created "director's swf" to switch between
    output data, but how can i switch live/vod in one stream, to which
    the user is already connected?
    thank you in advance.

    Hi mexxik,
    To switch between VOD and LIVE, you 're advised to code it at
    the SSAS as long as the LIVE stream is not coming from Flash Media
    Encoder.
    The SSAS could be something like below:
    application.userStream= Stream.get("currentStream");
    application.userStream.setBufferTime(0);
    application.userStream.play(videoSignal2,-1);
    Sidney

  • SQL Loader - read 1st line to one table, rest of data to another

    Hi
    I looked around the FAQs and forums and find similar cases but not mine...
    I am running Oracle 9i and have a text file which has the 1st line as a control header and everything beneath it as data, something like this:
    14/07/2010|8
    12345678|0
    12345679|0
    12345680|10.87
    12345681|7655.8
    12345682|100
    12345683|0
    12345684|-90.44
    12345685|0
    The first (header) line has a date field and a counter (the number of records expected beneath it)
    The rest of the data is an account number and balance.
    Since SQL Loader is invoked outside of Oracle (Unix in my case) I assume I should create two tables, such as:
    Create table
    TIF_CURRENT_BALANCE_DTL
      ACCOUNT_REF_NO   VARCHAR2(30),  
      BALANCE_AMT      NUMBER(12,2)         
    Create table
    TIF_CURRENT_BALANCE_HDR
      HDR_DATE         DATE,  
      HDR_COUNT        NUMBER(10)
    );And use a control file which will load line 1 to TIF_CURRENT_BALANCE_HDR and other lines (SKIP=1) to TIF_CURRENT_BALANCE_DTL.
    Since the header/detail lines are not (necessarily) distinguishable, is there a way to achieve this, without modifying the input file in anyway?
    Thanks
    Martin

    Thanks for your reply - the solution should not be OS dependant as it will run on a Linux and UNIX installation.
    The DB will be (for now) Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    I looked at that web page you provided and had some hope with the ROWS option, but this is the number of rows to load before each commit.
    Any other solutions?
    I know I could load it to a common table (text and number) and then convert the values accordingly in the PL/SQL procedure which will run afterwards, but I feel loading the data in the final format is going to be faster.
    I am considering using SQL Load to load records (SKIPping row 1) into the DTL table and within the PL.SQL loading the 1st record and performing validation. Since the file has approx 2million rows and is processed daily, 1.99999 million records read with SQL Loader and 1 with conventional methods will still be a vast improvement!
    Thanks

Maybe you are looking for

  • Device Manages is indicating the driver is not installed

    Hi, I have a HP Photosmart C410 multifunction device, which is connected to my home network wireless network. I have a Microsoft Surface Pro with Windows 8.1 and have installed the HP installation sortware PS_AIO_07_C410_140_408 .exe and HP-ePrint-wi

  • Unable to delete FIM Service MA

    Experts, I had three MA. -File based MA -fim service ma - AD MA Due to some problem now I am trying to start from starting. I deleted all MA but FIM Service MA is not getting deleted. during import and export 498 records shows error. How to get rid o

  • Audio driver

    i am having COMPAQ V5000 model and i have install windows 7 in it. but audio is not working. please help to sort out this driver problem. thank you

  • How to change TDS in F-02

    Dear Friends My end users make entry for the payment of security guards through t code: F-02. The present TDS is 2%. They want to make TDS as 1% once they make payment through F-02. How to make it possible? How to change TDS in F-02 I am new to FI Pl

  • Third part CMS

    Hi ! my client uses a third party content management tool that is not one of the 11 vendors certified by BEA. Is it still possible to show the content from database created by CMS in the admin tool and create rules using it. i'll appreciate any help.