Prcing append tables - abapers

HI friends
all fields using for pricing in access sequence has to be append in KOMPAZ, KOMG, KOMK and KOMP.--?
pelase let me know.
Thanks
Kris

Hi,
All  'KOMPAZ, KOMG, KOMK and KOMP.--?' are structres not tables i.e structres contains the data during the runtime only not the static data.
Access sequence data is saved the table T682Z.
Thanks and regards,
shyla

Similar Messages

  • A Select statement with Appending table statement in it.

    Hi,
      How can I use a select statement with a <Appening table> statement in it.
    SELECT DISTINCT <field Name>
                    FROM <DB table name>
                    APPENDING TABLE <itab>
                    WHERE <fieldname> EQ <Itab1-fieldname>
                      AND <fieldname> EQ <itab2-fieldname>.
    Can I use the above select statement.If I'm using this...how this works?
    Regards
    Dharmaraju

    Hi, Dharma Raju Kondeti.
    I found this in the SAP online help, hope this can help you.
    Specifying Internal Tables
    When you read several lines of a database table, you can place them in an internal table. To do this, use the following in the INTO clause:
    SELECT ... INTO|APPENDING [CORRESPONDING FIELDS OF] TABLE <itab>
                              [PACKAGE SIZE <n>] ...
    The same applies to the line type of <itab>, the way in which the data for a line of the database table are assigned to a table line, and the CORRESPONDING FIELDS addition as for flat work areas (see above).
    The internal table is filled with all of the lines of the selection. When you use INTO, all existing lines in the table are deleted. When you use APPENDING; the new lines are added to the existing internal table <itab>. With APPENDING, the system adds the lines to the internal table appropriately for the table type. Fields in the internal table not affected by the selection are filled with initial values.
    If you use the PACKAGE SIZE addition, the lines of the selection are not written into the internal table at once, but in packets. You can define packets of <n> lines that are written one after the other into the internal table. If you use INTO, each packet replaces the preceding one. If you use APPENDING, the packets are inserted one after the other. This is only possible in a loop that ends with ENDSELECT. Outside the SELECT loop, the contents of the internal table are undetermined. You must process the selected lines within the loop.
    Regards,
    feng.
    Edited by: feng zhang on Feb 21, 2008 10:20 AM

  • Append table with multi-line cells to word report

    Hi,
    I am using LabView 7.0. I need to append table to word report and I am using Append Table to Report VI. My VI works fine as long as the table cells do not have multiple lines. For multiple lines, each line is put is a seperate cell in the word report.
    Is there a way to append multi-line cells to Word Report??? If not, any suggestions on how I can copy the multi-line table to Word report???
    Please kindly help!!
    Please see the attached document for details on the problem.
    Thanks,
    Mim
    Attachments:
    Table with multiple line cells.doc ‏33 KB

    Hi Mim,
    Yes I understood the multiple-lines part. I think the doc is the report you want. Correct ?
    The doc is generated with your VI without any modifications.
    I am using XP, Office 2002 SP3 and LV7.1
    Attachments:
    Verification Report.doc ‏39 KB

  • ColHdrStri​ng property of Multi-Colu​mn lisbox - Append Table to Report.vi not working - solution.

    Solved an interesting problem today.  Rather than stash somewhere on the laptop I'll post
    here in hopes of being able to find it again next year   Maybe save someone else some time, too.
    Application with several similar multi-column listboxes, each of which has to be printed in a standard
    report.  Put each mc box on a tab, wire references array to a for loop in the print .vi.  Print function
    uses the ColHdrString property node to pull out the column headers to send to Append Table to Report.vi.
    First 4 tables print properly, last 2 have no column headers.  Property node is retrieving all correctly, no
    errors propogated.
    Turns out that the last 2 tables were copied from one of the first 4 but required fewer columns.
    Unneeded columns were deleted.  Apparently deleted columns, however, have their header
    blanked, not deleted.  ColHdrString property node was returning empty strings for the unused
    columns and Append Table to Report.vi was internally generating errors but not passing them
    out.  Tables printed properly other than missing headers.
    Solution was to delete and replace tables.  Everything works fine now.
    Matt

    Easier than replacing the table is to use property nodes to retrieve the corrupt header list,
    delete from array to correct it, and a property node to put it back.  Once a table is corrected
    it stays corrected so this snippet can be deleted after running once.
    Matt

  • Printing Infinite # of Columns in Append Table to Report

    I am in need of a bit of help here in regards to dealing with the Append Table to Report.vi
    With this VI I can print up to a certain # of columns before the VI starts to wrap columns (& subsequent data under each column) downward in vertical manner.
    I am looking for a way to do the following:
    1) center the text in all columns
    2) set a pre-set # of columns per page, and then print the remaining columns to a separate page thereafter
    3) avoid column header & data from being folded beneath to the subsequent row
    See the attached code and print-outs.
    Thanks!
    Solved!
    Go to Solution.
    Attachments:
    Example Test Report.vi ‏36 KB
    Too many columns!.pdf ‏12 KB

    Using the "Append Table to Report" VI, you can't specify center alignment, through if you enable gridlines, it makes the tables more readable.  If you were to generate an Excel report, you would have more control and be able to specify cell alignment.
    In the Report Generation Toolkit, using Standard Report, there is no way to get or automatically print the page number.  You can do it manually by keeping track of how many pages have been printed if your using the "New Report Page" VI.  
    Using the VI script you posted, I modified it to illustrate how to selectively add columns to the report.  Its usually not standard practice for us to write code for customers, but this example seemed good for the Community Example Page (http://www.ni.com/code/), and with your permission I'd like to post it there as well.
    Product Support Engineer
    National Instruments
    Attachments:
    Example_Test_Report_Done.vi ‏43 KB

  • HOW TO APPEND TABLE ON ORACLE DATABASE?

    DEAR ALL,
    CAN ANY ONE SUGGEST ME WITH SOME SAMPLE CODE AS TO HOW TO UPDATE AND APPEND TABLE ON ORACLE DATABASE USING SQL.
    EXEC SQL.
    APPEND TABLE FROM INT-TABLE.
    END EXEC.
    WILL THIS WORK.

    Check the sample code:
    DATA Y TYPE I VALUE 300.
    DATA Z TYPE I.
    EXEC SQL.
      INSERT INTO AVERI_CLNT (CLIENT, ARG1, ARG2, ARG3)
             VALUES ('000', 9, 2, 47)
    ENDEXEC.
    DATA: F1(3), F2(3), F3(3).
    F3 = ' 1 '.
    EXEC SQL PERFORMING WRITE_AVERI_CLNT.
      SELECT CLIENT, ARG1 INTO :F1, :F2 FROM AVERI_CLNT
             WHERE ARG2 = :F3
    ENDEXEC.
    FORM WRITE_AVERI_CLNT.
      WRITE: / F1, F2.
    ENDFORM.
    Check the below link:
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3b8b358411d1829f0000e829fbfe/frameset.htm
    Regards,
    Prakash.

  • Append table - Regenerating a maintenance view

    People,
    I would like to create one more fied in a standard table, so I will create an append in this table.
    But it has a maintenance view associated to it. As this is a standard table, is there a way to regenerate this maintenance including the new field ?
    Thanks a lot!

    I´m not sure the maintenance view is regenerated.
    This is a standard table and I don´t want to get an access key to solve this.
    Anyone here has this experience?

  • Which FM can append table sturcture(add key fields and so on)

    Hi everybody,
    does any one of u know a FM which append structures of table (to add the key fields and so on) in ABAP dictionary.
    The FM DDIF_TABL_PUT is only used to write a new table and I don't want to call this FM twice to realize my application.
    Thanks in advance!
    Liying

    Hi Raja,
    I got a runtime error:Perform_NOT_FOUND
    EXCEPTION:CX_SY_DYN_CALL_ILLEGAL_FORM
    following is my codes:
    DATA ATA DDFIELDS LIKE DDFIELD OCCURS 2 WITH HEADER LINE.
    DATA NAME LIKE DD02L-TABNAME.
    DDFIELDS-FIELDNAME = 'F3'.
    DDFIELDS-POSITION = '3'.
    DDFIELDS-KEYFLAG = 'X'.
    DDFIELDS-DATATYPE = 'INT4'.
    APPEND DDFIELDS.
    DDFIELDS-FIELDNAME = 'F4'.
    DDFIELDS-POSITION = '4'.
    DDFIELDS-KEYFLAG = ''.
    DDFIELDS-DATATYPE = 'INT4'.
    APPEND DDFIELDS.
    NAME = 'ZTEST'.
    CALL FUNCTION 'DB_ADD_TABLE_FIELDS'
        EXPORTING
            TABNAME = NAME
        TABLES
            DDFIELDS = DDFIELDS
        EXCEPTIONS
            FIELDS_NOT_ADDED = 01
            PROGRAM_NOT_GENERATED = 02
            PROGRAM_NOT_WRITTEN = 03
            TABLE_DOES_NOT_EXIST = 04.
    What might be the reason?
    B.R.
    Liying

  • Problem with append table

    Hi,
    i want to insert a line into a internal table ; the type of table is a type of table for example Z_MYSTRUCT. Z_MYSTRUCT is a type of line so to insert a new line into my table i can't do this :
    data : l_new type Z_MYSTRUCT.
    l_new-field1 = 'value'.
    append l_new into mytable.
    How can i do this ?
    Regards

    Thanks for prompt reply.
    I have an requirement where in transaction MIGO. when user clicks on POST button, at that time the data should be e-mailed to the Vendor.
    So for that i have created a Z implementation of BADI MB_MIGO_BADI.
    Now in that i have written a Function Module name as Z_SENDMAIL.
    where i have table paramater which is of type BCSY_TEXT which is again of LINE type of SOLI.
    Now the data of MIGO is filled in table IT_MSEG which is paramter of Method POST_DOCUMENT of  MB_MIGO_BADI.
    So problem comes that how should i fill the data in my line type table of Function Module.
    For your information i am sending you the FM.
    FUNCTION Z_SENDMAIL.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(FROM) TYPE  ADR6-SMTP_ADDR OPTIONAL
    *"     REFERENCE(TO) TYPE  ADR6-SMTP_ADDR OPTIONAL
    *"     REFERENCE(SUBJECT) TYPE  SO_OBJ_DES
    *"     REFERENCE(FLAG) TYPE  CHAR1 OPTIONAL
    *"  EXPORTING
    *"     REFERENCE(RETURNCODE) TYPE  SY-SUBRC
    *"  TABLES
    *"      IT_TEXT TYPE  BCSY_TEXT
    *"      IT_EMAILS STRUCTURE  SOMLRECI1 OPTIONAL
    TYPES : BEGIN OF TS_REC,
                RECIPIENT        TYPE REF TO IF_RECIPIENT_BCS,
              END OF TS_REC.
      DATA : IS_T1(255)          TYPE C,
             IT_REC             TYPE TABLE OF TS_REC,
             IS_REC             TYPE TS_REC,
             W_EMAIL            TYPE ADR6-SMTP_ADDR,
             W_TEXT             TYPE BCSY_TEXT,
             W_DOCUMENT         TYPE REF TO CL_DOCUMENT_BCS,
             W_SENDER           TYPE REF TO IF_SENDER_BCS,
             W_RECIPIENT        TYPE REF TO IF_RECIPIENT_BCS,
             W_SENT_TO_ALL      TYPE OS_BOOLEAN,
             W_OREF             TYPE REF TO CX_ROOT,
             W_TEXT1            TYPE STRING,
             W_SEND_REQUEST     TYPE REF TO CL_BCS,
             W_TABIX            TYPE SY-TABIX.
      CONSTANTS:  C_TYPE      TYPE SO_OBJ_TP VALUE 'RAW',
                  C_LENGTH    TYPE SO_OBJ_LEN VALUE '12',
                  C_X         TYPE C VALUE 'X'.
      FROM = [email protected]'.
      TRY.
    create persistent send request
          W_SEND_REQUEST = CL_BCS=>CREATE_PERSISTENT( ).
          LOOP AT IT_TEXT INTO IS_T1.
            APPEND IS_T1 TO W_TEXT.
            CLEAR IS_T1.
          ENDLOOP.
          W_DOCUMENT = CL_DOCUMENT_BCS=>CREATE_DOCUMENT(
          I_TYPE = C_TYPE
          I_TEXT = W_TEXT
          I_LENGTH = C_LENGTH
          I_SUBJECT = SUBJECT ).
    add document to send request
          CALL METHOD W_SEND_REQUEST->SET_DOCUMENT( W_DOCUMENT ).
    set sender
    note: this is necessary only if you want to set the sender
    different from actual user (SY-UNAME). Otherwise sender is
    set automatically with actual user.
    sender = cl_sapuser_bcs=>create( sy-uname ).
          W_SENDER = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS( FROM
          CALL METHOD W_SEND_REQUEST->SET_SENDER
            EXPORTING
              I_SENDER = W_SENDER.
    add recipient (e-mail address)
    create recipient - please replace e-mail address !!!
          IF TO IS NOT INITIAL .
            W_RECIPIENT = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS(
            TO ).
            CALL METHOD W_SEND_REQUEST->ADD_RECIPIENT
               EXPORTING
                 I_RECIPIENT = W_RECIPIENT
             i_copy      = c_x
                 I_EXPRESS   = C_X.
            W_SEND_REQUEST->SET_SEND_IMMEDIATELY( 'X' ).
            CALL METHOD W_SEND_REQUEST->SEND(
            EXPORTING
            I_WITH_ERROR_SCREEN = C_X
            RECEIVING
            RESULT = W_SENT_TO_ALL ).
            COMMIT WORK.
          ENDIF.
        CATCH CX_SY_ARITHMETIC_ERROR INTO W_OREF.
          RETURNCODE = 4.
          W_TEXT1 = W_OREF->GET_TEXT( ).
        CATCH CX_ROOT INTO W_OREF.
          RETURNCODE = 4.
          W_TEXT1 = W_OREF->GET_TEXT( ).
      ENDTRY.
      LOOP AT IT_EMAILS.
        TRY.
            CLEAR W_EMAIL.
            W_EMAIL = IT_EMAILS-RECEIVER.
            W_RECIPIENT = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS(
             W_EMAIL ).
            IS_REC-RECIPIENT = W_RECIPIENT.
            APPEND IS_REC TO IT_REC.
          CATCH CX_ADDRESS_BCS.
            RETURNCODE = 4.
        ENDTRY.
      ENDLOOP.
      LOOP AT IT_REC INTO IS_REC.
        TRY.
            W_SEND_REQUEST = CL_BCS=>CREATE_PERSISTENT( ).
            W_DOCUMENT = CL_DOCUMENT_BCS=>CREATE_DOCUMENT(
            I_TYPE = C_TYPE
            I_TEXT = W_TEXT
            I_LENGTH = C_LENGTH
            I_SUBJECT = SUBJECT ).
    add document to send request
            CALL METHOD W_SEND_REQUEST->SET_DOCUMENT( W_DOCUMENT ).
    set sender
    note: this is necessary only if you want to set the sender
    different from actual user (SY-UNAME). Otherwise sender is
    set automatically with actual user.
    sender = cl_sapuser_bcs=>create( sy-uname ).
            W_SENDER = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS(
            FROM ).
            CALL METHOD W_SEND_REQUEST->SET_SENDER
              EXPORTING
                I_SENDER = W_SENDER.
            CALL METHOD W_SEND_REQUEST->ADD_RECIPIENT
              EXPORTING
                I_RECIPIENT = IS_REC-RECIPIENT
                I_EXPRESS   = C_X.
            W_SEND_REQUEST->SET_SEND_IMMEDIATELY( 'X' ).
            CALL METHOD W_SEND_REQUEST->SEND(
            EXPORTING
            I_WITH_ERROR_SCREEN = C_X
            RECEIVING
            RESULT = W_SENT_TO_ALL ).
           COMMIT WORK.
          CATCH CX_SY_ARITHMETIC_ERROR INTO W_OREF.
            RETURNCODE = 4.
            W_TEXT1 = W_OREF->GET_TEXT( ).
          CATCH CX_ROOT INTO W_OREF.
            RETURNCODE = 4.
            W_TEXT1 = W_OREF->GET_TEXT( ).
        ENDTRY.
      ENDLOOP.
      IF FLAG = 'X'.
        IF TO IS NOT INITIAL.
          IT_EMAILS-RECEIVER = TO.
          APPEND IT_EMAILS TO IT_EMAILS.
        ENDIF.
      ENDIF.
    ENDFUNCTION.
    So pls help me out asap its very Urgent.......
    Regards,
    DS

  • How to view an appending table from a sub_vi?

    I have an array of results that appends to a table every minute. This loops round 17 times then stops. On the subvi front panel, i can view these results being appended into the table row by row every minute. My problem is when i go up a level and place an indicator/table on the subvi`s table o/p, the table does not append every minute any more. It only completes the table when the sub_vi executes.
    Does anyone know of a way round this. I have attached an example of my code inside the sub_vi.
    Thanks
    Grant
    Attachments:
    TEST.vi ‏25 KB

    I could not open your VI because I only have 7.0. Just to let you know globals are ok in moderation and in some instances, I have been programming in labview for a couple of years and only had to use them once or twice. there are a couple of different ways to accomplish want you want to do. the easiest way to do this without using globals and taking up to much memory is to pass references to the subvi. What you will want to do is in the main vi right click on the table and select create reference. then in you subvi create a control reference on the front panel and reference it to a table control, then on the block diagram create a property node and set it to value, then take the same data you are writing to the table in your subvi and pass it to your property node you just created. Here is an example written in 7.0
    CC Beat me to posting well thats what happens when you have the reply window open and have to go do something and come back to itMessage Edited by jhoskins on 04-19-2005 09:44 AM
    Message Edited by jhoskins on 04-19-2005 09:47 AM
    Joe.
    "NOTHING IS EVER EASY"
    Attachments:
    Grapf ref.llb ‏57 KB

  • MATERIAL_MAINTAIN_DARK no mara append table update

    Hello,
    I've a little problem using MATERIAL_MAINTAIN_DARK to modify some materials.
    I have to update fields in two append structures (one in mara, one in marm)
    when I use this function module, the update is ok on marm but not on mara
    if anyone have an idea ??
    Thanks in advance

    Hai Fabrice
    check the following Code
    DATA: h_anzfehler LIKE  tbist-numerror.
    DATA: BEGIN OF t_mara_ueb OCCURS 1.
            INCLUDE STRUCTURE mara_ueb.
    DATA: END OF t_mara_ueb.
    DATA: BEGIN OF t_mbew_ueb OCCURS 1.
            INCLUDE STRUCTURE mbew_ueb.
    DATA: END OF t_mbew_ueb.
    DATA: t_merrdat TYPE merrdat OCCURS 0 WITH HEADER LINE.
    aufbauen T_MARA_UEB
              CLEAR:    t_mara_ueb.
              REFRESH:  t_mara_ueb.
              t_mara_ueb-mandt = sy-mandt.
              t_mara_ueb-matnr = t_mbew-matnr.
              t_mara_ueb-tcode = 'MM02'.
              t_mara_ueb-tranc = h_tranc.  "Transaktionszähler
              APPEND t_mara_ueb.
    aufbauen T_MBEW_UEB
              CLEAR:    t_mbew_ueb.
              REFRESH:  t_mbew_ueb.
              t_mbew_ueb-mandt = sy-mandt.
              t_mbew_ueb-matnr = t_mbew-matnr.
              t_mbew_ueb-bwkey = t_mbew-bwkey.
              t_mbew_ueb-bwtar = t_mbew-bwtar.
              t_mbew_ueb-tranc = h_tranc.  "Transaktionszähler
    Änderung der Preissteuerung in der lfd. Periode
              IF t_mbew-vprsv NE p_vprsvn.
                t_mbew_ueb-vprsv = p_vprsvn. "neue Preissteuerung->lfd.Per.
              ENDIF.
    Änderung der Preissteuerung in der Vorperiode
              IF t_mbew-vmvpr NE p_vprsvn.
                t_mbew_ueb-vmvpr = p_vprsvn. "neue Preissteuerung-> Vorper.
              ENDIF.
    Änderung der Preissteuerung in der letzten Periode des Vorjahres
              IF flag_vm_eq_vj = 'X'.      "Vorperiode = Vorjahr
                IF t_mbew-vjvpr NE p_vprsvn.
                  t_mbew_ueb-vjvpr = p_vprsvn. "neue Preissteuerung-> Vorjahr
                ENDIF.
              ENDIF.
              APPEND t_mbew_ueb.
              CLEAR:    t_merrdat.
              REFRESH:  t_merrdat.
              CLEAR:    h_anzfehler.
              CALL FUNCTION 'MATERIAL_MAINTAIN_DARK'
                   EXPORTING
                    FLAG_MUSS_PRUEFEN         = 'X'
                    SPERRMODUS                = 'E'
                    MAX_ERRORS                = 0
                        p_kz_no_warn              = 'N'
                        kz_prf                    = 'E'
                        kz_aend                   = 'X'
                        kz_dispo                  = ' '
                   IMPORTING
                        number_errors_transaction = h_anzfehler
                   TABLES
                        amara_ueb                 = t_mara_ueb
                        ambew_ueb                 = t_mbew_ueb
                        amerrdat                  = t_merrdat
                   EXCEPTIONS
                        kstatus_empty             = 1
                        tkstatus_empty            = 2
                        t130m_error               = 3
                        internal_error            = 4
                        too_many_errors           = 5
                        update_error              = 6
                        OTHERS                    = 7.
              IF NOT h_anzfehler IS INITIAL.
                PERFORM build_message.
                EXIT.                   "Abbruch Form-Verarbeitung
              ELSE.
                flag_vprsv_upd = 'X'.
              ENDIF.
    Thanks & Regards
    Sreenivasulu P

  • How to append table T184 , Pool / Cluster table

    Hi,
    Has any one appended Pool table like T184 to add more z fields.
    thxs,
    Pavan

    Hello,
    I think that table is not able to append new structures, if you check on tcode se11 the append structures button isnt activated. What u r looking for seems to not be possible
    bye
    gabriel P

  • Differnce between Modify table and append table

    Hi Abappers,
    What is the major differnce between the following 2?
    a)G_T_PROD-G_OP_INV_KG = G_OP_INV1.
    MODIFY G_T_PROD INDEX G_READ_INDEX.
    b)G_T_PROD-G_OP_INV_KG = G_OP_INV1.
    APPEND G_T_PROD.

    Hi Mansi Maskeri,
    <b>Append Statement :</b>
    This statement helps in adding the record at the bottom of the internal table.
    <b>Example : append wa_tab to it_tab.
    This adds the record at the end of the internal table it_tab.</b>
    <b>Modify statement :</b>
    This statement helps in changing the existing record at the specified index.
    For example:
    modify it_tab index 3.
    This modifies the internal it_tab record which is present at the 3 position.
    Regards.

  • Why does Apple append "Table 1" to tab names in Numbers

    I have imported an excel file into Numbers and I find that my tab names are changed. "Table 1" was appended to my Tab names.
    Can this be prevented?
    Thanks!

    My iPhone won't view them at all...yet.  I'm hoping that I can figure it out.
    Well when I use pages to open the file on my macbook, it opens up an incorrect interpretation.  Things are mis-aligned.  Think of columns and rows.  If the original document had A1 defined as John Doe and A2 defined as a time of 10:30, then Pages in my Macbook may translate it as A1 - John Doe, A2 - blank, B1 - blank, B2 - 10:30.  The lines that are used to outline boxes wind up different lengths and thicknesses as well.
    For example:
    PC word doc (original)                                                  Mac (translation)
    John Doe  |  10:30                                              John Doe     |
                                                                                                        _______ 10:30
    Above is a simple interpretation, but I hope that it sort of gives you a visual representation of what I'm seeing (if I see anything at all).  Things appear in the wrong places and a one page document turns into 3-4 pages of incorrect "fluff" if you know what I mean.

  • Appending table control

    Hi,
        I have a requirement where i need to append the existing table control with my own fields this is an existing program which i copied into Zprogram...please help me out in this regard more precisely.
    Thanx in advance.

    Hi,
        Apart from these two tables which u mentioned above i need to populate the data in the internal table <b>TAB</b> can u please give me the detailed description where exactly i need to append these tables with my own data.Pls send me the the reply ASAP. As the requirement is high priority.
    thanx in advance

Maybe you are looking for

  • HELP! Confusing problem in report-form integration!

    Hi all, I have a problem in integrating report in dev10i. I used to use Dev6i and have no problem in using run_report_object in 6i. I got the REP-0503 You did not specify the name of the report and FRM-40738 Argument 1 to builtin Report_Object_Status

  • Help with XP2400, low scores and OCing...

    This is my first post on this forum, just to let everyone know right off the bat you are dealing with a nOOb!! I have a little knowledge on the subject from all the reading I've done the last week or two, but still am new to this...Ok, that being sai

  • How do you add fonts in pages?

    How do you add fonts and clip art in pages? I seem to have few fonts in pages. New to Mac. Thanks! Also seems that there is no clipart in pages? If there is, where can I find it?

  • Edit in Photoshop will not use sRGB

    When I edit images from Lightroom in Photoshop (Ctrl+E), I can set up a colour space to use for the export. Setting it to Adobe RGB or ProPhoto leads to the expected result that Photoshop asks me whether to use the embedded profile or convert to my w

  • Urgent!... What is the USER EXIT for outbound desadv

    Hi All,     Which <b>USEREXIT</b> is used for outbound desadv where i need to change the value of the segment-field(<b>E1ADRM1-PARTNER_ID</b>) nothing but the partner number.    Please help me on this. Thanks in advance!.. Regards, Ramkumar.K