Information about a VBAP, VBAK field...

Hello Experts-
I am working with a scenario where customer orders (sales transaction) are generated in a mySAP CRM 4.0 SP 3 system and are replicated to SAP R/3 Enterprise as sales orders.
Are any of you aware of a field in VBAK and/or VBAP in R/3 that keeps track of the document identifier from the CRM system?
Ideally, I need to be able to reconcile, at the line level, what object an entry in VBAP corresponds to an object identifier from the CRM system.
If not, it will be helpful, at the header level, to know which entry in VBAK corresponds to an object identifier from the CRM system.
I would appreciate your help.
Thank you,
- Vik.

Hi Vik,
I have not had this scenario before, but try the following fields on VBAP:
VBELV May be your CRM reference Header
POSNV May be your CRM reference Item
VGBEL May be your CRM reference Header
VGPOS May be your CRM reference Item
Also have a look at the table VBFA (document flow) where:
VBELN is your sales order number
POSNN is your sales order item
VBELV may be your CRM reference header
POSNV may be your CRM reference item
Cheers,
Brad

Similar Messages

  • Need information about Contract Renewal type field

    I have a requirement to get Contract Renewal Type field from CRM. I got to know that the technical field for Contract Renewal Type field is CRMD_CUSTOMER_H-ZZYARE . This field is of data type/length CHAR 1.
    I need to get the text for the Renewal Types - for example, Auto Renewal, Periodic Renewal, Manual Renewal. There is no check table or value table or any value stored in domain level for the field ZZYARE..
    Can you please let me know from which table and how can I get the text of Contract Renewal Types ?
    And Also in which tab of t-code CRMD_ORDER, I can see this field ?
    Thanks,
    Papiya

    Hi,
    As the field is a Z field, it must be visible under Customer fields Tab at header level of the contract transaction.
    Just check from which table the search help of this field is getting fetched.
    Regards,
    PP

  • Information about forms

    Hi.
    Does anybody knows, what is the name of DB table where information about all existing OIM (903) forms (fields, version history) is stored?

    Check these three tables:
    SDK : It stores the information about form.
    SDC : It stores the information about version and form fields.
    SDH : It stores the information about nested forms.
    Thanks,
    Devendra Jain

  • Extracting informations about rectangles, lines, fields etc from PDF

    I'm looking for a way, to extract rectangles, lines, fields etc from a PDF, for example think of a blue rectangle which is drawn in a Word document, which is later exported to pdf. I need informations about the position of the rectangle, the color, the size, if it is filled or not, etc. Is there something like an API or an SDK which can help me? I searched for quite a time (so please, no RTFM-answers), but the only references I found where about producing PDF or extracting text, images or graphics (oh, just at the moment, I had the idea, that lines and rectangles could be coded as vector-graphics in PDF, could that be possible?).
    I'm thankful for all answers and ideas (even if you just post links with informations),
    kind regards,
    Pivo

    Yes, lines and rects are coded as vector graphics (or specifically path drawing instructions) in a PDF.
    Adobe offers an SDK around Adobe Acrobat which would enable you to get this information. If you need a standalone solution, we also offer our full PDFLibrary.

  • Develop a form and print program using VBAP, VBAK, MRKT.

    I have 2 tables VBAK [fields: VBELN, ERDAT, ERNAM, AUDAT, VBTYP, VKORG] and VBAP [Fields: POSNR, MATNR, CHARG, WAERK] and In output(form) i need the following fields,
    Output table:
    -VBELN
    -ERDAT
    -VKORG
    -POSNR
    -MATNR
    -MAKTX <- this field is from table MAKT. (I need the Material descriptions too for all the materials.)
    Form Layout should have Header, Logo (SAP ENJOY), Main, Footer.
    Problem is that i need footer only after the End of Complete data in Main Window, thats is footer should be placed only in last window. How should i do that ?
    Logic which i thot to make the print program is : First declare an internal table itab1 with VBAP, VBAP using the above fields from two tables and fetch the product based on matnr.
    declare one internal table itab2 and select the records from the table makt by checking the condition itab1 is not initial.
    sample code.
    IF ITAB1 IS NOT INITIAL.
    SELECT FIELD LIST FROM MAKT INTO TABLE ITAB2 WHERE MATNR EQ ITAB1-MATNR.
    ENDIF.
    hope this shuld work. ?????

    Hi
    see the sample script program and do accordingly
    *& Report  ZTEST12121
    *& SAPScripts Example 1
    REPORT  ztest12121.
    *DATABASE TABLES
    TABLES: ekko,ekpo,lfa1.
    *INTERNAL TABLES AND STRUCTURES
    DATA i_ekko LIKE ekko.
    DATA i_ekpo LIKE ekpo OCCURS 0 WITH HEADER LINE.
    DATA i_lfa1 LIKE lfa1.
    *PARAMETERS
    PARAMETERS: p_ebeln LIKE ekko-ebeln.
    *VARIABLES
    DATA MAT TYPE STRING VALUE 'MAT NO'.
    DATA iTe TYPE STRING VALUE 'ITEM NO'.
    DATA QTY TYPE STRING VALUE 'QTY'.
    DATA UOM TYPE STRING VALUE 'UOM'.
    DATA NET TYPE STRING VALUE 'NET PRICE'.
    Data var type integer value 0.
    *DATABASE SELECTS
    *Header data
    SELECT SINGLE * FROM ekko INTO i_ekko WHERE ekko~ebeln = p_ebeln.
    IF sy-subrc = 0.
    *Item Data
      SELECT * FROM ekpo INTO  TABLE i_ekpo WHERE ekpo~ebeln = p_ebeln.
      IF sy-subrc NE 0.
        WRITE 'PURCHASE DOCUMENT ITEM DATA ERROR'.
      ELSE.
    *Vendor Details
        SELECT SINGLE * FROM lfa1 INTO i_lfa1 WHERE lfa1~lifnr = i_ekko-lifnr.
        IF sy-subrc NE 0.
          WRITE 'VENDOR DOCUMENT ITEM DATA ERROR'.
        ENDIF.
      ENDIF.
    ELSE.
      WRITE 'THIS PURCHASE DOCUMENT NUMBER DOESNOT EXISTS'.
    ENDIF.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
        form                              = 'ZSCRIPT_1'
        language                          = sy-langu
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
      SPONUMIV                          =
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      CODEPAGE                          = 11
      OTHERS                            = 12
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'OFFICEAD'
       FUNCTION                       = 'SET'
       TYPE                           = 'BODY'
       WINDOW                         = 'OFFICEAD'
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'PODET'
       FUNCTION                       = 'SET'
       TYPE                           = 'BODY'
       WINDOW                         = 'PODET'
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'TOP'
       FUNCTION                       = 'SET'
       TYPE                           = 'TOP'
       WINDOW                         = 'MAIN'
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT I_EKPO.
    var = i_ekpo-netpr * i_ekpo-menge.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'BODY'
       FUNCTION                       = 'SET'
       TYPE                           = 'BODY'
       WINDOW                         = 'MAIN'
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDLOOP.
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      CODEPAGE                       = 5
      OTHERS                         = 6
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Structure of a print program
    OPEN_FORM function
    CLOSE_FORM function
    WRITE_FORM
    START_FORM function
    END_FORM function
    CONTROL_FORM function
    The print program is used to print forms. The program retieves the necesary data from datbase tables, defines the order of in which text elements are printed, chooses a form for printing and selects an output device and print options.
    Function modules in a printprogram:
    • When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine forms into a single spool request use START_FORM and END_FORM.
    • To print textelements in a form use WRITE_FORM. The order in which the textelements are printed, is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you can also use the WRITE_FORM_LINES function module.
    • To transfer control command to a form use CONTROL_FORM.
    Structure of a print program
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    APPLICATION = 'TX'
    ARCHIVE_INDEX =
    ARCHIVE_PARAMS =
    DEVICE = 'PRINTER'
    DIALOG = 'X'
    FORM = ' '
    LANGUAGE = SY-LANGU
    OPTIONS =
    MAIL_SENDER =
    MAIL_RECIPIENT =
    MAIL_APPL_OBJECT =
    RAW_DATA_INTERFACE = '*'
    IMPORTING
    LANGUAGE =
    NEW_ARCHIVE_PARAMS =
    RESULT =
    EXCEPTIONS
    CANCELED = 1
    DEVICE = 2
    FORM = 3
    OPTIONS = 4
    UNCLOSED = 5
    MAIL_OPTIONS = 6
    ARCHIVE_ERROR = 7
    INVALID_FAX_NUMBER = 8
    MORE_PARAMS_NEEDED_IN_BATCH = 9
    SPOOL_ERROR = 10
    OTHERS = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    FORM Name of the form
    DEVICE • PRINTER : Print output using spool
    • TELEFAX: Fax output
    • SCREEN: Output to screen
    OPTIONS Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
    RESULT =
    RDI_RESULT =
    TABLES
    OTFDATA =
    EXCEPTIONS
    UNOPENED = 1
    BAD_PAGEFORMAT_FOR_PRINT = 2
    SEND_ERROR = 3
    SPOOL_ERROR = 4
    OTHERS = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT Returns status information and print/fax parameters after the form has been printed. RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = ' '
    FUNCTION = 'SET'
    TYPE = 'BODY'
    WINDOW = 'MAIN'
    IMPORTING
    PENDING_LINES =
    EXCEPTIONS
    ELEMENT = 1
    FUNCTION = 2
    TYPE = 3
    UNOPENED = 4
    UNSTARTED = 5
    WINDOW = 6
    BAD_PAGEFORMAT_FOR_PRINT = 7
    SPOOL_ERROR = 8
    OTHERS = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT Specifies which textelement is printed
    WINDOW Specifies which window is printed
    TYPE Specifies the output area of the main window. This can be:
    • TOP - Used for headers
    • BODY
    • BOTTOM - Used for footers
    FUNCTION Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    The print program
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = 'INTRODUCTION'
    FUNCTION = 'SET'
    TYPE = 'BODY'
    WINDOW = 'MAIN'
    EXCEPTIONS
    OTHERS = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = 'ITEM_HEADER'
    FUNCTION = 'SET'
    TYPE = 'BODY'
    WINDOW = 'MAIN'
    EXCEPTIONS
    OTHERS = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = 'ITEM_HEADER'
    FUNCTION = 'SET'
    TYPE = 'TOP'
    WINDOW = 'MAIN'
    EXCEPTIONS
    OTHERS = 8
    Write ITEM_LINE
    LOOP AT .....
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = 'ITEM_LINE'
    FUNCTION = 'SET'
    TYPE = 'BODY'
    WINDOW = 'MAIN'
    EXCEPTIONS
    OTHERS = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = 'ITEM_HEADER'
    FUNCTION = 'DELETE'
    TYPE = 'TOP'
    WINDOW = 'MAIN'
    EXCEPTIONS
    OTHERS = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = 'CLOSING_REMARK'
    FUNCTION = 'SET'
    TYPE = 'BODY'
    WINDOW = 'MAIN'
    EXCEPTIONS
    OTHERS = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
    ARCHIVE_INDEX =
    FORM = ' '
    LANGUAGE = ' '
    STARTPAGE = ' '
    PROGRAM = ' '
    MAIL_APPL_OBJECT =
    IMPORTING
    LANGUAGE =
    EXCEPTIONS
    FORM = 1
    FORMAT = 2
    UNENDED = 3
    UNOPENED = 4
    UNUSED = 5
    SPOOL_ERROR = 6
    OTHERS = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
    IMPORTING
    RESULT =
    EXCEPTIONS
    UNOPENED = 1
    BAD_PAGEFORMAT_FOR_PRINT = 2
    SPOOL_ERROR = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command =
    EXCEPTIONS
    UNOPENED = 1
    UNSTARTED = 2
    OTHERS = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'ENDPROTECT'.
    Regards
    Anji

  • Report with information about release documents in VKM1

    Hello
    I need to know if exists some report that gives me more information about release documents in transaction VKM1. What user releases some document? How many documents a credit account had been release or block in a year or between dates?
    The transaction VKM2 just gives the release date of the document and not the user.
    Where I can find more information?
    Regards
    Daniel Teles

    Hi,
    There is a field to know which account is the parent account, but you can't have others informations from the parent account except the name. In the new R16, you have others field called "Parent Account external unique ID" and "Parent Integration ID". What can I do with this field? Is it possible to display the parent account phone field in the report?
    regards

  • How to get information about PowerPivot options

    I was going through the Custom Xml structure present after unzipping a PowerPivot enabled excel file.
    My main motive is to extract information pertaining to PowerPivot options present in the Excel File.
    It had around 16- 19 Custom Xmls, I had a little confusion and it would be great if you could help me on this :
    1. In the workbook.xml.rels file, there is entry for each Cutomxml file. For ex. –
    But according to my interpretation, each of these entries must be referenced also. What i mean is that the specific Rel ID i.e. rId30 (for the above entry) must be referred somewhere in the package that is why it is mentioned in the Workbook.xml.rels.
    But i couldn’t find it anywhere. So how does Excel does all the mapping that which Custom XML is referred to?
    2. I found out that for each table in the PowerPivot window, there is a Custom XML present in the Custom XML’s folder.
    But, there are other field also present such as ‘ColumnFormat’, ‘ColumnNegativePattern’, but these are not getting updated whenever I am changing these for any table.
    I can get the Column names of the table but how can i find out what Format has been applied to the Column of the tables.
    3. Moreover, I found a bunch of Custom XML’s but couldn’t really make sense out of them that what they were pointing to.
    For ex. – CustomXml with namespace – Gemini xmlns=”http://gemini/pivotcustomization/a1265ca3-5c9c-4281-be48-a1a026385b0a”
    or “Gemini xmlns=”http://gemini/pivotcustomization/IsSandboxEmbedded””
    It would be highly beneficial if you can help with these namespaces and their interpretation.
    4. I understand that majority information is present in the database i.e. Item.data file and also in the Temp folders when the file is opened.
    I got through some files present in the Temp Folder and could get my hands on information about Column Format, Formula in case of Calculated Columns. But how do I find out the exact path for the Temp folder every time I open the file.
    I could find some paths in the Item.data file in the BackUpFile nodes but those didn’t exist.
    So is there is any way by which I can get those paths.
    Sorry if the query is a little long, but I am actually stuck with the above questions acting as bottleneck.
    Thanks a lot!!
    Sahil Puri

    What version of Power Pivot are you on?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • HOW TO GET INFORMATION ABOUT THE CLIENT MACHINE AT DATABASE LEVEL

    HOW TO GET INFORMATION ABOUT THE CLIENT MACHINE AT DATABASE LEVEL USING 10g Database and 10g Application Server
    we have developed an application using oracle forms 10g with
    oracle database 10g and Application server 10g
    Application uses a single Oracle User name to connect to database
    where as at Application level there are different users (these are not database users)
    Now how can we get the information about the user/his machine etc. at database level. earlier in 6i/8i we use to get by using
    USERENV('TERMINAL')
    we had written a triggers on tables on Insert/Update where we used to update a database field Last user terminal with USERENV('TERMINAL')
    but not this information is comming to be the machine name of application server where as we wish this to be the machine name of Client. Any Way outs
    thanks
    Chaand Kackria

    hi, you can use the sys_context function, like this:
    select sys_context('userenv','current_user'),
         sys_context('userenv','os_user'),
         sys_context('userenv','host'),
         sys_context('userenv','ip_address'),
         sys_context('userenv','instance'),
         sys_context('userenv','sessionid'),
         sys_context('userenv','terminal')
    from dual;
    Is this what you 're looking for?

  • In CIF customer exit there is no information about the logical system

    Dear All,
    we have a SAP R3 system (ver 4.7) connected to 2 SAP APO systems.
    we need to differentiate the UE code in R3 by APO TARGET SYSTEM.
    In the CIF userexit used:
    EXIT_SAPLCLOC_001
    EXIT_SAPLCSRS_003
    EXIT_SAPLPGS1_001
    EXIT_SAPLCSTK_001
    EXIT_SAPLMEAP_001
    there is no information about the logical system (source, destination
    etc.) The control parameters are not provided to the user exit.
    I found a note 1060634 where the parameter have been added to
    EXIT_SAPLCSLS_002 , but not to all other exits.... do you have any clue on how we can proceed?
    Thank you !!
    Best Regards , Barbara

    Found the answer, to bad i cannot give points to myself :-P
    In the ABAP i use the E_T_RANGE output structure.
    That structure has several fields (sign, opt, low, high).
    In my ABAP i stored the same value in the low and high field.
    This should work fine for normal (flat) characteristic values.
    However, because i use a hierachy i should enter the 0HIER_NODE value in the high field.
    For details see: SAP NOTE: 912473
    Regards

  • Way to consolidate information about vendors

    Hello,
    I have two or more vendor master data , that have different vendor no (LIFNR) but they relate to same vendor.
    Example: Vendor A Vendor B , different ID but relate to the same vendor.
    It is happened usually in cases that the VAT.Reg no. is changed and than I need to open another record in the vendor master data for the same vendor.
    I need to find way when using control reports (LIS, BW, ME2L,ME2M..) to  vendor B (LIFNR) the system will show also information about vendor A.
    I need, standard way to consolidate information for two different vendor master data that relate to the same vendor.
    Best Regards
    Hadidit

    you create new vendor  and continue your business with the new vendor, but want the old vendor as well in the reports.
    I dont think that there is anything available in standard SAP that you can automatically get both vendors into a e.g. ME2L report when you enter one vendor number in the selection.
    I cannot imagine thatyou can run MR2M reports based on  partner functions .
    in vendor master control view is field called Group key that can be used to link old and new vendor number
    f1 help says:
    If the customer or the vendor belongs to a group, you can enter a group key here. The group key is freely assignable.
    If you create a matchcode using this group key, group evaluations are possible.
    But I have not seen this field in selection of ME2L.

  • Information about structure SWNCAGGUSERTCODE

    Hi,
    does someone have some information about structure SWNCAGGUSERTCODE (workload statistics)
    I'm interested in the fields tasktype and those count/dcount/ucount/bcount/ecount and scount fields. In addition: if a transaction is called, is the corresponding report counted as well? so do i have transaction with count 1 and not the report or do i have transaction count 1 and report count 1?

    no answer

  • Information about Services

    Hi,
    we are using SRM 5.0
    I need information about services in SRM
    so, we have two types of product - material and service.
    we have already tested shopping, bidding and other functionality with material. It is clear for me.
    now it is time for service testing, and i have some questions:
    1. When employee goes shopping - he chooses "Internal Goods/Services", then he click "Start". And a very long list of materials and services is displayed. Services and materials are mixed in alphabetical order.
    Are there some ways for dividing this big list in two parts - materials and services? not to sort all of them by descending/ascending order, but to separate them, because to look for something in mixed list is impossible.
    Can we make Product Type field to be mandatory for entering before displaying the results? I mean having a binocular near this field, and clicking on it will give us a chance to choose Services or Materials. It will make more simple the whole process.
    2. After adding to a SC, are there any differences between processes with Materials and Services? Or no differences, and the same biddings, auctions and others..
    3. What is the "Requests" menu in Go Shopping? for which purposes i can use it?
    4. Managing Business Partners and it's employee, i have a check-box "service agent". Where this status of partner is use? i can't see in the shopping cart any fields for choosing a service agent
    Will be very greatful and award points for helpful answers.
    thnx

    Hi,
    1.Getting a F4 help for the field Product type would be standard modifictaion.However you could try mdofiying the O/P list which is displayed(e.g. sort it based on the product type).
    Have a look at this thread for more pointers:
    Re: Change in product display
    3.Related thread:
    "Request" menu option is for... ? :-(
    BR,
    Disha.

  • An information about follow up transaction document

    Hi all,
    How can i retrieve information about follow up transaction document. I need to know which table or anything else that can give me information about follow up document.
    For example if i have this business scenario :
    from contract --> follow up to order
    and i need to know how many contract that being follow up to order and how many didn't.
    So which table that have information about this in crm?
    Thanx.
    Regards
    Indah Puspita

    Hi @all,
    the question is quite old, but not yet solved. As I had a similar task to do, i found something in the database that solved my task and probably yours as well.
    There is a DB table called "CRMD_BRELVONAE" that contains relationships between all the different CRM Objects.
    field "OBJGUID_A_SEL" contains the GUID of the parent object (equals CRMD_ORDERADM_H-GUID) and "OBJGUID_B_SEL" contains the GUID of the child object (Follow-up, equals CRMD_ORDERADM_H-GUID) .
    If you are only interested in a specific type of relationships, there are also fields "OBJTYPE_A_SEL" for the object type of the parent object and "OBJTYPE_B_SEL" for the object type of the child object.
    I hope, this is for you helpful
    Regards
    Ralf

  • Extract information about Travel Management

    Hi !!
       I need to work on extractor to get information about Travel Management, the user's need to know how much the company spend on travel.
      I read some documentation about  0FI_TV_01 and 0FI_TV_02, But I don´t know where I can get more information about how to activate this extractor's and how work on R/3 and connect with BW (7.0)
      At this time I konw how work 2LIS_02_ITM and how this extractor was configured and activated on R/3 Systems and their connection with BW.
      Please, If you know some documentation or you can send me one tutorial about this extractors, just let me know
      I will assign points to you.
      Thank you.
    Alice

    Alice,
    My working week is Sunday -Thursday.
    It is true that you can see if an extractor is delta-enabled by looking at the table value.  It is also apparent in the info-package.
    However, the value in the table is not the reason why the extractor is delta-enabled.  There is an extractor program which handles the extraction, which, for these extractors have been programmed for full extraction.
    Delta extraction in principle is programmed based on certain fields like a change/creation date.  Sometimes the business process i.e 'management of the travel scenario' may not be readily amenable to programming data-extraction.
    In short, you do not have a quick solution for making these extractors delta-enabled.
    There has been some discussion in this forum on the concept of pseudo-delta - take a look at the link below:
    Pseudo delta
    BR/
    Mathew.
    Edited by: Mathew Muthalaly on Apr 6, 2008 6:59 AM

  • Logging query with information about ip client machine address

    Halo,
    One of our most important requirements is logging user query (physical to database and logical) with following informations:
    - USER
    - SQL QUERY TEXT (logical/physical)
    - DATE and TIME executing query
    - IP ADDRESS client machine (or name of client machine) (this is very important information)
    We have following configuration:
    - BI Server with Presentation Servicess on one machine (AIX)
    - Web server on second machine (BEA Weblogic 9)
    I've tested [USAGE_TRACKING] mechanism but thera are three problems with it:
    1. in S_NQ_ACCT in field NODE_ID is always written the same information: name of Web Server - WebLogic
    2. in S_NQ_ACCT are storages only logical queries.
    3. Length of field QUERY_TEXT is 1024. I'm sure that in many cases it'll be to short.
    I've tested USER_LOG too (that logs to NQQuery.log file) but there are also some problems:
    1. there is no information about ip client machine but is information about physical and logical queries and other necessary informations
    2. oracle recommends turn off this mechanism on production system.
    I've tested PRESENTATION SERVICESS log (it is configured at logconfig.xml file)
    1. In file is information about ip client machine
    2. In file are written only logical queries (this is big problem we also need physical queries)
    Do you have some idea how to resolve my problem?
    Regards

    hi, you can use the sys_context function, like this:
    select sys_context('userenv','current_user'),
         sys_context('userenv','os_user'),
         sys_context('userenv','host'),
         sys_context('userenv','ip_address'),
         sys_context('userenv','instance'),
         sys_context('userenv','sessionid'),
         sys_context('userenv','terminal')
    from dual;
    Is this what you 're looking for?

Maybe you are looking for

  • Windows 2008 Enterprise 32-bit Random Blue Screen 0x000000C4

    Hello, We have a customer with IBM x3500 M3 server, Windows 2008 Enterprise SP2 32-bit, 24GB RAM (Domain, file and print server, rdp server roles installed). Since December 2013, they have been experiencing random reboots (once or twice a month), so

  • Problem with the JDBC URL while creating a new connection pool

    Hi, I am trying to install soademo application in my desktop and was unable to create a connection pool. Test connection fails even though I have provided the correct values (I confirmed these values with tnsnames.ora file). Anyone has experienced th

  • Quicktime Pro 7 isn't recognized by APPLE's website!  What gives?

    I just paid for, downloaded, and installed Quicktime Pro 7 on my MacBook Pro. When I go to the older ads on Apple's site, I either get a message saying that Quicktime 7 is needed to view the ad, or I get absolutely nothing (no video, no sound, etc.).

  • Why Nokia is not listening to N97 users?

    It is a big shame to Nokia that it even do not reply saying, we are sorry about the inconvineance caused because of N97, we are trying to fix it, wait for so many days. It will give lot of relief to me because from last so many years i am using only

  • I'm sick of it all (MOD HELP ME)

    I'm not the account holder, my mum is but she don't use internet as she is blind. She as phoned up a few times about the fact we don't get the speed we can get. We are only getting about 3.80mb when on BT website it says we can get 5.5MB. We have pho