Packaging output.-URGENT

Hi Guru,
When user creating delivery and changing PGI date e.g 27/09 to 26/09 he is unable to view the output of packaging material. When he is not changing PGI date it is coming.
The same scenario I run it's working properly. I checked configuration as well as condition record are maintained properly.
I created one document and told to verify the user he told that it's coming. Then user changed PGI date of document which I created and told that out-put is not coming.Where could be the problem.
Please help.

If this is the case take help of Basis consultant.
Best Regards
Sainath

Similar Messages

  • Capturing remote PL/SQL package outputs in operator

    Hi,
    Does anybody know of a method I can get an output from a PL/SQL package to show the results in the Execution results in Operator ?
    For background :
    We have some pl/sql packages we will call from ODI to perform some ETL processes we are not planning to rewrite using Interfaces (at least in the near future).
    If we set up these PL/SQL packages to report the # rows inserted, updated, deleted etc. on completion, is there a way I can get these numbers reported in the standard operator console? Any Jython snippets or similar we can use?
    Thanks
    Alastair

    Oh, no - another very urgent question. The world must be about to end ;)
    Resmi, Have a read of [url http://forums.oracle.com/forums/thread.jspa?threadID=883293]this - JDeveloper 11g, as of today, doesn't (at least is not supposed to) support publishing PL/SQL procedures/packages as a web service.
    John

  • End Routine Result Package Output not as expected

    I have written an end routine that is based on a one to one mapping of two DSOs A to B, i calculate the value of two key figures which populate the fields, keyfig1 (a total of the amt_field per order) and keyfig2 (a % of the amt_field of keyfig1) .
    My problems is I seem unable to modify my output result package and keep getting no output  result on both key figures keyfig1 and keyfig 2. However my amt_field has changed instead! I want that to remain unchanged. This is my routine is below:
    data: wa_result_package TYPE tys_TG_1.
    types : begin of itabtype,
                     order         type    /BI0/OI_order_field,
                     tot_amt      type     /BIC/OIamt_field,
               end of itabtype.
               data : itab type standard table of itabtype,
                     wa_itab like line of itab.
    sort RESULT_PACKAGE by order_field   ascending.
    clear wa_itab.
    loop at RESULT_PACKAGE into wa_RESULT_PACKAGE.
               At End of order_field.
                      wa_itab-order    = wa_result_package-order_field.
                      wa_itab-tot_amt = wa_itab-tot_amt +
                      wa_result_package-/BIC/amt_field
                       append wa_itab to itab.
               ENDAT.
        wa_itab-order    = wa_result_package-order_field.
        wa_itab-tot_amt = wa_itab-tot_amt + wa_result_package-/BIC/amt_field
    endloop.
    loop at RESULT_PACKAGE into wa_RESULT_PACKAGE.
             read table itab into wa_itab
                         with key order = wa_result_package-order_field.
             if sy-subrc = 0.
                        wa_result_package-/BIC/keyfig1  = wa_itab-tot_amt.
              endif.
    If wa_result_package-/BIC/keyfig1 <> 0.
               wa_result_package-/BIC/keyfig2 =
               wa_result_package-/BIC/amt_field /
               wa_result_package-/BIC/keyfig1* 100.
    else.  wa_result_package-/BIC/keyfig2 = 0.
    endif.
    modify RESULT_PACKAGE from wa_RESULT_PACKAGE transporting /BIC/keyfig1 /BIC/keyfig2.
    endloop.
    Any help will be most appreciated. Thanks in advance.

    Hi,
    Besides the Endroutine tab there is another tab.
    Update fields even if no rule is assigned.
    Have you checked that? If not you will always get initial, for the fields you are updating.

  • Extra Page coming in the PDF output -- Urgent

    Hi All,
    I have created an AR Invoice Print report (pre-printed).
    size of the stationary is half of A4.
    In a single A4 page two invocies will be accommodated.
    Here i have not used page break concept. I have adjusted the template with spaces.
    But when are invoices are given in a range lets say 1 to 10.
    The PDF output should have 5 pages accommodating 2 invoice in each page (this is working perfectly), but with this an extra black page is also getting generated. (The PDF is having 6 pages).
    If the range is given between 1 to 9 the extra blank page will not get generated.
    Is there any way to solve this issue???
    It little bit urgent.. :)
    Regards,
    Jana

    Jana,
    http://blogs.oracle.com/xmlpublisher/2007/03/
    Check on the "Anatomy of a Template I & II"... should work on your case. Also, make sure extra carriage returns and unnecessary spaces between tables are removed. If you use fillers, be sure to have the same height attribute as the field being filled.
    regards,
    Rownald

  • Printing the Package output from Anonymous block

    Hi,
    I need to call the below package from anonymous block and get the output.
    Could you let me know.
    I tried using this, but i don't get data.
    ===========Anonymous Block=====================================================================
    declare
    var              xxdc.xxdc_sr_log_his_pkg.sr_tbl_type;
    l_sr_idx_bi  BINARY_INTEGER := 0;
    BEGIN
    xxdc.xxdc_sr_log_his_pkg.service_record('14040',var);
    dbms_output.put_line('CLAIM_CREDIT_OFFERS  :'||var(l_sr_idx_bi).qa_credit_offers(l_sr_idx_bi).character1 );
    end;
    =============================================================================================
    ============================================================================================
    Package Spec
    TYPE cr_offer_type IS TABLE OF apps.qa_results_v%ROWTYPE  
    INDEX BY BINARY_INTEGER;
    TYPE sr_rec_type IS RECORD
    (task_status                      apps.jtf_task_statuses_tl.name%TYPE
    ,task_type                        apps.jtf_task_types_tl.name%TYPE
    ,qa_credit_offers                 cr_offer_type
    TYPE sr_tbl_type IS TABLE OF sr_rec_type
    INDEX BY BINARY_INTEGER;
    PROCEDURE  service_record(p_service_req_num IN  VARCHAR2
                                               ,p_service_req_tbl OUT sr_tbl_type
    Package Body
           FOR emp_row_rec IN cur_credit_off
           LOOP
             l_sr_tbl(l_sr_idx_bi).qa_credit_offers(l_sr_idx_bi).character1 := emp_row_rec.character1;
             --dbms_output.put_line( l_sr_tbl(l_sr_idx_bi).qa_credit_offers(l_sr_idx_bi).character1);   --commenting for testing
              l_sr_idx_bi := l_sr_idx_bi + 1;
           END LOOP;
          p_service_req_tbl := l_sr_tbl;
    =============================================================================================
    Thank

    Hi,
    Did you issue the SQL*Plus command
    SET  SERVEROUTPUT  ON
    or, if you're using some other front end, its equivalent?
    Can you ever see output from dbms_output?  For example, what happens when you run this?
    SET  SERVEROUTPUT  ON
    BEGIN
        dbms_output.put_line ('Hello, world!');
    END;
    Since I don't have your tables, I can't actually run your code.  If you'd post CREATE TABLE and INSERT statements, or re-write the package to reference commonly available tables, such as those in the scott schema, then I could test it.

  • 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

  • Packaging Output

    Hi All,
       Wish you all a very very happy new year.What are the settings we will do so that we can see the output of packaging material..

    Hi,
    Please elaborate on your specific problem.
    what exactly do you mean by packagin output?
    regards,
    siddharth.

  • Customizing the Air packager output

    How can the output of the air packager be customized? I see a
    field named "skin" but I see no possibility to import or create
    custom skins. After a lot of efforts creating a nice
    company-specific webhelp skin, it would be dissapointing if this is
    lost in the air output.
    While I am at it (allthough I know this may be the wrong
    forum), what is the point of the digital signatures in the Air
    packager? After all, I can create my own right in the packager
    anytime so there would not be any security for the end user. On the
    other side, the security warning that pops up each time a user
    installs my Air output seems rather undisireable.

    Peter, thanks for the fast reply. I hope that alternative
    skins will be made available over time. The best would be a skin
    editor as we already have it in RoboHelp.
    Now I also understand the signature feature. The end user
    only receives the warning if I generate my own signature in the Air
    packager. I guess we know how secure procedures work that leave the
    decision on whether to proceed with the end user ; )
    Actually the longer I think the less I am convinced of the
    Air format for HTML documents. I would not want a document to
    install itself to my system and forcing me to deinstall just to get
    rid of it again. I guess it will provide mainly an option if you
    can install it together with the actual software.

  • How to find a report output - URGENT

    Hi all,
    We have an ABAP program and its basically a report, how can I see the output of the report ie the list.
    Please let me know
    thanks
    Sabrina.

    thanks Priyank for your reply.
    Well we have an ABAP program in BW that outputs a flat file of data.  It is basically a report, it runs every morning and I need to find out the output of the report.  In SM37 when I select the job and click the button SPOOL, I get the following message that I don't have authorization to view the list.
    No authorization to select from spool request 24,323 in system CBP
    and then it says list contains no data.
    What should I do?  Please let me know.
    thanks
    Sabrina.

  • SISS package output using DTEXEC command

    Hello,
    I need a help in executing SISS package using DTEXEC command
    Here is the command i use
    DTEXEC.EXE /F "C:\\excel_to_table.dtsx" /set \package.variables[filepath].Value;"C:\sample.xlsx" /set \package.variables[servername].Value;"000.000.000.0" /set \package.variables[database].Value;"Databasename" /set \package.variables[username].Value;"username" /set \package.variables[password].Value;"password"
    In the package, I'm inserting the rows into a table. Now i want to display the number of records imported and number of  duplicate records. Is it possible to get the values and display as result in command prompt.
    Please advice.
    Thanks,
    Venkat.
    Best Regards, Venkat

    Hi Venkat,
    According to your description, you want to display the row count information in the result of the DTEXEC commands in the Command Prompt. If so, this cannot be done through the DTEXEC utility.
    If you can run other commands after the DTEXEC commands, you can first store the row count information to a SQL Server table using the methods posted by Jay and Visakh, and then run sqlcmd commands to display the data of a SQL Server table like:
    sqlcmd -S localhost -d TestDB -Q "SELECT * FROM MyTable"
    Reference:
    https://www.simple-talk.com/sql/sql-tools/sql-server-sqlcmd-basics/ 
    Regards,
    Mike Yin
    TechNet Community Support

  • Display empty fields in between the output, urgent

    hi
    i need to display some empty fields in the output txt file, in between teh normal database fields i am displaying
    for eg if first field is f1 (1-10)
    second is f2 (11-35)
    third field is empty i need todisplay as (12-45)
    and again f4 as (13-60) so on
    such there are multiple fields in between dattabase field which just needs to be displayed as empty only and all fields should be seperated by space as showni above eg
    regards
    arora

    closed got solution

  • Graph  for a query output---urgent

    Hi,
    My requirment is to have a report which shows top 3 cubes based on number of records for each week.I also have to plot this in a graph
    the graph should be as follows
    Y axis : No of records
    X axis : Cubes which are grouped based on week.ie Suppose top 3 cubes for
    Week 1 is c11,c12,c13
    and
    Week 2 is c21,c22,c23
    then graph should show
    no of records on Yaxis
    and
    C11,c12,c13 as one series and
    c21,c22,c23 as second series.
    I tries this but Xaxis is showing either C11,c12,c13  or
                                                          c21,c22,c23
    since we cannot give values  to X axias on a series basis.
    Please suggest a way to solve it or a different approch for th above requirment
    Please help this urgent....

    Hi,
    I think you need to develop multiprovider over 3 cubes. Build a single query on this multiprovider and then plot the graph.
    Other way you can try Excel Macro to plot the graph.
    Hope it helps.
    Regards,
    Aditya

  • ME2N -Customized output -Urgent!!!

    I have customized ME2N transaction, my output is ALV format , Here I just changed to logic of 2 performs where I can add the my own flds into the output list.
    for the GUI status which is not working like PO changes,scheduled...buttons (also there in the standard transaction).
    Please help me

    Hi,
    You can create your own local strcutureby inlcuding this strucutre as follows.
    TYPES: begin of new_struct.
    INCLUDE STRUCUTRE MEREP_OUTTAB_PURCHDOC.
    TYPES: new_filed type <give your type here>,
    end of new_Struct.
    then create table type and work area for the new type.
    DATA: itab type table of new_Struct,
               wa_area like line of itab.
    now copy data as followows.
    LOOP at original_ta into origianl_workarea.
    move-corresponding original_workarea to wa_area.
    wa_area-new_filed = <assign your value using some code READ TABLE etc>.
    append wa_area to itab.
    endloop.
    then create list using ITAB instead of original table.
    Regards,
    Sesh

  • NaN output - Urgent

    I am using DAQc 9172 Chassis and obtaining temperature using NI 9217 and Pressure from NI 9205. I get the output properly from the vi file. I am using Lab view 8.2.1 version. But when I build the executable  (Application.exe) and use it for execution at the standalone PC which already has been installed with only (LV version 8.5)Ni DAQmx and runtime Engine , I get the pressure and temperature values as NaN. 
    However the application.exe file runs fine in the main PC which has been installed with Labview 8.2.1.
    Can anyone help me in fixing this problem?
    Solved!
    Go to Solution.

    If your target computer have LV8.5 You may do some debugging on this computer. Check with MAX to sort out naming problems with the daq unit
    Message Edited by t06afre on 02-09-2009 03:15 PM
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

  • XML Output(Urgent)

    Hi,
    I want to build XML file like this(below one) in .NET.I am
    getting one sub element i.e Year .But I am not getting Item and its
    attributes within the Year element.Its very Urgent.I am using XML
    serializer for this.
    <energyrecap>
    <year id="2006">
    <item type="usage" value="4.666" month="Jan" />
    <item type="usage" value="4.666" month="Feb" />
    <item type="usage" value="4.666" month="Mar" />
    <item type="usage" value="4.666" month="Apr" />
    </year>
    <year id="2007">
    <item type="usage" value="5.666" month="Sep" />
    <item type="usage" value="4.666" month="Oct" />
    <item type="usage" value="3.666" month="Nov" />
    <item type="usage" value="5.666" month="Dec" />
    </year>
    </energyrecap>

    You'll have a lot more luck with this question on dot.net
    forum than here.
    I use dot.net to return xml, but I have never used
    XMLSerializer.
    Tracy

Maybe you are looking for

  • I-tunes wont download and its really annoying

    whenever i try to download i-tunes, a tiny window comes up and it says page cannot be found

  • Slim iPhone 5 cases

    Is there any othere slim iPhone 5 cases like the list http://etopmost.com/6-slim-iphone-5-cases-and-covers. I am looking for slim iPhone case and should not spoil the look .http://etopmost.com/6-slim-iphone-5-cases-and-covers Kim

  • Reporting Server

    hi all, can i implement database reporting server on test environment version? etc help me thanks

  • Colour cells in ALV OOPS

    Hi Experts, Can any one solve my problem. I have displayed (grid display) using ALV OOPS using method (CL_GUI_ALV_GRID=>SET_TABLE_FOR_FIRST_DISPLAY) But I want colors should come on the list. Colors should be displayed Cell wise. Suppose for example 

  • Palm pilot 6.2 desktop software for windows 8

    When I try installing tungsten e2 software on my computer it stops when it gets to the getting the newest updates from the Internet it gives me a error message that says I'm not connected to the Internet? Can someone help me with this problem so I ca