Pl/sql Fuction Output

Hi,
The given below function used in a formula column of report 6i and its return value used to display iterm_code description in a quotation. But for corresponding to some values(V_segment6) the o/p is giving wrong answer.
i cant find where the problem lies.
===================function Body================================
function CF_ITEM_DESCRIPTIONFormula return Char is
V_ITEM_DESC VARCHAR2(200);
v_segment2 varchar2(150); --type
v_segment3 varchar2(150); --thick
v_segment4 varchar2(150); --wid
v_segment5 varchar2(150); --size
v_segment6 varchar2(150); --len
v_desc varchar2(200);
V_TEMP2 varchar2(2000);
V_TEMP3 varchar2(2000);
V_TEMP5 varchar2(2000);
V_TEMP6 varchar2(2000);
v_temp varchar2(50);
begin
SELECT segment2,segment3,segment4,segment5,segment6
into v_segment2 ,v_segment3 ,v_segment4 ,     v_segment5 ,v_segment6
FROM MTL_SYSTEM_ITEMS
WHERE INVENTORY_ITEM_ID=:INVENTORY_ITEM_ID
AND ORGANIZATION_ID=81;      
SELECT A.FLEX_VALUE_MEANING--A.DESCRIPTION
     INTO V_TEMP
     FROM FND_FLEX_VALUES_TL A,FND_FLEX_VALUES_VL B
     WHERE A.LANGUAGE='US'
     AND B.FLEX_VALUE_SET_ID=1006715
     AND A.FLEX_VALUE_ID=B.FLEX_VALUE_ID
     AND B.FLEX_VALUE=v_segment2;
     V_DESC:=V_DESC||V_TEMP;
if v_segment3<>'000000' then
     SELECT A.DESCRIPTION
     INTO V_TEMP
     FROM FND_FLEX_VALUES_TL A,FND_FLEX_VALUES_VL B
     WHERE A.LANGUAGE='US'
     AND B.FLEX_VALUE_SET_ID=1006716
     AND A.FLEX_VALUE_ID=B.FLEX_VALUE_ID
     AND B.FLEX_VALUE=v_segment3;
     V_DESC:=V_DESC||' Thick '||V_TEMP;
end if;
if v_segment4<>'00000' AND v_segment2 <>'PP' then
     SELECT A.DESCRIPTION
     INTO V_TEMP
     FROM FND_FLEX_VALUES_TL A,FND_FLEX_VALUES_VL B
     WHERE A.LANGUAGE='US'
     AND B.FLEX_VALUE_SET_ID=1006717
     AND A.FLEX_VALUE_ID=B.FLEX_VALUE_ID
     AND B.FLEX_VALUE=v_segment4;
     V_DESC:=V_DESC||' Wid '||V_TEMP;
end if;
if v_segment5<>'000000' then
     SELECT A.DESCRIPTION
     INTO V_TEMP
     FROM FND_FLEX_VALUES_TL A,FND_FLEX_VALUES_VL B
     WHERE A.LANGUAGE='US'
     AND B.FLEX_VALUE_SET_ID=1006718
     AND A.FLEX_VALUE_ID=B.FLEX_VALUE_ID
     AND B.FLEX_VALUE=v_segment5;
     V_DESC:=V_DESC||' Size '||V_TEMP;
end if;
if v_segment6<>'00000' then
     SELECT A.DESCRIPTION
     INTO V_TEMP
     FROM FND_FLEX_VALUES_TL A,FND_FLEX_VALUES_VL B
     WHERE A.LANGUAGE='US'
     AND B.FLEX_VALUE_SET_ID=1006719
     AND A.FLEX_VALUE_ID=B.FLEX_VALUE_ID
     AND B.FLEX_VALUE=v_segment6;
     end if;
     V_DESC:=V_DESC||' Len '||V_TEMP;     
     RETURN v_desc;
EXCEPTION
     WHEN OTHERS THEN
     RETURN NULL;
end;
====================================
The O/p of the query for segment1 to segment6
SELECT segment1||'_'||segment2||'_'||segment3||'_'||segment4||'_'||segment5||'_'||segment6 item_code
FROM MTL_SYSTEM_ITEMS
WHERE INVENTORY_ITEM_ID in (25223,25219,25221,25215,25213)
1_HR_038000_12190_000000_00000
1_HR_038000_15000_000000_00000
1_HR_038000_15000_000000_00000
1_HR_048000_15000_000000_00000
1_HR_058000_12190_000000_00000
here the segment6 is 00000. but the function returns (v_desc) following values:
HR Thick 5.8mm Wid 1500mm Len 1500mm
HR Thick 4.8mm Wid 1500mm Len 1500mm
HR Thick 5.8mm Wid 1219mm Len 1219mm
HR Thick 3.8mm Wid 1500mm Len 1500mm
HR Thick 3.8mm Wid 1219mm Len 1219mm
Actually there is no need of "Len 1500mm" and " Len 1219mm" in the above O/p.
since segment6 is '00000'. Why it is giving this O/P?
======================================
Regards
Naseer .

