0RT_PA_TRAN_CONTROL DataSource doesn't appear in Transaction SBIW.....

Hi all
i'm trying to use standard POS PIPE Retail Data Sources 0RT_PA_TRAN_CONTORL. This DataSource unfortunately doesn't appear in the R/3 System TAC: SBIW. This DataSource also not exist in table ROOSOURCE, neither in OBJVERS 'A', nor in OBJVERS 'M' or 'D'.
Could anybody tell me, how to add this DataSource in R/3 System, or is this DataSource obsolet and i have to use the "newer" one?
Thanks a lot
Christian Weber

Hello,
0RT_PA_TRAN_CONTROL is a BW based DataSource, that is why it doesn't show in any ERP SBIW. You'll find it in your BW System that has BI_CONT installed.
Regards
Hergen

Similar Messages

  • Selection criterion in custom DataSource doesn't appear in Infopackage

    Hello everyone!
    I have implemented a custom DataSource for service processes in CRM.
    I have defined a timestamp field as a selection criterion.
    In BW, in the Datasource fields tab, this field appears correctly defined, but it doesn't appear in the InfoPackage selection criteria tab.
    Any thoughts on this? Any help would be greatly appreciated!!
    Best Regards,
    Luís.

    Have you checked the selection option in Data source maintenance..?
    Thanks
    Tripple k

  • The vendor doesn't appear in FAGLL03

    Hi,
    Why in FAGLL03 the vendor doesn't appear when the document type is RE.
    Is it possible to add this information?
    Regards,
    Ferdaws

    If I understood your question right, I think you have already added the vendor special field through following customizing
    Financial Accounting (New)> General Ledger Accounting (New)>Master Data>G/L Accounts>Line Items>Define Special Fields for Line Item Display
    If you not added, then please add. But populating Vendor field through Special field configuration will not solve your problem. If you are using document type RE to post vendor transaction, then also FAGLL03 will not populate the vendor ID in the report, because this is GL line item report, and vendor line item is posted only to Vendor reconciliation account, which is normally not active with switch "Line item display" in the GL master data (Check t-code FS00). Whereas the off-set GL account in a vendor transaction does't create a line item with a vendor ID default.
    So, the best place to look for vendor ID in your case will be "Off-set account". Check under the change layout of the report FAGLL03 if this fields "Off-set account type" "Off-set account" is available. If not, please do the following:
    you need to implement following BTE to populate Offsetting accounts
    Transaction FIBF
    Menu>Settings>Products> of a customer.
    Click new entry
    Product = RFPOS
    Activ = Set Flag
    Save
    Menu>Settings>P/S Function Modules> of a customer
    Click new entry
    Event = 00001650
    Product= RFPOS
    Module = Line_Items_Get_GKONT
    Thanks
    Ron

  • CR 8.0 pie chart/graph doesn't appear in web browser

    Post Author: kevind
    CA Forum: Charts and Graphs
    Hi,
    I am using a CR 8.0 report (containing data in tabular format and Pie/Bar graph) with Web component Server.
    In design mode (by entering the parameters) when i view my report through the CR IDE then i can view my report perfectly with the pie and bar graphs.
    However,once i call the same report through the web component server, by my JSP page, the report appears with the data but the page containing the piechart/Bar graph doesn't appear. (i am using the ActiveXViewer)
    When i remove the chart/graph, then all the pages are displayed in my browser (IE) properly, but if i add back the pie chart then the page on which this should appear -  doesnt display.
    Has anyone faced a similar issue? In design it displays with data but once called through webcomponent server it fails?
    Thanks,
    Kevin D

    Hello Subramaya,
    currently I am working on a small article in the Wiki area of the ITS (Wiki, ITS HowTos): <a href="https://wiki.sdn.sap.com/wiki/display/HOME/UsingSAPGUIforHTMLinsteadofanIAC">Using SAP GUI for HTML instead of an IAC or EWT service</a>.
    Also see notes 1010519, "SAP GUI for HTML: Simplified Title Area Without Menu and OK Code" and 959417, "Integrated ITS, Closing Session When Transaction Ends". I am pretty sure that this is exactly what you are looking for.
    With best regards,
      TJ

  • SQ01 Sap Query - additional fields doesn't appear

    Hi everybody,
    i've created a SAP Query with transaction SQ01 but one of my additional fields doesn't appear when i execute my Query.
    My query shows the G/L account number and the field status Group (table SKB1)
    I just need to display equally the text field of "field status Group" but it doesn't work.
    When i look at the parameters i can see that it makes the link between the table T004G and SKB1 in order to find the textfield but the field stay blank.
    For information T004g is a Pooled table.
    Is someone could help me?
    Thank you

    Hi,
    First you need to create a structure in Data Dictionary - SE11. This structure will contain all the fields that you want to display in the query output.
    Example - Name the Strucutre as zz_infoset01
    fields of the structure( for your requirement )
    BUKRS
    SAKNR
    FSTAG
    FSTTX
    Go to T-code SQ02
    1) Enter the Infoset name - zinfoset01 press create
    2) Enter a Short Description - G/L Infoset - 01
    3) select radio button - "Data retrieval by program"
                   and in "data structure" enter   zz_infoset01
    4) select "Integrated program" radio button
    5) In the next screen click on the "Data reading program" push button(on the application toolbar)
    6) An Editor will open with the following code
    REPORT  rsaqdvp_template .
      declarations
      (insert your declarations in this section)
    DATA:
      zz_infoset01                          TYPE zz_infoset01                          ,
      it_data TYPE STANDARD TABLE OF zz_infoset01 WITH HEADER LINE.
      selection screen statements
      (define your selection-screen here)
    !! the following comment MUST NOT BE CHANGED !!
    *<QUERY_HEAD>
      read data into IT_DATA
    (select your data here into internal table IT_DATA)
      output of the data
      (this section can be left unchanged)
    LOOP AT it_data.
      zq01  = it_data.                        .
    !! the following comment MUST NOT BE CHANGED !!
    *<QUERY_BODY>
    ENDLOOP.     
    7) when you insert your code in the sections it will look like this
    REPORT  rsaqdvp_template .
      declarations
      (insert your declarations in this section)
    Tables:SKB1,
              t004g.          
    DATA:
      zz_infoset01                          TYPE zz_infoset01 ,
      it_data TYPE STANDARD TABLE OF zz_infoset01 WITH HEADER LINE.
      selection screen statements
      (define your selection-screen here)
    !! the following comment MUST NOT BE CHANGED !!
    *<QUERY_HEAD>
    *These will be the input parameters for the query
    parameters: sp_bukrs like skb1-bukrs,
             sp_saknr like skb1-saknr.     
      read data into IT_DATA
    (select your data here into internal table IT_DATA)
    *get all the G/L for com code and G/L in selection screen
    SELECT bukrs saknr fstag
                INTO TABLE it_data
                FROM skb1
                WHERE bukrs = sp_bukrs
                AND   saknr = sp_saknr.
      output of the data
      (this section can be left unchanged)
    *for every G/L get the status text from t004g for lang 'EN'
    LOOP AT it_data.
    SELECT SINGLE fsttx
                    FROM t004g
                    INTO it_data-fsttx
                    WHERE spras = 'EN' "Language
                    AND   bukrs = it_data-bukrs
                    AND   fstag = it_data-fstag.
      zz_infoset01  = it_data.                        .
    !! the following comment MUST NOT BE CHANGED !!
    *<QUERY_BODY>
    ENDLOOP.     
    8) Save and generate the Infoset.By clicking on the generate button.
    9) Now assign the Infoset to the query in SQ01 and select the output list fields.
    let me know if you need more info. Also award points if helpful.
    Regards,
    Santosh

  • Transport Request doesn't appear in File System

    Hello everybody,
    i want to Transport a Request via File System. If i release the Request it doesn't appear in File System. The Logfile looks like this:
    1 ETP199X######################################
    1 ETP183 EXPORT PREPARATION
    1 ETP101 transport order     : "DA5K900033"
    1 ETP102 system              : "DA5"
    1 ETP108 tp path             : "tp"
    1 ETP109 version and release : "380.03.58" "720"
    1 ETP198
    2 EPU230XExecution of the export pre-processing methods for request "DA5K900033"
    4 EPU111    on the application server: "SRV64"
    4 EPU138    in client                            : "100"
    2 EPU235XStart: Version creation of the objects of the request "DA5K900033"
    3 EPU237 Version creation started as update request
    2 EPU236 End: Version creation of the objects of the request "DA5K900033"
    2 EPU231XStart: Adjusting the object directory for the objects of the request "DA5K900033"
    2 EPU232 End:  Adapting the object directory for the objects of the request "DA5K900033"
    2 ETN085 "Adding component vector" " " " " " "
    2 ETN085 "Finished." " " " " " "
    1 ETP183 EXPORT PREPARATION
    1 ETP110 end date and time   : "20140519103034"
    1 ETP111 exit code           : "0"
    1 ETP199 ######################################
    I've allready granted Everyone Full Control to the \trans Directory for testing purposes.
    OS: Windows Server 2008 R2
    DB: MS SQL Server 2008 R2
    Any suggestions?
    Best regards
    Dominik

    Hi Dominik
    What is the target of this transport request? Are you sure it's not marked as "local" in transaction SE01 for example? Because if it is a local transport request, it will not generate a file.
    Best regards
    Tom

  • The New Field in the FBL5N/FBL1N doesn't appear

    Hi guys,
    I created an APPEND STRUCTURE with the NAME1 field in the table RFPOS and through the transaction FIBF an Event that calls a Function and move the Name of Customer or Supplier according to the transactions FBL5N or FBL1N.
    This field, NAME1, should appear in these transactions when the user choices the hidden fields through the Change Layout button. But this field doesn't appear...
    I debbuged the Function Module and the data have been moved. (It works...)
    Please, someone did it before and could help me to solve it?
    Why doesn't the Field NAME1 appear? What could I do??
    Thanks a lot!
    Regards,
    Marcos Fernando Dotta

    Hi
    The new fields have to be appended in the structure RFPOSX too, and then you need to run the program RFPOSXEXTEND in order to add the new fields in layout structure RFPOSXEXT
    Max

  • OTR text translation doesn't appears on BSP

    Hi,
    I use an OTR text in a BSP but I can't edit its translation.
    The text has been created in language EN.
    I have created the FR translation using transaction SE63_OTR.
    The FR version exists and I can see it SOTR_EDIT.
    I have clear the buffer with transaction /$otr.
    Abap code used in BSP handler:
    CALL METHOD cl_bsp_get_text_by_alias=>get_text
    EXPORTING
    language = sy-langu
    alias = f_otr_text
    RECEIVING
    alias_text = f_designation.
    Unfortunately my translation doesn't appears in my explorer.
    I use the method bellow to get the french translation but it doesn't work, F_DESIGNATION is always the EN text even if SY-LANGU is FR.
    Do you have an idea ?
    Thank you.
    Julien.

    Hello!
    I have same kinf of problem than you.
    I have done translations to swedish and now one maintained text comes in english.
    System language is Finnish language and now we take Swedish in use. I have use tr. SOTR_EDIT for correct some
    translations and after that few texts comes in English.
    I have run report SOTR_BUFFER_RESET  and also clear  OTR buffers via  /$OTR  and execute /$sync
    Have anybody new idea to help in this problem?
    rgs
    Maija

  • After upgrading to IOS5, iphone doesn't appear on Itunes, and i cann't transfer pjhotos on iphoto, .., after upgrading to IOS5, iphone doesn't appear on Itunes, and i cann't transfer pjhotos on iphoto, ..

    after upgrading my iphone 4 to IOS5, it doesn't appear on "Itunes", and also i cann't transfer photos on "iphoto", .., so i cant load, save or erased anything now! 

    They are now in the videos app!

  • After I reset my Ipod (deleted all data and settings) windows 7 doesn't recognize by ipod touch, and it doesn't appear in the itunes library or in the device menu, but it does charge. How can I get my computer to recognize it again?

    After I reset my Ipod (deleted all data and settings) windows 7 doesn't recognize by ipod touch, and it doesn't appear in the itunes library or in the device menu, but it does charge. How can I get my computer to recognize it again?

    Refer to this article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538

  • HT1382 i got an iPad and all my app's, music,  and movies are on it, but when i try to download some apps to mi iPhone, they doesn't appear on the purchased tab, how could i move them back to itunes so i can access thru iCloud?

    i got an iPad and all my app's, music,  and movies are on it, but when i try to download some apps to mi iPhone, they doesn't appear on the purchased tab, how could i move them back to itunes so i can access thru iCloud? i have an 2nd generetion ipad and an iphone 5, thanks for you answers!

    (I think the daughter got he better end of the deal!)   I believe if you change the password and user id one of the devices it will stop that from occurring. But I'm not the one to tell you how to do it; someone like "Illaass" (Illaass seems to know how to correct / fix almost anything!) will know how if you don't. Just look for the "cat" icon.

  • Can't delete file from desktop. Can't get info. Doesn't appear in ls -a. What?

    Hi folks,
    I file has appeared on my desktop. I believe it's a temp file created while downloading something in Safari. When I try to delete it, I get "The item x can't be moved to the trash because it can't be deleted":
    I tried right click > Get Info, and nothing happens (the info dialog does not appear).
    I tried ls -al on my desktop, and the file doesn't appear in the list:
    How do I get rid of this thing? What is it?

    Weird. I guess if this were happening to me, I would see if the thing is still there after a reboot. If it is still there, I would boot with command-R and use Disk Utility to verify and repair the disk (not permissions).
    The file name indicates you were downloading something to run under windows. Do you have windows?
    charlie

  • If i selected to "Create a new backup" and then cancelled that option but want to go back and select "Inherit backup history"; how do i go back and do that since now when i plug in my HD, that option doesn't appear anymore?? Any Help?

    If i selected to "Create a new backup" and then canceled that option but want to go back and select "Inherit backup history"; how do I go back and do that since now when I plug in my external hard drive, that option doesn't appear anymore?? Any Help? I bought a MacBook Air, but decided to return it for the newest model, and I wanted to back it up so that I can then back it up on my new MacBook Air. I didn't understand the option to Inherit or start a new back up, and therefore selected the option to create a new backup. I believe I should have selected to Inherit backup history so that when i back it up on the new MackBook Air, it appears the same as the one I'm returning.... Is there anyway that i can re-select the option to Inherit backup history for time machine?

    Thanks for sharing this link.
    I've posted a question here https://discussions.apple.com/message/22049103#22049103 describing my situation. Are you able to suggest me the right option?

  • Save/open dialog box doesn't appear

    Hi,
    I have something strange. I can open and edit a project by double clicking on it, also start a new project. But when I want to save or open a project via "save as" of "open project" the dialog box doesn't appear. Saving an existing file trough "ctrl+s" works.
    Things I tried already are:
    - Restart my computer (windows)
    - Clear my AE cache
    - Reinstal AE
    Has anyone has this before? It would be great if it got solved because I can't complete work because of it.
    Tnx & grtz,

    Sorry, here the information that is required:
    Version 11.0.4.2 - CS6
    Installed recent updates: Yes
    OS: Windows 7 Pro (Service pack 1) 64 bit
    Model: HP Z420 Workstation
    Processor: Intel Xeon CPU E5-1620 @3.60Ghz
    Ram: 8Gb
    Has it worked before: yes. It started after I opened a project (trough "open project") because double clicking on this project gives the follwoing error: "The directory name is invalid". Via "Open project" I could open it.
    Do you have any third-party I/O hardware (e.g., AJA, Matrox, Blackmagic, MOTU)? No
    Quicktime 7 pro installed
    Do you have any third-party effects or codecs installed? Yes, Optical Flares & Trapcode. But is unrelated since it isn't a specific project.
    Are you using Render Multiple Frames Simultaneously multiprocessing? Yes
    Are you using the ray-traced 3D renderer? No
    Thanks for the help. If you need any other info, let me know

  • In Mail, Reply To and Subject area doesn't appear

    In Mail, Reply To and Subject area doesn't appear on an opened email.

    Hi
    Go to Mail / Preferences
    on the Viewing tab - Show header detail  - drop down box
    Select whatever suits you. - try default
    /Dennis

Maybe you are looking for