Print Date located in Special Fields In Field Explorer

Post Author: sher
CA Forum: General
The "print date" on my report displays the first date I ran the report which was 6/11/07. This date should display the system date/current date.  Do you know why this is happening in my report?

Hello,
A print document consists of a print header and document lines. Posting documents are allocated to the document header by table ERDB.
Data is saved in the document header (table ERDK)
Data is stored in the document lines (structure ERDZ) that is available for the bill printout
Call the transaction Print out Document(s) (EA60). You define the selection parameters in this transaction. You specify the creation reason. You must also specify whether simulated, posted or unreleased documents are to be selected.
Call transaction Display Print Document (EA40) and enter the number of a print document display.
Also look into T-Code DFKKCOH. When Invoice is printed this table gets updated with ID and Date. For this you need to run FPCOPARA. Choose appropriate Corr Type
Hope this is helpful
Rgds
Rajendra

Similar Messages

  • Cannot view or print data in fillable form fields

    I created a fillable form and users complete the form and email back to me.  For some, but not all, users, when I get their form, the data in the fields is not visible unless I click on field.  At first I thought they emailed me a blank form, but when I click on the field the data they entered is visible. Data doesn't print either.
    Can I fix the form once they send it to me or do I need to adjust the original fillable pdf? Thanks in advance.

    Most likely it's due to corruption caused by the Preview application on the Mac when it saves PDF forms. For more information and something you can do about a corrupted form, see: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html

  • Is there any way to print  the data inside  the Notes field of MIR6 Report

    Hello Gurús.
    We need to include the data inside the Notes field in the report MIR6 - INVOICE OVERVIEW - report.
    Is there any way to print  the data inside (comments)  the Notes field as well in the Report  ?
    We found that the only way is to open the Notes and print it, but it takes time, any idea ?
    Rgds.
    MCM.

    There's nothing built-in that does that. If you only have text fields and they don't have any formatting or other property that would prevent it (e.g., Date, character limit), you can run a simple script to populate each field with the field name, and then print. A more complicated approach would be a script that adds text annotations near/over each field that shows the field name. This would just be for documentation purposes, but it's possible. Post again if you'd like help with the first. You'll probably have to pay someone for the second approach if you don't want to do it yourself.

  • In Pages, how to insert a PRINT-DATE field into a doc.?

    Want to insert a field that will show the date of the doc's printing. 
    In MS Word, this is known as 'insert print date'.
    How to do so in Pages?  Thanks.

    You can define placeholder text in Pages v5.5.2 in any of the six header/footer sections. Think of it as a a field code that when you click on it the text you enter replaces the placeholder text using the same style. By example, I placed a combination of text and placeholder text in the lower left footer segment.
    The text and the brackets were selected, and then Format ▸ Advanced ▸ Define as Placeholder Text. Also, because it is in the footer, it is replicated throughout the document. Although you could Insert > Date/Time into this placeholder text, automation may be preferred. I have chosen to use the same date/time style as MS Word uses in its print date field code. You can only change placeholder text programmatically with Pages and AppleScript on Yosemite. Once I run the AppleScript, all placeholder tags are replaced as shown in this image:
    You could make this an Automator Service (e.g. run AppleScript action with no input, and output replacement is checked). One could assign a keyboard shortcut to this service too. One click printed date stamp and document sent to default printer.
    The AppleScript (Yosemite only).
    property tagStr : "[print-date]"
    --- used for testing ---
    -- set f to POSIX path of ((path to desktop) as text) & "arg.pages"
    -- set hf to POSIX file f as alias
    set printDate to "" as text
    set theTags to {}
    tell application "Pages"
          activate
          -- open hf
          tell front document
               set theTags to the tag of every placeholder text whose tag is equal to tagStr
               -- Word print-date field code uses this 12-hour date/time format as mm/dd/YY 00:00 AM/PM
               set printDate to do shell script ("/bin/date +'%D %l:%M %p'") as text
               repeat with i from 1 to count of theseTags
                     set thisTag to item i of theseTags
                     set (every placeholder text whose tag is thisTag) to printDate
               end repeat
               -- use your own System Preferences printer name string
               tell application "Samsung ML-2950 Series (Sammy)"
               activate
               -- no print dialog
                    print front document without «class pdlg»
                    quit
               end tell
          end tell
          -- close front document saving no
    end tell

  • FAGLL03 Special Field Values Do Not Display in Production

    We are using the new GL in ECC 6. I have a strange problem where special fields that were added to the line item transactions display in dev and quality but not in production. Please read the steps that I have taken.
    1. Using note 984305 we defined special field BSEG-MATNR using this path:
    Financial Accounting (New)
      General Ledger Accounting (New)
        Master Data
          G/L Accounts
            Line Items
              Define Special Fields for Line Item Display
    This field (U_MATNR) displays correctly in FAGLL03.
    2. I used note 1034354 to create an implementation of BAdI 'FAGL_ITEMS_CH_DATA. Then I
    followed the documentation of the BAdI to create structure CI_FAGLPOSX within FAGLPOSX and added these fields:
    Material Type: field MARA-MTART
    Material Group: MARA-MATKL
    I added code to method CHANGE_ITEMS to read for those fields. Here's part of the code:
    * MARA - Get Material Type and Material Group
        SELECT SINGLE mtart matkl
          FROM mara
          INTO (wa_items-zzmtart, wa_items-zzmatkl)
          WHERE matnr = wa_items-u_matnr.
    The values of these fields display correctly in development and quality, but they do not display in production.
    3. When I debugged FAGLL03 in development I found that the value of U_MATNR was filled when I stopped at method CHANGE_ITEMS. However, when I debugged in production, U_MATNR was not filled. It had to be filled at a later time because the value appears on the report. In my code, I am using U_MATNR to find the values of material type and material group. Because U_MATNR doesn't have a value at that point in time in production, my code doesn't find material type or material group.
    4. I contacted SAP and was instructed to use note 984305. I executed the function module
    ITEM_STRUC_EXTENSION which did not help.
    5 I also used note 205096 to execute report BALVBUFDEL, but this did not help either.
    6. At this point, SAP told me that it is a consulting issue. I'm not sure that it is because I'm using SAP solutions without modifying anything.
    7. I tried to compare configuration between development and production, but everything looked OK to me.
    Has anyone had this problem? Any tips?
    Brenda

    Hi Brenda,
    >
    Brenda Bankert wrote:
    > 6. At this point, SAP told me that it is a consulting issue. I'm not sure that it is because I'm using SAP solutions without modifying anything.
    I have no idea except that you can make sure Include CI_FAGLPOSX is active as well as the including FAGLPOSX. And please check the transport protocol(s) if CI_FAGLPOSX  is included. If you have any kind of error/warning in the import protocol, that may give you a hint.
    If nothing helps, create a new sap support case and tell them you are using SAP solutions without modifying anything.
    Regards,
    Clemens

  • How to store bit data in VARCHAR(4000) field?

    Hi.
    Please help!
    We are porting some C/C++ software with embedded SQLs from NT/DB2 to Linux/Oracle.
    On NT/DB2 we have some table to store file data in a VARCHAR(4000) blocks.
    Table looks like this
    CREATE TABLE FileData (filetime as timestamp not null, idx int not null, datablock varchar(4000) FOR BIT DATA not null, primary key (filetime, idx) );
    As you can see DB2 has appropriate field modifier - "FOR BIT DATA" which makes DB2 storing data as-is, not converting characters.
    I need to know - if it is possible to do the same in Oracle like in DB2?
    If Oracle has some kind of field modifier like "FOR BIT DATA" in DB2?
    If not, how can I do the same in Oracle?
    The current problems are:
    1) when application imports the file with some national chars the Oracle stores "?" in a database in place of national chars.
    2) another piece of a problem - if file is more than 4000 bytes length, it reports the ORA-01461 error (see it is trying to expand some chars to UTF8 char which is not fit a single char, so finally - not fit the field size).
    So, it seems that it cannot proceed national chars at all. :-\
    For details please see enclosed [C code|http://dmitry-bond.spaces.live.com/blog/cns!D4095215C101CECE!1606.entry] , there is example how data written to a table.
    In other places we also need to read data from FIELDATA table and store back to file (other filename, other location).
    Here is summary on a field-datatype variants I have tried for the "datablock" field:
    1) VARCHAR2, RAW, LONG RAW, BLOB - does not work! All reports the same error - ORA-01461.
    2) CLOB, LONG - both working fine but(!) both still returns "?" instead of national chars on data reading.
    Hint: how I did try these field types - I just drop the "FileData" table, created it using different type for "datablock" field and run the same application to test it.
    I think I need to explain what the problem - we do not provide direct access to Oracle database, we use a some middle-ware. Middle-ware is a C/C++ software which also has a interface for dynamic SQLs execution. So, exactly this middle-ware (which is typically running on the same server with Oracle) receives the "?" instead of national chars! But we need it to return all data AS-IS(!) without any changes!!! That is wjhy I did ask - if Oracle has any options to store byte-data as-is?
    The BIG QUESTION - HOW CAN WE DO THIS?!
    Another thing I need to explain - it is ok to use Oracle-specific SQL ONLY IF THERE IS REALLY NO WAY TO ACHIEVE THIS WITH STANDARD SQL! Please.
    So, please look on a C code (by link I have posted above) and tell - if it is possible to make working in Oracle the VARCHAR approach we using at the moment?
    If not - please describe what options do we have for Oracle?
    Regards,
    Dmitry.
    PS. it is Oracle 11gR2 on CentOS 5.4, all stuff installed with default settings, so Oracle db encoding is "AL32UTF8".
    C/C++ application is built as ANSI/ASCII application (non-unicode), so sizeof(char)=1.
    The target Oracle db (I mean - the one which will be used on customer site) is Oracle 10g. So, solution need to be working on Oracle 10g.

    P. Forstmann wrote:
    There is some contradiction in your requirements:
    - if you want to store data as is without any translation use RAW or BLOB
    - if you want to store national character data try to use NVARCHAR2 or NCLOB.Seems you did not understand the problem. Ok, I'll try to explain. Please look on the code sample I provided in original question
    (I just added expanded data structures there, sorry I forgot to publish them when post original question):
    EXEC SQL BEGIN DECLARE SECTION;
      struct {
        char timestamp[27];
        char station[17];
        char filename[33];
        char task[17];
        char orderno[17];
        long filelen;
      gFilehead;
      struct {
        char timestamp[27];
        long idx;
        struct {
          short len;
          char arr[4001];
        } datablock;
      gFiledata;
    EXEC SQL END DECLARE SECTION;
    #define DATABLOCKSIZE 4000
    #ifdef __ORACLE
      #define VARCHAR_VAL(vch) vch.arr
    #elif __DB2
    #endif
    short dbWriteFile( char *databytes, long datalen )
      short nRc;
      long movecount;
      long offset = 0;
      gFilehead.filelen = gFilehead.filelen + datalen;
      while ((datalen + gFiledata.datablock.len) >= DATABLOCKSIZE)
        movecount = DATABLOCKSIZE - gFiledata.datablock.len;
        memcpy(&VARCHAR_VAL(gFiledata.datablock)[gFiledata.datablock.len], databytes, movecount);
        gFiledata.datablock.len = (short)(gFiledata.datablock.len + movecount);
        exec sql insert into filedata (recvtime, idx, datablock)
          values(
            :gFiledata.recvtime type as timestamp,
            :gFiledata.idx,
            :gFiledata.datablock /* <--- ORA-01461 appears here */
        nRc = sqlcode;
        switch (nRc)
        case SQLERR_OK: break;
        default:
          LogError(ERR_INSERT, "filedata", IntToStr(nRc), LOG_END);
          exit(EXIT_FAILURE);
        offset = offset + movecount;
        datalen = datalen - movecount;
        gFiledata.idx = gFiledata.idx + 1;
        memset(&gFiledata.datablock, 0, sizeof(gFiledata.datablock));
        databytes = databytes + movecount;
        gFiledata.datablock.len = 0;
      if (datalen + gFiledata.datablock.len)
        memcpy(&VARCHAR_VAL(gFiledata.datablock)[gFiledata.datablock.len], databytes, datalen);
        gFiledata.datablock.len = (short)(gFiledata.datablock.len + datalen);
      return 0;
    }So, the thing we need is - to put some data into the "datablock" field of following structure:
      struct {
        char timestamp[27];
        long idx;
        struct {
          short len;
          char arr[4001];
        } datablock;
      gFiledata;Then insert it into a database table using static SQL like this:
        exec sql insert into filedata (recvtime, idx, datablock)
          values(
            :gFiledata.recvtime type as timestamp,
            :gFiledata.idx,
            :gFiledata.datablock /* <--- ORA-01461 appears here */
            ); And then expect to read exactly the same data back!
    The problems are:
    1) Oracle make decision to convert the data we are inserting (why? and how to disable converting?!)
    2) even if it inserts the data (CLOB and LONG field datatypes are working fine when inserting data with such static SQL + such host variable) then it became not readable! (why?! how to make it readable?!)
    P. Forstmann wrote:
    ORA-01461 could mean that you have a wrong data type for bind variable variable in your client code:Not me decided that host variable is the "LONG datatype value" - the Oracle make that decision instead of me. And that is the problem!
    Looks like Oracle react on any char code >= 0x80.
    So, assume if I run the code:
    // if Tab1 was created as "CREATE TABLE Tab1 (value VARCHAR(5))" then
    char szData[10] = "\x41\x81\x82\x83\x84";
    EXEC SQL INSERT INTO Tab1 (value) VALUES (:szData);
    Oracle will report the ORA-01461 error!
    EXACTLY THIS IS THE PROBLEM I HAVE DESCRIBED IN MY ORIGINAL QUESTION.
    So, problem - why Oracle make such decision instead of me?! How we can make Oracle insert data into a table AS-IS?
    What other type of host variable we should use to make Oracle think that data is a binary?
    void*? unsigned char? Could you please provide any examples?
    Ok, you did recommend - "use the RAW datatype". But RAW datatype is limited to size 2000 bytes only - we need 4000! So, it is not match our needs at all.
    Also you have mentioned "use BLOB" - but testing shows that Oracle reports the same ORA-01461 error on inserting data into a BLOB field from such host variable! (see the code I posted)
    What also we can do?
    Change type of host variables? BUT HOW?!

  • Using Special Fields in Formula's

    Hello,
    I'm trying to use a Crystal "Special Field" to filter data in my report. Specifically, I want to use the "Current CE User Name" field to achieve row-level security. Does anyone know how to use these fields in parameters or filters?
    Regards,
    Gilbert

    You can use the special field CUrrentCEUserName like this
    If (IsNumeric(Right(CUrrentCEUserName,3))) then
       ToNumber(Right(CUrrentCEUserName,3)) = {dbvalue}
    else
       ToNumber(Right(CUrrentCEUserName,2)) = {dbvalue}

  • Add a special field in Line Item Display.

    Hi Gurus,
    I need to add the field "Entry Date" in the GL report FAGLL03. I added the entry -
    BKPF - CPUDT in the Settings => Special Fields from the menu bar.
    Also mentained the same in SE11.
    It's working fine on Quality Server, but when I transfer the request to Production, it creates an Workbench request only and also the field "Entry Date" is not available for selection in Select Layout - Hidden Fields.
    I think I need to run some program fot the same to execute or anything else. Can you guide me to a proper solution or advide me if I am doing somethign wrong.
    Regards,
    Devang

    Hi,
    Thanks for your knowledge, but I did exactly the same and cant get the Field in  the Field Selection - Hidden Fields.
    Currently referring Note # 984305.
    YES!!!!!!!!!!!!!!!!
    I DID IT
    After referring to the above note, I had to ...
    Call transaction SE37, enter the function module ITEM_STRUC_EXTENSION and execute it with the following parameters:
    BASIC_STRUCNAME                 FAGLPOSY
    EXT_STRUCNAME                  FAGLPOSYEXT
    EXT_FIELDS_TABNAME              T021S
    I_LSTCL                         D
    X_TRANSPORT                     ' '
    Thats it......
    Thanks,
    Devang
    Edited by: Devang_Sangani on Apr 22, 2010 6:02 PM

  • Split imported XML data into multiple text fields

    I should first describe my final project because it is very possible that I am going about this entirely wrong!
    I am trying to create an interactive PDF file which is the floor plan of our office, when you mouse over the office spaces it would popup the info for the person in that office, in fact when you click on the office space it would show additional info like computer MAC and jack numbers
    I placed the floor plan as a layer and them created a second layer with no fill/no stroke rectangles over the offices and made them buttons (office01, office02)
    I then made text fields with the info for the people, one for regular info and one for extra info (office01-data, office01-Xdata) I made these text fields buttons as well and had them "hidden until triggered"
    These info fields are all on top of one another, as in the are all the same size and in teh same location
    Then I went to the office buttons and created events "On Roll Over" "Show/Hide Buttons and Forms" and changed the visibility of the corresponding info button.
    This works like a charm!
    I hope I am clear up to this point.... my problem now is I would like to import this data both regular and extra from an excel spreadsheet or an XML file.
    That way when we get new staff or people move offices or whatever I can update the spreadsheet or XML file, rerun my InDesign file and create a new interactive PDF
    I have created the XML file
    <staffMap>
         <staff>
              <name>John Doe</name>
              <computerName<gfth56df</computerName>
              <phoneMAC>00:08:00:AB:CD:EF</phoneMAC>
         </staff>
    <staff>
              <name>John Smith</name>
              <computerName<gfth06cb</computerName>
              <phoneMAC>00:08:00:11:22:33</phoneMAC>
         </staff>
    </staffMap>
    Created a new InDesign document
    Imported the XML and placed it in a text field
    saved as a template and closed it
    Reopen and import the XML data again... and it brings it all into the text field... wonderful and useful but not what I need.
    Is it possible to import the XML data into separate test fields, or into some other separate field that I can make into a button and show/hide?
    I may end up just entering all the data directly into InDesign as I know this will work, it just does not seem like the right way to do it.
    Thanking you all in advance 

    I am still looking to get some help with this.
    I would love to know if it is not possible or any ideas at all

  • Special Field Record Numbers

    I have this information in a group header and there is some suppression based on dollar figures.  When I change the date to pull the information my record numbers change but I do not see the reasoning.  I also tried to use a formula for a record counter and got the following
    Last Name          record number          Formula record counter
    Allen                         1                                   1
    Balz                          2                                   2    
    Brazzell                     3                                   3
    Brochey                     4                                   4  
    Brod                          5                                   5   
    Bull                            6                                   6    
    Bull                            7                                   7
    Cahill                          8                                   8    
    Date change I get this         
    Last Name          record number          Formula record counter
    Agro                         1                              1    
    Allen                         5                              4
    Allen                         12                             7
    Altheide                    14                            10
    Anderson                  18                            13
    Anello                       21                            16
    Arist                         22                             19
    I'm going nuts with this one!!!

    Hi Peggy,
    The record number special field does not account for suppressed records!
    If you're using a formula to number each row, you also need to include the condition where a particular row is not numbered.
    Something like this:
    whileprintinrecords;
    numbervar row_count;
    if <condition> then
         row_count := row_count + 1;
    Plug the condition you have as the suppression formula in the <condition> portion of the code above. For e.g: If the rows are suppressed for rows where the 'sales figure' is less than 500, then the <condition> part of the code above would be:
    if {sales_figures} > 500 then
         row_count := row_count + 1;
    -Abhilash

  • Data in One Text Field or the Other

    I have two numeric fields and there need to be a value in either one or the other not both, is there a way to make this happen.
    Thanks

    Steve,
    What I was look for was if the user inputs data in the "SSN" field with would be unable to put data in the "Passport#" field and visa-versa.
    Thanks

  • No Data in Field Explorer

    Post Author: Ice_Berg
    CA Forum: .NET
    Hi... I'm currently using visual studio 2005 team edition and the built-in Crystal report.In my report, i use the Project data source (from ado.net, I created a view before in the database).In visual studio, when i open the view to see the the data in the table, i have 1 record.however, when i use that view (or even table) in the crystal report, when i try to browse the data from the field explorer, i see no data.please help me to fix this problem, is there anything wrong that i do? thank you in advance for your helpBest regards Danny

    Michael,
    We had a similar situation but from my reseach the output from the stored procs cannot be viewed in the report designer in Eclipse. So we had to design the reports using the Crystal Reports Devloper application (the stand-alone version, not the Eclipse editor). The reports were designed w/an ODBC datasource. In order to get that working we had to create a JNDI JDBC datasource connection w/the exact same name as the ODBC datasource and that works. For example, the ODBC datasource was named OP01DSDB01.WORLD so we just created a JNDI datasource w/that exact same name (no jdbc/OP01DSDB01.WORLD just OP01DSDB01.WORLD). I'm not sure if there is a workaround for any of this but this was the easiest way to get them working.
    I know this isn't the ideal situation, but that was the easiest way to get things working.

  • Data fileds and key fields in DSO

    Can any one explain what exactly difference between data fileds and keyfields in DSO or the concept of these two
    And how to know which fields should be assigned to data filed or key field
    with regards,
    musai

    Hi Musai,
    Let me take an ex. Say you have 3 fields A, B & C. Let us assume 'A' is keyfield, 'B' & 'C' are Datafields.
    Lets assume the PSA data is :
    A             B              C
    001      Musai        89.9  
    002      Musai        89.9
    003      Pavan       75.00
    So when you load the data to DSO, since all the keyfield values are unique (001,002,003), all the records will get loaded to DSO.
    But If PSA data is :
    A             B              C
    001      Musai        89.9  
    001      Musai        85.7
    003      Pavan       75.00
    Only 2nd & 3rd rows will be loaded to DSO since 1st & 2nd row have same value for keyfield (001). So 1st row gets overwritten(or summation depending on what is the setting in Transformation rule for C considering C is Keyfigure) by 2nd when you load to DSO. 3rd row doesn't have any problem. So that will go as it is.
    Also please note that we cannot use Keyfigures as keyfield.
    Hope it is clear now!
    Regards,
    Pavan

  • Data mising in few fields while activating DSO

    Folks,
    Here is a situation.
    I am loading GL line Items into a DSO. In the transformation, I have written a End routine to read into another DSO and fill some custom fields.
    After DTP, I see these new fields populated in the New Data table for the GL DSO. Once I activate and Look into the active table contents, The data in the Custom fields populated by the end routine is missing.
    I thing I am missing something here. Can anyone help.
    In a nutshell, I see the data in New Data Table and after activation the information which is populated by end routine is missing in the Active Data table.
    Your help is highly appreciated.

    Hi Sam
    When you write a end routine, by default, only fields that have a rule in the transformation are transferred from the end routine.
    There is a button in your transformation close to the end routine button which will change the behavior of the end routine. Set it to all target fields.
    As a result, fields that are only filled in the end routine are updated and are not lost.
    This should solve your problem
    Regards
    Gaurav

  • To show a special field on the ME2K report

    Hi everyone,
    The question is about adding a field in the ME2K report. In the layout is needed the PO status, that is wether the PO is still open/completed or not. I was taught dynamic selection can be used to filter by the 'Delivery Completed' criteria, however the info does not appear on the report when doing this way. Is there a way, excl. programming a new transaction, to have the 'Delivery Completed' field appearing on the report? Are special fields available for ME2K?
    Many thanks and regards,
    SB

    to close

Maybe you are looking for