Actually there is no need of "Len 1500mm" and " Len 1219mm" in the above O/p.
since segment6 is '00000'. Why it is giving this O/P? Because you have the last V_DESC:=V_DESC||' Len '||V_TEMP; outside the if statement
Regards
Etbin
Edited by: Etbin on 11.12.2010 14:04
you might try
function CF_ITEM_DESCRIPTIONFormula return Char is
  v_segment2 varchar2(150); --type
  v_segment3 varchar2(150); --thick
  v_segment4 varchar2(150); --wid
  v_segment5 varchar2(150); --size
  v_segment6 varchar2(150); --len
  v_desc varchar2(2000);
begin
  SELECT segment2,segment3,segment4,segment5,segment6
    into v_segment2,v_segment3,v_segment4,v_segment5,v_segment6
    FROM MTL_SYSTEM_ITEMS
   WHERE INVENTORY_ITEM_ID = INVENTORY_ITEM_ID
     AND ORGANIZATION_ID = 81;
  select case when b.flex_value_set_id = 1006715
               and b.flex_value = v_segment2
              then a.flex_value_meaning
         end ||
         case when b.flex_value_set_id = 1006716
               and b.flex_value = v_segment3
               and v.segment3 != '000000'
              then ' Thick ' || a.description
         end ||
         case when b.flex_value_set_id = 1006717
               and b.flex_value = v_segment4
               and v.segment4 != '00000'
               and v.segment2 != 'PP'
              then ' Wid ' || a.description
         end ||
         case when b.flex_value_set_id = 1006718
               and b.flex_value = v_segment5
               and v.segment5 != '000000'
              then ' Size ' || a.description
         end ||
         case when b.flex_value_set_id = 1006719
               and b.flex_value = v_segment6
               and v.segment6 != '00000'
              then ' Len ' || a.description
         end
    into v_desc
    from fnd_flex_values_tl a,fnd_flex_values_vl b
   where a.language = 'US'
     and b.flex_value_set_id in (1006715,1006716,1006717,1006718,1006719)
     and a.flex_value_id = b.flex_value_id;
  RETURN v_desc;
  EXCEPTION
  WHEN OTHERS THEN
  RETURN NULL;
end;

