PO Output Determiantion status Tables

Dear All,
In Purchase order we Output the Printout.
Were will i get the table or report in which i vll get all these details
Regards
Amey

Hello,
Try one of these condition tables depending on the Key combination that you are using.
B025                           Purchasing Output Determination: Doc.Type/Purch.Org/Vendor
B026                           Purchasing Output Determination: Document Type
B027                           Purchasing Output Determination: Purch. Org./Vendor for EDI
If you have created your own access sequence the the name of the table can be searched using B9* in SE16. I short all the condition tables are starting with B.
Regards,
Jimmy

Similar Messages

  • Field KNVV-CHSPL does not exist in field status tables (TMOD*)

    Hi Gurus,
    Wile creating Customer master record at Tc= XD01 the following error coming as
    "Field KNVV-CHSPL does not exist in field status tables (TMOD*)"
    Plz help me its  urgent.
    Vinay

    Hi
    KNVV is the customer sales data table and CHSPL is the field name called Batch Split Allowed
    My advice is to deselect the field name from the table and test it by creating it once again ...
    Bobbili

  • Output text in table form

    Hi all,
    I have a short little applescript that does some math and then outputs a mix of the results and plain text in tabular form, and copies it into a Word document. (I'm a complete novice at AS, this is maybe my third script).
    At present, the script essentially hand-writes the table by including the tabs and returns, e.g. this excerpt:
    set gradingScale to "A+" & tab & Aplus & return & "A" & tab & Astraight & return
    Is there a more efficient way to tell AS to output as a table? Like say, listing everything that belongs in column 1, or somesuch?
    thanks, Daiya

    table_result starts out at the top of the script as a blank string variable. In the example my repeat loop will run three times (the length of column_a) with the integer x. On each successive run x increases by 1, so we'll get the first, then second, then third items of column_a and column_b. Because we are fed these values one at a time, we must concatenate them to the values that we already got on previous runs through the repeat loop. By setting the value of table_result to itself, plus a bunch of new data, we can thus build the table line by line.
    The result term is just a convenient way to get the result of the previous line of code. Here are a few more examples.
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">set x to 1
    repeat 3 times
    say x
    set x to x + 1
    end repeat
    repeat with z from 3 to 1 by -1
    say z
    end repeat
    "Go AppleScript!"
    say result
    </pre>

  • Populating a load-status table from SQL*Loader

    Hello,
    I am using SQL*LDR to load a table and once I'm done with this load I am supposed to populate a status table which will capture the 'SYSDATE', and the total number of rows I loaded in the other table.
    Can anybody help me?
    Thanks

    BTW, the load-status table would take the error-record-count as well as the load-count?
    Sorry missed that earlier!

  • Object status tables

    Hi
    Please, could you tell me what is the tables where the object status are storage from SD sales document for example?
    Best Regards,
    Enrique

    Hi Benito Enrique,
    Please have a look at below tables.
    AUSP
    Characteristic Values
    CMFK
    Storage Structure for the Error Log Header
    CMFP
    Storage Structure for Errors Collected
    FMSU
    FI-FM Totals Records
    FPLA
    Billing Plan
    FPLT
    Billing Plan: Dates
    INOB
    Link between Internal Number and Object
    JCDO
    Change Documents for Status Object (Table JSTO)
    JCDS
    Change Documents for System/User Statuses (Table JEST)
    JEST
    Object Status
    JSTO
    Status Object Information
    KANZ
    Assignment of Sales Order Items u2013 Costing Objects
    KEKO
    Product Costing - Header
    KEPH
    Product Costing: Cost Components for Cost of Goods Mfd
    KNKO
    Assignment of a Cost. Est. Number to Config. Object
    KOCLU
    Cluster for Conditions in Purchasing and Sales
    KSSK
    Allocation Table: Object to Class
    NAST
    Message Status
    SADR
    Address Management: Company Data
    VBAK
    Sales Documents: Header Data
    VBAP
    Sales Documents: Item Data
    VBEH
    Schedule Line History
    VBEP
    Sales Document: Schedule Line Data
    VBEX
    SD Document: Export Control: Data at Item Level
    VBFCL
    Sales Document Flow Cluster
    VBLB
    Sales Document: Release Order Data
    VBSN
    Change Status Relating to Scheduling Agreements
    VBUK
    Sales Document: Header Status and Administrative Data
    VBUP
    Sales Document: Item Status
    VBUV
    Sales Document: Incompleteness Log
    VEDA
    Contract Data
    Thanks,
    Swamy H P

  • Message Status Table

    what is the main use of the message status table in abap?

    hi venki,
    'NAST' is a transaparant table.It is the table for Message
    status.It consists of applicationof message conditions,
    message type, message language etc.
    1)To know the status of a message we need this field
    2)To print the status code in the Script are.
    3) by creating internal table field type while creating the
       ELEMENT. then the ELEMENT should placed in the FM
       "Write-Form".
    hope its clear to you,
    Reward points if usefull,
    Thanks,
    Kalyan.

  • Work order-System status table

    Hi,
    In which table does the system status of the work order (TECO, Created, Released etc) gets updated? I want to know in which table does all the open work orders get updated.
    Thanks in Advance

    Dear Jegashree,
    Check this link
    [Production order status|Table : Production order status;
    Regards
    Madhu

  • Loop thru Status table and start job

    I have a STATUS Tbl, that has a field called CompleteDate.Only if the CompleteDate field has TODAYS Today, then I want to proceed with my ssis task, to
    insert data in some tables. If the CompleteDate Is not yet todays date, then I want to check the status table again every 10 minutes, until the CompleteDate
    changes to TODAYS Date. THEN Start my insert process after that.
    select
    Max(convert(varchar(10),
    CompleteDate, 121))
    from Db.dbo.StatusTable
    I used the WAITFOR DELAY But that doesnot help.
    Any idea. here is the code I am using BUT THAT Comes out of the LOOP and does not keep rechecking the satus table
    declare
    @MaxDt  varchar(10)
    set @MaxDt=(select
    max(convert(varchar(10),
    CompleteDate, 121))
    from DB.dbo.StatusTable)
    --select @MaxDt
    DECLARE
    @flg BIT
    SET
    @flg = 0
    BEGIN
    IF
    EXISTS
    SELECT
    CASE
    WHEN @MaxDt
    >=convert(varchar(10),
    getdate(), 121)
    THEN 1
    ELSE 0
    END     
    SET @flg
    = 1
    WAITFOR
    END
    set
    DELAY
    '00:10:00'

    >If the CompleteDateIs not yet todays date, then I want to check the status table again every 10 minutes,
    It is safer to setup the stored procedure as a scheduled job without the WAITFOR.
    BOL: " Creating Jobs
    A job is a specified series of operations performed sequentially by SQL Server Agent. A job can perform a wide range of activities, including running Transact-SQL scripts, command prompt applications, Microsoft ActiveX scripts, Integration Services packages,
    Analysis Services commands and queries, or Replication tasks. Jobs can run repetitive or schedulable tasks, and they can automatically notify users of job status by generating alerts, thereby greatly simplifying SQL Server administration.
    To create a job, a user must be a member of one of the SQL Server Agent fixed database roles or the sysadmin fixed server role. A job can be edited only by its owner or members of the sysadmin role. For more information about the SQL Server Agent fixed database
    roles, see SQL Server Agent Fixed Database Roles.
    Jobs can be written to run on the local instance of SQL Server or on multiple instances across an enterprise. To run jobs on multiple servers, you must set up at least one master server and one or more target servers. For more information about master and
    target servers, see Automating Administration Across an Enterprise"
    LINK:
    http://technet.microsoft.com/en-us/library/ms186273(v=sql.105).aspx
    Kalman Toth Database & OLAP Architect
    SELECT Video Tutorials 4 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • SAP Equipment Calibration Status Table

    Hi,
    Can someone point me to the Equipment Calibration Status table ? I want to locate the current calibration status of individual pieces of equipment such as (out of use, calibrated etc. )
    Thanks,
    Emmett

    Hi Emmitt,
    Would you please identify which BAPIs they are?
    Thanks,
    Mike

  • RFFMMP_COVR - Status Table

    Hi Gurus,
    I'm working on a project where I need to identify a status table related to this report.   Does anyone know which table this will be ??
    Thank you,
    JZ

    Hello,
    Is this a Workflow question?
    In any case, you may be able to use transaction ST05 (trace) to see which tables are accessed.
    regards
    Rick Bakker

  • OUTPUT type status change

    Hello All,
    We have an OUTPUT type for Distribution ALE (for Order confirmation), we stop OUTBOUND IDOC depending on few conditions.
    Problem : OUTPUT type shows RED status (fair enough),
    No Log (unfair).
    I need to change the status to green and generate a log
    stating IDOC is generated for blah blah reasions.
    Is it possible?
    Thanks in advance.
    Regds,
    Manohar

    Hi Manohar,
    To get a green light on OUTBOUND IDoc's you need to set the status to 03.
    You can do that as follows:
    DATA: it_status TYPE bdidocstat OCCURS 0 WITH HEADER LINE.
    it_status-docnum = '<your IDoc number>'.
    it_status-status = '03'.
    APPEND it_status.
    CALL FUNCTION 'IDOC_STATUS_WRITE_TO_DATABASE'
         EXPORTING
              idoc_number     = docnum
              no_dequeue_flag = space
         TABLES
              idoc_status     = it_status
         EXCEPTIONS
              OTHERS          = 0.
    Keep in mind, that you need, from time to time, run the report RBDMOIND (or transaction BD75) to check if the IDoc's were correctly handled (send). This will then set status 12 for all status 03 outbound IDoc's and will report problems.
    Regards,
    Rob.

  • Production order settlement status table

    Hi All,
           How shoud i know the production order is settled or not ? Some status i given here SETC Settlement rule created
    VCAL Variances calculated, REL released,CNF conformed ,in a month  10 order created some are conformed some are relesed sone are settled . The question is how i konw which order is settled ?
    Is there any table there where i see the settled order ?*
    Thanks & Regards,
    Debashis

    Hi Debashis,
    Pl use the T-Code # KOC4 to know which Orders got settled and posted to VARIANCE & which Orders got posted to WIP.
    Once you get the output, if you don't see the fields of "VARIANCE" & "WIP", pull the same by changing the layout.
    Let me know, if you have any questions on this.
    Regards,
    Pandu

  • How to migrate CSSCAN report exceptional status tables

    Hi All,
    In the Csscan output report I found some tables under exceptional status,
    how to migrate those tables data?
    Note:- I am doing character set migration from US7ASCII to UTF8.
    Thanks,
    Sankar

    [How to post a SQL statement tuning request|http://forums.oracle.com/forums/thread.jspa?threadID=863295&tstart=0]
    [When your query takes too long...|http://forums.oracle.com/forums/thread.jspa?messageID=1812597#1812597]
    And when you post source code:
    {{noformat}code{noformat}}
    ....Post Your Code Here....
    {{noformat}code{noformat}}
    something I noticed:
    AND trunc(t.invoice_date) BETWEEN '01-Jan-2009' AND '31-Dec-2009' you are comparing DATE with STRING.... this calls for implicit datatype conversion

  • Save report painter output into internal table

    Hi,
      i have created a report painter for vendor aging report. got output in drill down format.
    i need to show the data in smartform as well. so need to save the report painter output into an internal table. can anyone please help me resolving this.
    regards,
    sudha.m

    Hi Sudha
    You can use sample below:
    DATA: list_tab TYPE TABLE OF ABAPLIST.
    SUBMIT NROWS EXPORTING LIST TO MEMORY
                  AND RETURN VIA SELECTION-SCREEN.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject = list_tab
      EXCEPTIONS
        not_found  = 1
        OTHERS     = 2.
    IF sy-subrc = 0.
      CALL FUNCTION 'WRITE_LIST'
        TABLES
          listobject = list_tab.
    ENDIF.
    Best regards

  • How do I put this output into a table ?

    I query a table and output using the following :
    <cfoutput query="qryAreas"
    group="state">#state#<br>
    <cfoutput
    group="city"> #site#<br><cfoutput>  #zipcode#<br></cfoutput><p>
    </cfoutput>
    </cfoutput>
    Since this is dynamic, the output gives me one column all the
    way down to the end of the page/screen.
    How do I dynamically output this into a table with two or
    three columns, displaying the same data as above ?
    I can probably do individual queries and put each one into a
    <td> but there has to be a better way to do this
    dynamically.

    My current output, without table, list the first state, then
    the first city under that state, then all zipcode for that city. It
    then list the second city for that state and all zipcodes for that
    city, When all the cities are exhausted for that state, it skips a
    line and then lists the next state, city, etc., and starts the
    process all over again. It gives me one column to the end of the
    screen.
    So for each td, I would like to have the state, the cities
    and zipcode, then the next td would have the next state, all cites
    and zipcodes, etc. I would not know how many states are in the
    table, so each td should contain a state.

Maybe you are looking for

  • Changing font and background color for all components

    Hi, This is my first time writing a GUI, and I'm pretty new to Swing and Java. I just recently switched from C++, and so far Java seems to be doing a nice job =) Currently I have a gazilion components (textfields, labels, panels) and I'm wondering if

  • Safari will not open, freezes and closes

    When I go to open Safari, it starts but hangs.  After a period it closes and lists the problem as crash in Thread 6 Safari: SnapshotStore.  I cannot select preferences to maybe disable java or anything else since it stalls almost immediately.

  • How can I tell when the NEW firmware is available ?

    Although the firmware became available for the 'z2 tablet' very quickly - nothing has appeared for the phone (UK - SIM free). I have tried the update several times (with my PC) & am just told 'up to date'.... I remember with the 'xperia s' I had to c

  • Limiting number of rows returned by SQVI

    I've created a query in SQVI and I need to limit the number of rows returned by the query.  (I'm using the query as an exploratory tool, and it's not easy to predict how many records will be returned based on the selection fields I'm using.) Is there

  • Published pages layout changes from iWeb page design why ?

    In a couple of pages the layout changes from iweb design to published site, text appears out of place and headers mixed with body text ? I have gone back to iweb but all is Ok within the file and pages visually, just publishing the site makes text ch