Bdc control views

hai,
    i have a problem in selecting views for multi user run,i will explain here,while recording a transaction in bdc for example take mm01 transaction when u record first u will be selecting the views which u need for the data batch process run so when one user runs the recording and saves it when another user runs the same recording the views order in the views  selection may change so how can one constrain the views order to a particular way irrespective of user ,means who ever be the user once the views order is selcted the same order shoul be taken by all users so kindly help me in thiss problem

Hi.....
We should not select the views by scrolling ...need to select views using PgDn button then it could work fine for any User..
Please do close the thread if your problem solves..
regards,
sg

Similar Messages

  • Named Criteria created, but it does not show up in the Data Controls view

    Hello there,
    I wish to use a data-bound ADF Mobile ListView in one of the pages on the app. However, only entries of the underlying data that fulfill a certain condition shall be displayed in the list. The condition basically is an "Equals" test against a bind variable in the pageFlowScope. Therefore, I have created a corresponding Named Criteria for the data control - proceeded like described here:
    https://blogs.oracle.com/adf/entry/create_named_criteria_in_ejb
    The Named Criteria, in my case, has been created and saved, yet it does not show up in the Data Controls view of JDeveloper. Therefore, I cannot drag it on a UI element to use it.
    I only have the "Operations" folder where the quick guide above also shows a "Named Criteria" folder.
    Refreshing or restarting JDeveloper did not solve this.

    It was all taken care of by Gaurav Aggarwal
    He got me all fixed up, Thank you for your concern.
    Daniel Walters

  • How to clear table control view lines?

    Dear Experts,
    I created one ALV Report with push buttons. User can select multiple line. After select the lines, when user clicks push button in ALV, then am calling POPUP screen 1100 with save and cancel button. which ever line user selected in ALV, that will appear in the POPUP screen 1100 with table control view.
    issue :
    Ex :
    In ALV user selected 3 lines , that appeared in POPUP screen 1100 table control view. Now user wants to select some more line in ALV. so user clicked cancel and reached ALV screen. user selected 2 more line in ALV (total 5 lines). Again user clicked same push button in ALV, But now same 3 lines (old record) are appearing in POPUP screen 1100, new records (5 lines) are not appearing.
    Code :
    My PBO internal table is having 5 records. but in table control only 3 records are appearing.
    PROCESS BEFORE OUTPUT.
      MODULE status_1100.
      LOOP AT git_prq_items1 INTO gwa_prq_items1
                             WITH CONTROL ctl_pr_items.    
    ENDLOOP.
    PROCESS AFTER INPUT.
      MODULE user_command_1100.
      LOOP AT git_prq_items1.
        MODULE read_table_control. " if any changes happened in table control - read table control.
      ENDLOOP.
    MODULE status_1100 OUTPUT.
      SET PF-STATUS ''.
    ENDMODULE.                 " status_1100  OUTPUT
    git_prq_items1 -  this internal table is having 5 records.
    Please suggest where should i correct.
    Regards
    chessleo.
    Edited by: sapleo on May 6, 2011 9:59 AM

    Hi.,
    Clear the records and populate new records., also use refresh table display if u are using oo alv.
    check  BCALV_GRID_05 report.,
    Hope this helps u.,
    Thanks & Regards
    Kiran

  • Issue with KB2830477 and SCCM 2012 Remote Control Viewer

    I've just rolled out Feb '13 updates for Windows 7. The update KB2830477 appears to cause
    an issue when closing a remote control session using SCCM Remote Control Viewer
    (2012).
    The following error appears:
    "ConfigMgr Remote Control Viewer has Stopped Working"
    "A Problem Caused the Program to Stop Workingcorrectly. Please Close the
    Program"
    In the Event log, the following event is triggered in Windows Logs>Application.
    Faulting application name: CmRcViewer.exe, version: 5.0.7711.0, time stamp: 0x4f42f979
    Faulting module name: msxml6.dll, version: 6.30.7601.17988, time stamp: 0x5091ff29
    Exception code: 0xc0000005
    Fault offset: 0x00056368
    Faulting process id: 0x24c0
    Faulting application start time: 0x01cf2d7bf99dc96d
    Faulting application path: C:\Program Files\Microsoft Configuration
    Manager\RemoteControlViewer\CmRcViewer.exe
    Faulting module path: C:\Windows\System32\msxml6.dll
    This is with an EventID: 1000. Removing the update resolves the issue.
    Report Id:
    36c3642d-9970-11e3-89bd-028037ec0200

    Hi,
    I recommend you check the log file CMRcViewer.log:
    It records details about the activity of the remote control viewer.
    Located in the %temp% folder on the computer running the remote control viewer.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Control VIEW cursor with SUD Dialog

    Hello,
    I've developed a little SUD dialog and sticked into the bottom of VIEW. I the TopArea I've "CurveChart2D".
    With the dialog I want to change the cursor type and mode (see code below)
    If I try to change the cursor from this script (the script is inside the embedded VIEW dialog I get the message of DIAdem "error"
    If I try now to change the cursor with the VIEW buttons I get the message "Schwerwiegender Fehler".
    In fact this little script crash DIAdem. I've to restart.
    If I use the Dialog standalone (not as a part of VIEW), everything works fine.
    I believe the problem is, that you can't change something from an ActiveArea (Dialog in Area : 2) inside an InactiveArea (2D Graph in Area :1)
    But this works (graph change something inside the dialog)
    Sub ViewConnector_EventCursorPosChanged(ByRef This) 'Erzeugter Event-Handler
    'todo change the label and value controls for the different cursor and trim methods
     edtXPosVal.Text = View.ActiveSheet.Cursor.X1
     edtYPosVal.Text = View.ActiveSheet.Cursor.Y1
     edtChnPos.Text =  View.ActiveSheet.Cursor.P1
    End Sub
    So the point is,
    1. how is it possible to control VIEW with an embedded SUD dialog?
    2. The script engine shouldn't crash DIAdem. It should just abort or shouldn't be executable.
    Sub Button1_EventClick(ByRef This) 'Erzeugter Event-Handler
    iTrimMethod = rdbtnTrimMethods.Value
    Dim oSheets
    Dim oChart
    oSheets = View.Sheets
    sSheetName = View.ActiveSheet.Name
            Select Case iTrimMethod
                  Case 0
                   MsgBox View.ActiveSheet.Name & " Index= " & View.ActiveSheet.Index
                     Set oChart = View.Sheets(View.ActiveSheet.Name).Areas("Area : 1").DisplayObj
                      View.Sheets(View.ActiveSheet.Name).Cursor.Type = "Crosshair"
                      View.Sheets(View.ActiveSheet.Name).Cursor.Mode = "GraphPoints"
                      View.Refresh
                  Case 1
                  MsgBox View.ActiveSheet.Name & " Index= " & View.ActiveSheet.Index
                      View.ActiveSheet.Areas(1).Active = True
                      View.Sheets(View.ActiveSheet.Name).Cursor.Type = "Band"
                      View.Sheets(View.ActiveSheet.Name).Cursor.Mode = "GraphPoints"
                      View.Refresh
                  Case 2
                  MsgBox View.ActiveSheet.Name & " Index= " & View.ActiveSheet.Index
                      View.ActiveSheet.Areas(1).Active = True
                      View.Sheets(View.ActiveSheet.Name).Cursor.Type = "Crosshair"
                      View.Sheets(View.ActiveSheet.Name).Cursor.Mode = "GraphPoints"
                      View.Refresh
            End Select
    End Sub
    Best regards
    Thomas Plöger
    BASF Catalysts Germany GmbH

    Hallo Mr. Plöger,
    I've double-checked the described behavior. In general, the script code you've developed is OK. But there was a bug in DIAdem that causes the problem. It will be fixed with the DIAdem 2010 service pack that we can provide soon.
    Greetings
    WalterRick

  • Trading Partner field in control view of Vendor Master

    what is the use of Trading Partner field in control view of Vendor Master.
    In which business scenario it is used.

    I searched the Forum and found many threads on this topic in ERP financial.
    This field is connected to FI.
    Since I was not aware of this so I posted in MM forum after searching in MM forum. I apologize but this happened due to ignorance.
    Below threads will give insight into this
    Re: Use of trading partner field in GL Master, Vendor and Customer Master
    Trading Partner ??
    trading partner
    Thanks to all

  • SCCM 2012 Remote Control Viewer - Multiple Session

    Hello Guys,
    We have faced one issue that there have only one session can be connected if we are using the SCCM 2012 remote control viewer. The problem is that we have two support team may require to remote the same desktop in the same time via the remote control viewer.
    Do anyone know how we can activate more session for remote control viewer in SCCM 2012?
    Thanks,
    SCCM users

    FYI – If you need to have 2 technicians remoted into the same device, we found a workaround, this works with SCCM 2012 SP1 CU3, and Windows 7 clients.
    For tech1, using the ConfigMgr console, right-click the device, Start -> Remote Control
    For tech2, using the ConfigMgr console, right-click the device, Start -> Remote Assistance

  • Leopard client controls view of tiger server share point

    Hi, recently purchased a Mac Mini running Leopard all patched. Connected via afp to a Xserve RAID, Xserve running a sharepoint using ACL's. In list view the leopard client controls the list view on the Xserve, meaning that all the other Tiger clients see the leopard clients folder structure when they connect to the sharepoint. I have not changed any settings on the Xserve, just re-propogated the permissions and ACL's.
    Any ideas would be great,
    Andy

    ipb1962 wrote:
    BUT When I use the DHCP service to specify my DNS to a Leopard Client from (Tiger Server on a G5)
    it does not resolve to any internet address.
    Can you clarify what you mean here?

  • Controlling #views/#prints and getting audit event notifications

    We have an evaluation of LiveCycle up and running, and we are negotiatons for purchase. In doing some quick proof-of-concept work, we ran across a couple issues we are looking to get help with.
    Background: We are working in .Net using LiveCycle web services. We can successfully apply a policy to a PDF using web services, and we can successfully manipulate a PDF using reader extensions using web services.
    1. We see where we can apply validity dates in the Policy, but where can we limit the number of views or prints allowed on the document? Is this even controlled by the policy, or somewhere else? We see where we can assign permissions to principles, but this is more of "Can print" or "Can view offline" but not a control on the Quantity of prints or views. Is this something we can setup via the web interface, or is it something we need to supply custom java extensions for? And if we need to supply extensions, is there any way to point us in the proper direction? (this seems like it would be fairly typical usage)
    2. How do we setup livecycle so we can get notified of audit events like "# allowed views reached" or "# allowed prints reached" or just "someone viewed this PDF". We are a .net house, so is there any way to get notifications of this externally? Or do we have to supply some sort of extensions to LiveCycle? And if we have to supply an extension, can you point us in the proper direction?
    Many thanks for any insights we can get on these issues.
    Michael

    Rob
    If you want to revoke or expire a document based on user action (i.e. printing or viewing the document) then you can do this by capturing the print or view event in your process and then have your process perform the desired steps (i.e. revoke the document).
    If you simply want to have the document revoked after a certain date or for it to only be valid for a specific period, you can do this as part of the policy definition itself.  When you create a policy, you can specifiy one of the following:
    1)  Document will not be valid after x days
    2)  Document will not be valid after this date: x
    3)  Valid from "date 1" to "date 2"
    or
    4)  Document is always valid  (which means you would need to revoke\expire the document manually or via a process)
    This functionality has always been a part of Rights management.
    Regards
    Steve

  • BDC Selecting view in MM02

    Hi Experts,
      I am doing BDC Session method for Tcode MM02.There i am getting selection View screen for different material.But if i select a material in Sales view i need to select Sales :Sales org dAta.
    It's coming third position.
    But for some material it's coming fourth view.
    If i record bdc in third position it'll take third view some other. how i can select the view in selection view.
    Please,Anybody knows give me the suggestion.
    Thanks & Regards,
    Nandha

    Hi Experts,
      I am doing BDC Session method for Tcode MM02.There i am getting selection View screen for different material.But if i select a material in Sales view i need to select Sales :Sales org dAta.
    It's coming third position.
    But for some material it's coming fourth view.
    If i record bdc in third position it'll take third view some other. how i can select the view in selection view.
    Please,Anybody knows give me the suggestion.
    Thanks & Regards,
    Nandha

  • Combine PDF / Control View

    When I combine PDFs into a single PDF the default view is "page width".  How can I control this and force all pdfs to have "fit page" ?  Acrobat 9.5.5 is used.

    File >>  Properties  >> Initial View >> Magnification
    Then save file

  • Can control/view, but not any other task.  All ports fowarded already? HELP

    Ok... I have one machine connected to the internet via. DSL, the IP changes almost daily. i have setup a crontab to email me the ip twice a day, taking care of that. However I connect to the machine to control, and or view it. The client does not show up as ARD active, ARD not actve, or VNC ....nothing! It shows in the master list as OFFLINE. All the appropriate ports are fowarded to that machine. (which happens to be he only one connected to the router)Both TCP, and UDP. I even tried fowarding ALL ports both UDP, and TCP to the machine. The ARD user is enabled in system preferences. Because the client is listed as OFFLINE, all reports, file copy, and any other function other than control, or view fail. Any suggestions?

    thanks

  • 3d picture control view single object

    I'm using the 3D picture controlfor the first time and I'm amazed at how much faster it is at drawing than the old Picture control.  Likey Likey.
    What I would like to do is to abuse the 3D picture control as a 2D picture control but I need to fill the viewport with a single side of a box created in the scene.
    I can create the box to have th same orientation and size of the viewport and also create the texture for the box the same size, this is no problem.  What I want in the end is to have my texture pixel-perfect in the viewport of the 3D picture display.
    I can do this manually via "projection Matrix" and "model View Matrix" but I don't quite understand where the numbers come from.  Since I'm a bit of a dunce when it comes to matrix transoformations, can somebody perhaps help me out with some tips on where to find this informaiton out?
    Shane.
    Say hello to my little friend.
    RFC 2323 FHE-Compliant

    I worked it out. 
    Knowing that the corners of the viewport are always from -1,-1 to 1,1 regardless of the actual aspect ratio of the indicator it's kind of easy to work out the settings required.
    Simply paint a texture on a 1x1x1 cube and voilà.
    I'm amazed at the difference in speed between the old picture control and the new 3D picture control.  Is it hardware-accelerated?
    Shane.
    Say hello to my little friend.
    RFC 2323 FHE-Compliant

  • Table control View in Maintenance order Services tab

    Hi Experts,
    I am trying to change the table control fields of the services tab of the maintenance order , when we use PM03 control key to generate services PR.
    I try to remove some check box which are earlier defined as invisible to make it visible. However after saving the system variant system doesnt take the changes. It is coming back to the original .
    Here are couple of fields I would like to change the setting. As of now I am trying to change the below mentioned field to visible . Presently it is in invisible mode.
    Fields
    Formula::ESLL-FORMELNR,
    Form values: ESLL-FRMVAL1 to ESLL-FRMVAL5 and
    User field3:  ESLL-USERF1_TXT
    program name SAPLMLSP
    Control TC_VIEW
    I am following the below. Kindly let me know whether I am following the right step.
    1) Click on tbale setting
    2) CLick on administrator
    3) Select the field and do the necessary change to make visible or invisible.
    4)Activate
    5)Close
    6) save.
    RG
    Vinod
    Edited by: vnodpm on Feb 6, 2012 7:07 PM

    Hi,
    The IMG customizing will have greater priority than the screen table controls (also specific program logic can supersede the table controls). Check the customizing for service screen at following path:
    SPRO - Materials Management - External Services Management - Define Screen Layout
    -Paul

  • Access Control View All Role

    Hello Experts,
    We are currently implementing GRC Compliant User Provisioning for the client. Apart from the configuration team with role AEAdmin, we have few client experts to look into the sandox system and understand the cnfiguration we made is as per the requirement.
    In doing so, they tend to modify some or other configuration at times knowingly/ unknowingly which lead us to longer debugging time.
    Is there a way I can create a UME role with only View Configuration Action to avoid such circumstances.
    Thanks
    Rashmi

    Hi Rashmi,
    1- Assign following actions to Role:-
    ViewReject
    ViewHold
    ViewCopyRequest
    ViewCreateRequest
    ViewSearchRequestAll
    ViewRequstAuditTrail
    ViewForwardRequest
    ViewReRoute
    ViewAccessEnforcer
    ViewSelectPDProfiles
    ViewMitigation
    ViewRiskAnalysis
    ViewSelectRoles
    ViewReaffirms
    ViewRiskAnalysis
    ViewSelectRoles
    ViewReaffirms
    ViewApprove
    ViewApproverDelegation
    Using this action You can saw following Tabs in Access Enforcer
    1- Access Enforcer
            -Requests For Approval
            -Create Request
            - Search Requests
            -Requests On Hold
            -Approver Delegation
            -Copy Request
            -Search Request Audit Trail 
            -Role Reaffirms
    2-Informer Tab
            -Services Level For Requests
            -Conflicts And Mitigations
            -Request By Roles And Role Owners
            -List Roles And Owners
            -Requests By PD/Structural Profiles
    3-Configuration Tab
            -Monitoring
                      -System Log
                      -Application log
           - Upgrade
    Rest of the Tabs in Configuration is running along with Modify action in  AE5.2.
    2- Some new actions are added by SAP GRC RND Team  In Compliant User Provisioning 5.3( Access Enforcer 5.3) for only view the Initiators,Stages,Path,Connectors,Provisioning,HR Trigger,Userdefaults Etc.
    In AE 5.3 independent  View and Modify actions are available
    for each tab like for initiators ,Connectors Ect, But this type of provision is not available in AE 5.2.
    Regards,
    Jagat

Maybe you are looking for

  • How to open and view a demonstration file of MS Power Point 2010 on iPad 2?

    Hello! I've made a MS Power Point file for my boss, he is using an iPad 2 (iOS 4) But he can only open a static picture of the presentation, but he can't view the presentation step by step as it should be. Which app or feature should he use to see fu

  • I still have Cd/DVD drive issues

    The CD is ejected after a short while and never mounted. I have cleaned the optics of the CD drive and reset my PRAM. Has anybody discovered a complete solution for this problem.

  • Random Numbers not playing fair!

    Hi All. Can anyone explain why I keep getting the same number out of the Random class? Each time I run my program, I get a different number, but it then repeats that same 'random' number. I've tried using the Math.random and that didn't seem to work

  • How to measure on depth image

    I am trying to measure the area of an object that has been captured by a ToF camera.  The object is the round "sausage" like object. I am wondering how I should measure on the depth image? I also have an RGB image and originally I considered to detec

  • Question about different query results with wildcard

    Hi, I'm working with a third party app on SQL Server 2000, and from what I can gather, programmed in C# & VisualFoxPro. When we search with     Note contains 94949 we get 571 results, when we search with     Note contains 94949* we get 575 results. T