Similar Messages

  • Capture pl/sql fuction return into XML

    Hi all,
    I currently have a pl/sql fuction if which returns an array. I am calling the function from an xsql page within a DML statement.
    Does anyone know if there is a way of capturing the return value inside a xsql:page-param for output of xml when the page in loaded into the browser or bind params are given to the fuction?
    Any advice on this would be great.
    Thanks in advance!
    Stefan

    Hi all,
    I currently have a pl/sql fuction if which returns an array. I am calling the function from an xsql page within a DML statement.
    Does anyone know if there is a way of capturing the return value inside a xsql:page-param for output of xml when the page in loaded into the browser or bind params are given to the fuction?
    Any advice on this would be great.
    Thanks in advance!
    Stefan

  • Save SQL select output as html page on another box.

    How can I save a simple sql select output on another server as a html page?

    Hi,
    You can use the Oracle product WebDB (Oracle Portal) to create reports in HTML over the DB (simplest way).
    Instead You can use SQL*Plus on the remote server (where You want to spool), enable the spool to file (using SPOOL) and create the select as
    SELECT 'html tags' &#0124; &#0124; field/s &#0124; &#0124; 'html tags'
    FROM your_table;Using this solution You have to manually "draw" the report.
    Hope this helps.
    Bye Max
    null

  • SQL query Output  exceeds 65000 rows in excel

    Hi,
    I have a SQL file attached to my concurrent program. The query in the SQL file returns tab separated output that i need to email as a csv through the same SQL file.
    The issue I am facing is that the query returns about 157000 records but only 65536 are being displayed in the excel worksheet.
    How can I get all the records by accommodating them in multiple worksheets of the same excel file?
    Please help!
    I am using EBS 11i.
    Code I am using in SQL file:
    set pages 3000
    set lines 300
    set heading off
    set term off
    set feedback off
    set verify off
    set echo off
    set serverout off
    spool /tmp/TEST.csv
    select 'Header'
    from dual
    SELECT column1||CHR(9)||column2
    FROM staging_table
    spool off
    set lines 1000 pages 40 head off echo off veri off
    select 'cd /tmp; cat $XX_TOP/install/sql/disclaimer.txt > x.dat; cat '||'/tmp/TEST.csv'||' | uuencode '||'/tmp/TEST.csv'
    ||' > '||substr('/tmp/TEST.csv',1,length('/tmp/TEST.csv')-4)||'.dat >> x.dat'
    ||' ; mail -s ''' ||'&1'||''' '||'&2'||' < x.dat'
    ||' ; rm '||substr('/tmp/TEST.csv',1,length('/tmp/TEST.csv')-4)||'.dat'||' ;'
    from dual
    list
    spool /tmp/email.txt
    spool off
    host chmod 777 /tmp/email.txt
    host /tmp/email.txt
    Thanks
    Edited by: user10648285 on May 13, 2011 5:27 AM

    open a blank Excel (2007 version), go to Data tab, then from External Data click From Text, select the CSV file (That having more than 65k records), click import, then from "start import at row" select 65001 and click next button, select delimiter as Comma, click Next button and filaly finish.
    In this way you will have the data after 65k rows in excel. Now you can simply open that cvs file in excel then you will have first 65k records (remening part will be discarded).
    So now you have two excel files and you can paste it in two diff tab.
    Note - you can repeate this activity if you have more than 130000 records...

  • Can't display  xml sql function output in concuurent progarm in oracle apps

    I am able to get the xml output for this query in TOAD.
    but when i register this as sql*plus concurrent program,and run it and see output file , it has 0 bytes in it.
    Can anyone did this befor?
    Otherwise can any one suggest how to write this content to a file using UTIL_FILE ?
    SELECT
    XMLElement(
    "PoList",
    XMLAttributes(
    'http://www.manh.com/ILSNET/Interface' as "xmlns" ),
    XMLAgg(XMLElement(
    "PurchaseOrder",
    XMLForest(PURCHASEORDERID as "PurchaseOrderId"),
    XMLElement("Vendor",XMLForest(
    shipfrom as "ShipFrom"
    XMLElement( "ShipFromAddress", address1
    (SELECT XMLElement("Details",
    XMLAgg(XMLElement(
    "PurchaseOrderDetail",
    XMLForest(
    LineNumber as "LineNum",
    item as "Item"
    FROM cpo_wms_podl_lines pl
    WHERE PURCHASEORDERID=ph.PURCHASEORDERID)))).getClobVal() into result
    FROM cpo_wms_podl_HEADERS ph
    where rownum<10 ;

    Which database version are you using (all numbers please)

  • SBO SQL Query outputs zero values as nulls but need the zeros

    Hi all,
    I'm having a problem with a query I'm writing in SBO where if the field contents are zero, these are output as null.
    I have a field for the stock usage on sales orders and ont too for production orders, but if I add these together they only provide a result if both columns contain a numeric value.
    I've tried adding "0" to the column value, adding and subtracting "1" and also multiplying the value by "1" but still no joy.
    I have also tried adding a "cast" statement to the column, but that doesnt seem to have an effect either (I think as this is more an output function).
    I need to be able to use these columns as separate displays in addition to being used in a further column as part of a calculation.
    If anyone has an idea how I can output a true zero value as opposed to a null value your help would be appreciated.
    Cheers,
    J

    Hello Julian,
    You could try to use a CASE Statement as I have shown below and test this will the SQL below.  If you use the T0.LineNum without any CASE or CAST the LineNum 0 will show as blank in SAP.
    SELECT
    CASE WHEN T0.LineNum != 0 THEN CAST(T0.LineNum AS VARCHAR(10)) ELSE '0' END AS 'Row Number',
    T0.ItemCode AS 'Item No.', T0.BaseQty AS 'Base Quantity', T0.PlannedQty AS 'Planned Quantity - Rows'  FROM  [dbo\].[WOR1\] T0

  • Writing a function to find whether a value is present in a sql query output

    Hi gurus,
    I would like to write a function to which i will pass a value and a sql query as parameters.
    Now the function needs to execute that sql query and find whether the given value is present in the output list
    when the query is executed. If it is present it should return 'T' otherwise 'F'
    My function will look like
    CREATE FUNCTION CHECK_VALUE(VALUE VARCHAR2,V_SQL VARCHAR2) RETURN VARCHAR2
    SELECT CHECK_VALUE('Dallas','SELECT LOCATION_CODE FROM HR_LOCATIONS')
    It should check whether the value 'Dallas' is present in the output list returned by the sql query.
    Any help will be appreciated.
    Thank you.

    CREATE OR REPLACE
      FUNCTION CHECK_VALUE(
                           VALUE VARCHAR2,
                           V_SQL VARCHAR2
        RETURN VARCHAR2
        IS
            RETVAL VARCHAR2(4000);
            REFCUR SYS_REFCURSOR;
        BEGIN
            OPEN REFCUR FOR V_SQL;
            LOOP
              FETCH REFCUR INTO RETVAL;
              EXIT WHEN REFCUR%NOTFOUND;
              IF RETVAL = VALUE
                THEN
                  CLOSE REFCUR;
                  RETURN 'T';
              END IF;
            END LOOP;
            CLOSE REFCUR;
            RETURN 'F';
    END;
    Function created.
    SQL> SET SERVEROUTPUT ON
    SQL> EXEC DBMS_OUTPUT.PUT_LINE(CHECK_VALUE('DALLAS','select loc from dept'));
    T
    PL/SQL procedure successfully completed.
    SQL> EXEC DBMS_OUTPUT.PUT_LINE(CHECK_VALUE('PARIS','select loc from dept'));
    F
    PL/SQL procedure successfully completed.
    SQL> SY.

  • SQL*Loader output issue

    Hi,
    When I load a flat file with SQL*Loader (V 8.1.7 on Windows), I get output something like,
    Commit point reached - logical record count 2352
    Commit point reached - logical record count 2364
    Commit point reached - logical record count 2376
    Commit point reached - logical record count 2388
    Commit point reached - logical record count 2400
    If I want to change this, say I want this message for each 1000 records inserted, how can I do that?
    I have tried options line bindsize or rows, but looks like they are for changing internal operation, but not this screen output.
    Off course, I am talking about conventional path load.
    Any ideas?
    Thanks

    set rows=1000 and increase the bindsize drastically.
    From the docs here
    If that size fits within the bind array maximum, the load continues--SQL*Loader does not try to expand the number of rows to reach the maximum bind array size. If the number of rows and the maximum bind array size are both specified, SQL*Loader always uses the smaller value for the bind array.

  • Query SQL and output to text file then loop through list to execute

    It seems there's no obvious way to do what I want to below as everyone has their own take on querying SQL server with Powershell!
    I need to use PowerShell to connect to ServerA and query a test database and select Name from it.  The Name results of that query need to output to C:\names.txt and then I need a ForEach loop to go through that file line by line and execute some text
    against each Name from the list.
    Any ideas how I can achieve this?
    Thanks!

    I can't even output SQl to a table at the moment, the text file has a column header and about 50 empty rows in the file.
    $dataSource = "DEMO"
    $database = "TESTDB"
    $connectionString = "Server=$dataSource;uid=$user; pwd=$pwd;Database=$database;Integrated Security=True;"
    $query = "SELECT name FROM dbo.names"
    $connection = New-Object System.Data.SqlClient.SqlConnection
    $connection.ConnectionString = $connectionString
    $connection.Open()
    $command = $connection.CreateCommand()
    $command.CommandText  = $query
    $result = $command.ExecuteReader()
    $table = new-object "System.Data.DataTable"
    $table.Load($result)
    $format = @{Expression={$_.Id};Label="Name";width=25}
    $table | format-table $format | Out-File C:\export\servers.txt
    $connection.Close()

  • How to show PL/SQL package  output and fix below error(please help)

    --PACKAGE SPECIFICATION AND BODY complied successfully but I can not see output some error are also there..  please help ;how to fix this problem
    -- with code
    CREATE OR REPLACE PACKAGE package_variables IS
    -- Declare package components.
    PROCEDURE set(value VARCHAR2);
    FUNCTION get RETURN VARCHAR2;
    END package_variables;
    CREATE OR REPLACE PACKAGE BODY package_variables IS
    -- Declare package scope variable.
    variable VARCHAR2(20) := 'Initial Value';
    -- Define function
    FUNCTION get RETURN VARCHAR2 IS
    BEGIN
    RETURN variable;
    END get;
    -- Define procedure.
    PROCEDURE set(value VARCHAR2) IS
    BEGIN
    variable := value;
    END set;
    END package_variables;
    VARIABLE outcome VARCHAR2(20)
    CALL package_variables.get() INTO :outcome;
    SELECT :outcome AS outcome FROM dual;
    EXECUTE package_variables.set('New Value');
    CALL package_variables.get() INTO :outcome;
    SELECT :outcome AS outcome FROM dual;
    OUTPUT
    PACKAGE package_variables Compiled.
    PACKAGE BODY package_variables Compiled.
    Error starting at line 2 in command:
    CALL package_variables.get() INTO :outcome
    Error report:
    SQL Error: ORA-01008: not all variables bound
    01008. 00000 - "not all variables bound"
    *Cause:   
    *Action:
    OUTCOME
    1 rows selected
    anonymous block completed
    Error starting at line 2 in command:
    CALL package_variables.get() INTO :outcome
    Error report:
    SQL Error: ORA-01008: not all variables bound
    01008. 00000 - "not all variables bound"
    *Cause:   
    *Action:
    OUTCOME
    1 rows selected
    */

    EXECUTE package_variables.set('New Value');
    CALL package_variables.get INTO :outcome;
    SELECT :outcome AS outcome FROM dual;
    OUTPUT
    anonymous block completed
    Error starting at line 2 in command:
    CALL package_variables.get INTO :outcome
    Error report:
    SQL Error: ORA-06576: not a valid function or procedure name
    06576. 00000 - "not a valid function or procedure name"
    *Cause:    Could not find a function (if an INTO clause was present) or
    a procedure (if the statement did not have an INTO clause) to
    call.
    *Action:   Change the statement to invoke a function or procedure
    OUTCOME
    1 rows selected

  • PL/SQL not outputting all fields (environment variable?)

    This must be very straightforward.
    I'm getting back to doing some PL/SQL coding after a break of several years. I'm trying to start with something simple & building on that.
    create or replace procedure change_details(
    dirname in varchar2,
    id_filename in varchar2)
    is
    ids_file utl_file.file_type;
    spool_file utl_file.file_type;
    id_var varchar2(400);
    begin
    ids_file:=utl_file.fopen(dirname, id_filename, 'R');
    spool_file:=utl_file.fopen(dirname,'update_names.lst', 'W');
    loop
    begin
    utl_file.get_line (ids_file, id_var);
    utl_file.put_line (spool_file,id_var);
    exception
    when no_data_found then
    exit;
    end;
    end loop;
    utl_file.fclose(ids_file);
    end;
    spool person_ids
    set serveroutput on size 1000000;
    begin
    change_details('/my_directory/anon_cf','ids.lst');
    end;
    spool off
    I've got this code which should read in values from one file & write out to another. What's happening is that I don't get all input fields in the output file.
    More accurately, if the size of the input file is 2048 bytes then I do get all input fields in the output file.
    If there are less than 2048 bytes on input then I get nothing; if there are more than 2048 then I begin to lose
    some fields.
    There must be some environment setting which is affecting this but I don't know what. (I added "set serveroutput"
    hoping for the best but no difference)
    (It's Oracle9i on Solaris 9)
    Can anyone tell me where I'm going wrong? Thanks, Chris

    I think what BluShadow is getting at is that you
    have:
    utl_file.fclose(ids_file);in your code, but no
    utl_file.fclose(spool_file);
    Correct. ;)

  • SQL query output

    Dear friends ,
    I want to view a select query using page by page . Is it possible to do in SQL ?
    suppose here is an example of select query :
    sql > select * from v$session ;
    I want to see the output as page by page .
    waiting for ur kind reply . .. ..

    Hi, (assuming you use Db 10g v.2)
    you should read the chapter "6 Formatting SQL*Plus Reports" of e-book:
    SQL*Plus® User's Guide and Reference
    Release 10.2
    Part Number B14357-01
    and especially the 'break' command.....
    Greetings,
    Sim

  • 4.1EA2 User-Defined-Report strips CRLF when using PL/SQL DBMS Output

    Hi,
    I have a report with a child report.
    That child report uses pl/sql to print to the screen. (dbms output)
    When i use the procedure manually it prints fine.
    When i copy this output to a text editor i can see the CRLF in there.
    If i call the same procedure tru the reports section of SQLDeveloper the output is stripped of any CRLF characters.
    This is causing it to be useless for me: i am using it to generate code and it all appears as one big line on the screen.
    Copying this to a text editor indeed shows all CRLFs gone.
    Is this intentional or a bug ?

    Jeff,
    Thnx for the answer.
    I don't have a problem writing html in my code being a former webdeveloper with experience in apex as well.
    The problem is that the option presents itself as a standard plsql dbmsoutput, which suggests identical output as a dbmsoutput pane in sqldeveloper.
    From your answer i gather it really is supposed to do html formatting.
    Your "solution" of inserting br tags would be fine if it weren't for the fact that when i do a copy of the output in this report pane sqldeveloper strips away the br tags but doesn't replace them with crlf's.
    And since the crlfs that were in the output are also stripped in this result pane i get a single line of text when i copy over a page of text from the result pane into a normal texteditor.
    As such it behaves differently then say a browser when i copy a page of text from the browser and paste it in a text editor. There i see the crlfs that were present in the original source.
    Is there a listing somewhere that explains what tags are supported?
    Or CSS ?
    Does it support stuff like white-space: pre ?
    I understand the usefullness of a html-aware plsql dbmsoutput output option in the reports list of a user-defined report.
    However i would like to use this opportunity to advocate to include , as an extra option or tick box etc., an option to just display the output as the normal dbmsoutput pane displays it.
    That is without extra formatting.
    I like the idea of being able to click in the table section above and to have bottom pane generate the appropriate code as output.
    That  use-case can not happen right now since it formats as html (and not even the correct way) or, when going along with this route, strips everything to a single line of text when copying the data from the result pane.
    rgrds mike

  • HTML DB SQL Workshop Output to csv Max Row Count

    I am using HTML DB 1.6 with Oracle 10g 10.1.0.3.0 On SuSE Linux Enterprise Server 9.
    When I execute a query in SQL Workshop SQL Command Processor that returns a result set of greater than 5,000 rows and click the Output to Excel link, it exports NO MORE than 5,000 records.
    In working through Metalink with Oracle Tech Support, apparently for Reports in HTML DB there is a way to change the Max Row Count default limitation of 5,0000. However, this isn't in a report. It is simply from the query results page in SQL Workshop. Tech Support has been unable to idnetify ANYWHERE where I can change the default Max Row Count for simply outputting the results to csv format through the Output to Excel link.
    I am desperately looking for where I can globally change this default that will allow me to use SQL Worskshop to output greater than 5,000 records from within SQL Workshop.
    Thanks for you help!
    Mike

    hi mikes--
    that sqlworkshop 5k row limit issue was corrected in htmldb 2.0. in 1.6.x, i'm pretty sure you're always limited to 5k no matter what you select for that Max Rows attribute.
    regards,
    raj

  • Can SQL injection output rows to hacker?

    Can a hacker retrieve rows through SQL injection or simply
    just jumble up the data? I wouldn't see how they could get the rows
    without coldfusion code that will actually be instructed to output
    the query. If not, are there any hot cf/mssql hacking techniques to
    steal database rows?

    chazman113 wrote:
    > Can a hacker retrieve rows through SQL injection
    Yes, yes they can.
    You are correct that there would need to be code to output
    the data.
    The hackers just use the code you already have built to
    output data.
    But then use SQL injection tricks to output more data then
    the developer
    intended for anybody to see.
    Here is a blog that describe a real life example of just
    that.
    http://thedailywtf.com/Articles/Oklahoma-Leaks-Tens-of-Thousands-of-Social-Security-Number s,-Other-Sensitive-Data.aspx

Maybe you are looking for

  • PavillionG​7-2315nr windows 7(64 bit) USB serial control or usb ports are not working. Please help!

    Hi I downgraded the laptop from windows 8 to windows 7 64 bit. Two of my USB ports are not working and cant find the right drivers for it. Can you please direct me, where I can download and update the drivers? Thanks in advance. Shawe

  • PO number  not copied from Contract to Sales order

    Hi Gurus, when i try to create a sales order w.r.t a contract the Po number is not copying from cintract to sales order. also the PO item is not copying from contract to sales orde. Could u tell me the reason. Cheers, Sumith

  • Uploading stock balances

    All, I need to upload every stock balances for a storage location in system . I am using batch management here .So in material master I am putting shelf life and Minimum remaining shelf life . So suppose for a material shelf life is 30 days and Min R

  • Payer need to be change after created billing document

    Hi all, They created some orders..... orders-delivery-billing documents created. now we came to know the payer is wrong but the documents are not relased to accounting..... how can i do if issue like this....if i change  the payer in customer master?

  • Suppress cumulated key figures for actual data

    Hello all, I have build a query which display monthly actual and forecast order income for an ficsal year. The fiscal year starts in July and end in June The forecast data were loaded in BW over an flat file for the whole fiscal year. The actual data