Re: Passing the record reader user C to E drive Satellite L40 - 17U

Hello

The HARD disk is partitioned with the 'C' drive users and any system/vista files. C drive now more complete. Many tried to copy the user folder on disk 'E' with only partial success. Want to remove c altogether and switch to E - in order to separate the data files and re-allocated.

Any ideas greatly appreciated.

Thank you very much

Simon

Hello

You just have to change the path in the folder properties.
Turn right click the file, choose Properties and there should be an option that allows you to change the patch.

See you soon

Tags: Toshiba

Similar Questions

  • Satellite L40 - 17U displays only the 4:3 ratio in the games?

    Hello

    Is it possible to get the Satellite L40 - 17U in the large display screen in games? It seems only manage 4:3, which leaves two black stripes down each side of the screen. Same in Win XP and Win 7 whatever the thing that the game is set to run to.

    Thanks for any help.

    Best regards

    Sean

    Hello Sean

    Have you checked the video game settings?
    Is there something you can change?

    By the way: what game you play when this happen?

  • How to pass the Record of entry to the dynamic SQL Code

    Hi all

    I am trying to run under Oracle applications API on the remote database using DB Link. I try to run using dynamic SQL. Part of the code is given below.

    DECLARE

    l_batch_info_rec wsh_picking_batches_pub.batch_info_rec;

    l_rule_id NUMBER;

    l_rule_name VARCHAR2 (240);

    l_batch_prefix VARCHAR2 (240);

    BEGIN

    l_batch_info_rec.document_set_id: = v_document_set_id;

    l_batch_info_rec.order_type_id: = v_order_type_id;

    l_batch_info_rec. Default_Stage_Subinventory: = v_default_stage_subinventory;

    l_batch_info_rec.pick_grouping_rule_id: = v_pick_grouping_rule_id;

    l_batch_info_rec.pick_sequence_rule_id: = v_pick_sequence_rule_id;

    l_batch_info_rec.autopack_level: = v_autopack_level;

    l_batch_info_rec.autopack_flag: = v_autopack_flag;

    l_batch_info_rec.ac_delivery_criteria: = v_ac_delivery_criteria;

    l_batch_info_rec.backorders_only_flag: = v_backorders_only_flag;

    l_batch_info_rec.existing_rsvs_only_flag: = v_existing_rsvs_only_flag;

    l_batch_info_rec.customer_id: = v_customer_id;

    l_batch_info_rec.order_header_id: = v_header_id;

    l_batch_info_rec.from_scheduled_ship_date: = NULL;

    l_batch_info_rec.organization_id: = v_organization_id;

    l_batch_info_rec.include_planned_lines: = v_include_planned_lines;

    l_batch_info_rec.autocreate_delivery_flag: = v_autocreate_deliveries_flag;

    l_batch_info_rec.autodetail_pr_flag: = v_autodetail_pr_flag;

    l_batch_info_rec.allocation_method: = 'I ';

    l_batch_info_rec.pick_from_locator_id: = NULL;

    l_batch_info_rec.auto_pick_confirm_flag: = 'n';         -The value manually to run Transact order

    l_batch_info_rec.autopack_flag: = 'n';         -Manually configure to perform the manual packaging

    l_rule_id: = NULL;

    l_rule_name: = NULL;

    l_batch_prefix: = NULL;

    v_sqlstmt1: = ' START

    wsh_picking_batches_pub.create_batch' | g_db_link | "(1.0,

    fnd_api.g_true,

    fnd_api.g_true,

    : l_return_status,.

    : l_msg_count,.

    : l_msg_data,.

    : l_rule_id,.

    : l_rule_name,.

    : l_batch_info_rec,.

    : l_batch_prefix,.

    : p_new_batch_id

    );

    END;';

    --

    EXECUTE IMMEDIATE V_sqlstmt1

    With the HELP OF THE l_return_status,.

    ON l_msg_count,.

    ON l_msg_data,.

    BY l_rule_id,

    BY l_rule_name,

    BY l_batch_info_rec,

    BY l_batch_prefix,

    OUT p_new_batch_id;

    --

    END;

    After you run this script, I get below error "PLS-00457: expressions must be SQL types ' for variable l_batch_info_rec which is of type record. can someone please guide me how can I pass variable type dynamic SQL record.

    Thank you

    Priyanka

    Food for thought:

    On remote db:

    SQL > create or replace
    package 2 pkg
    3 is
    4 type r_type is (record
    Number 5,
    6 name varchar2 (10)
    7                            );
    (p) 8 procedure
    9 p_rec in r_type,
    10 p_out out varchar2
    11                  );
    12 end;
    13.

    Package created.

    SQL > create or replace
    package 2 body pkg
    3 is
    4 procedure p)
    5 p_rec in r_type,
    6 p_out out varchar2
    7                  )
    8 is
    9 start
    10 p_out: = "ID = ' |" p_rec.ID | 'Name =' | p_rec. Name;
    11 end;
    12 end;
    13.

    Package body created.

    SQL >

    On local db:

    SQL > set serveroutput on
    SQL > declare
    v_rec 2 pkg.r_type@pdb1sol12;
    3 v_out varchar2 (50);
    4 start
    v_rec.ID 5: = 1;
    6 v_rec.name: = 'XXX ';
    7 immediate execution"
    8                        begin
    9 pkg.p@pdb1sol12 (: 1,: 2);
    10                        end;'
    11 using v_rec,
    12 v_out;
    13 dbms_output.put_line (v_out);
    14 end;
    15.
    using v_rec;
    *
    ERROR on line 11:
    ORA-06550: line 11, column 20:
    PLS-00457: expressions must be SQL types
    ORA-06550: line 7, column 5:
    PL/SQL: Statement ignored

    SQL > declare
    2 number of v_id: = 1;
    3 v_name varchar2 (10): = 'XXX ';
    4 v_out varchar2 (50);
    5. start
    6 immediate execution"
    7 report
    8 v_rec pkg.r_type@pdb1sol12.
    9                        begin
    10                            v_rec.id  := :1;
    11 v_rec.name: =: 2;
    12 pkg.p@pdb1sol12 (v_rec,: 3);
    13                        end;'
    14 using v_id,
    15 in v_name,
    16 v_out;
    17 dbms_output.put_line (v_out);
    18 end;
    19.
    ID = 1 name = XXX

    PL/SQL procedure successfully completed.

    SQL >

    SY.

  • Passing the record in function type [error: identifier must be declared]

    Hello
    I have a record defined in my procedure type
    type chk_tab is (record
    effective date,
    County number (9)
    )

    type chk_typ is table of chk_tab of binary integer index;
    chk_typ_rec chk_typ;

    I have to pass another function of the effect and the County, tried doin as below:
    function name: func_chk_typ

    func_chk_typ (effect, count);

    This property returns a saying "identifier effect must be reported.

    I need to pass those values to registration in the service type, how more of this coming?
    Any help is appreciated.

    Hi Camilla,

    Find code below.

    The function code:

    CREATE OR REPLACE FUNCTION fetch_band(eff in date,ineff in date)
    return number
    is
    
      lu_cb_sysid  NUMBER;
    
    BEGIN
    
    select fk_cb_sysid
    into lu_cb_sysid
    from ia_for_icon
    where cr_ans_date >= eff
    and cr_ans_date < ineff;
    
    RETURN lu_cb_sysid;
    
    END fetch_band;
    

    Code of procedure. Here, I joined the service.

    CREATE OR REPLACE procedure abc(a varchar, b number) is
      type cns_tab_record is record(
        eff   date,
        ineff date);
    
      type cns_tab_typ is table of cns_tab_record index by binary_integer;
    
      cns_tab cns_tab_typ;
    
      v_lu_cb_sysid NUMBER;
    
    BEGIN  
    
      -- Here you have to assign the values to your table type record.
      -- For example I am passing two values SYSDATE and SYSDATE - 10
    
      cns_tab(1).eff := SYSDATE;
      cns_tab(1).ineff := SYSDATE - 10;
    
      v_lu_cb_sysid:= fetch_band(cns_tab(1).eff, cns_tab(1).ineff);
    
    END abc;
    

    But I wonder why you use the data type here table type.

    Hope code above will help you.

    Thank you
    Suri

  • How to pass the name of user and password to BPEL of the java proxy web service?

    Hi all

    Environment: SOA Suite 11g

    I use basic http authentication in my SOA services using a strategy of "oracle/wss_http_token_client_policy. Now, I need to call these SOA web services from a java proxy.

    Please let me know how this can be done.

    Thanks in advance

    Have you tried the messages below?

    BPEL to invoke the secure with HTTP Basic authentication Web service
    Call a BPEL process using the HTTP Basic authentication

    http://docs.Oracle.com/CD/E21764_01/Web.1111/e13713/owsm_appendix.htm#CHDBAHBI

    Thank you
    Vijay

  • [NMH300] Try to use Vista backup, but what is the name of user and password to drive Z?

    I use the pole NMH300 media and I want to create a backup process this file copies on drive Z (media Division) and Vista backup invites me for the username and password for the drive Z, which is funny because I never enter a username or password to access this disk , and the more I use a password only to access the media hub File Explorer but I've never had to enter a user name.  What Miss me?

    Thanks in advance.

    Joey

    The utility of backup Vista encrypts the data on the hard drive using the security feature of NTFS format and I think it will not be able to do that if you go back up to the mediahub since its already a different device with a different file for its Reader format. Vista Backup utility is intended only then to NTFS formatted disks so that it can encrypt/secure data being saved. Just use the NTI Shadow backup tool to backup your files, it's a good tool.

    Backup NTI Shadow

    See you soon.

  • When changing the 80 GB to 40 GB HARD drive, Satellite M40 does not recognize the drive

    Hi all

    Thanks for coming in! :)
    I recently source two-disc 40GB 2.5 "IDE and intended to run one of them in my Satellite M40.

    The problem starts here:

    (1) I took the original 80 GB hard drive & install the 40 GB hard drive
    (2) start and put in the Toshiba M40 recovery disk
    (3) display screen 'Y' for recovery blah blah blah thing...
    (4) then the screen shows 'cannot be installed because no hard drive found ".
    (5) I boot in the BIOS using F2-> F1, page 2 shows no hard drive

    (6) I try to use my own CD of Windows XP Pro, same thing (as in no hard drive found)
    (7) and the BIOS too show no hard drive found

    The two disk 40 GB is out of mobile work and they formatted it, partition deleted with NOTHING on it. They have also been tested on other PCs (using the converter) using WXP. Two of them work very well!

    Now, the weird thing is that I just can't make it work at least in the Sat - M40. Why is this? Toshiba locked the M40 being one Toshiba-disc is usable?
    Is there a place to get through it? Hidden BIOS?

    I have fixed a large number of PCs, but I can't with this, Please HELP...
    Any response would be appreciated, thanks! :)

    Hello

    The M40 should be able to use 40 GB hard drives with no problems.
    But you must use hard drives with the right interface.
    To my knowledge the M40 supports hard drives with an interface IDE (ATA-6).

    So be sure that your 40 GB HARD drive supports it.

    By the way; Check if your HARD drive supports the good master or slave definition.

  • my windows vista starts normally until I have pass the user coice screene. After that, I see the cursor but everything is black. What should I do? Thank you very much!

    my windows vista starts normally until I have pass the user coice screene. After that, I see the cursor but everything is black. What should I do?

    It was probably caused by the removal of any file system as I was scaning the pc for malware and probably deleted some important file. only safe mode works now
    and I need my computer quite urgent for the University.
    Thank you very much!

    Hello

    No saving necessary data and re-installing Windows Vista might be the best option, but here
    are a few others.

    You can save your files by putting the drive in another computer as a 2nd disk (best) or external
    Drive USB enclosure and then backup to removable media such as CD, DVD or other USB drives.
    Of course a real store of the computer or the manufacturer of your system can help to recover the files.

    Or you can use a boot Ubuntu CD to back up data.

    Use Ubuntu Live CD to backup files from your Windows computer dead
    http://www.howtogeek.com/HOWTO/Windows-Vista/use-Ubuntu-Live-CD-to-backup-files-from-your-dead-Windows-computer

    --------------------------------------------------------------

    You can access Mode safe? Repeatedly press F8 as you start? If yes you can try Control Panel - device
    Manager - graphics card - Double click on - driver tab - click on UPDATE driver - then right click
    on devices and UNINSTALL - REBOOT.

    A method to try to get to the desktop (try in normal Windows Mode without failure) is CTRL +.
    ALT + DELETE - Manager tasks and tab process EXPLORER.exe and COMPLETE the PROCESS on this subject - and then
    on the Applications tab - lower right - new task - type in EXPLORER.exe. Safe mode is available by
    repeatedly tapping F8 as you start. CTRL + SHIFT + ESC also begins the Task Manager.

    First check this thread in case it is simple and if not to come back to this thread.

    http://social.answers.Microsoft.com/forums/en-us/vistaprograms/thread/50247d5e-0ae0-446c-A1bd-11287fd1478a

    Black screen problems are extremely difficult to repair and all patch is usually on a base hit or miss.
    That there is no information on a black screen as it is on a blue screen just adds to the
    Difficulty. Often using a restore point or Startup Repair will have no effect. You can try a
    Google to see the proposed repairs, whom some have worked however these cover a wide
    field efforts.

    Here's a video of one of them.

    http://www.Google.com/search?hl=en&q=black+screen+of+death+Vista&btnG=search&AQ=f&OQ=&AQI=G1

    Here's another fix
    http://blogs.PCMag.com/SecurityWatch/2008/12/the_mysterious_black_screen_of.php

    You have a Vista disk? You can try restoring the system to it. If you don't have the disks your
    system manufacturer will sell them at low prices. Or try in safe mode if you can get there.

    How to make a Vista system restore
    http://www.Vistax64.com/tutorials/76905-System-Restore-how.html

    You can create a recovery disc or use someone even version (making the system restore it)
    must be bootable).

    How to create a Vista recovery disk
    http://www.Vistax64.com/tutorials/141820-create-recovery-disc.html

    ------------------------------------------------

    These require the correct Vista discs since you can not start safe mode.

    Try the Startup Repair tool-

    This tells you how to access the System Recovery Options and/or with a Vista disk
    http://windowshelp.Microsoft.com/Windows/en-us/help/326b756b-1601-435e-99D0-1585439470351033.mspx

    Try recovery options Startup Repair

    How to do a startup repair
    http://www.Vistax64.com/tutorials/91467-startup-repair.html

    -----------------------------------------------

    Here are a few Google searches where many have found different solutions:

    Vista black screen - check that a 1st
    http://www.Google.com/search?hl=en&source=HP&q=Vista+black+screen&AQ=f&OQ=&AQI=G10

    Vista black screen Solution
    http://www.Google.com/search?hl=en&q=Vista+black+screen+solution&AQ=f&OQ=&AQI

    Vista black screen Fix
    http://www.Google.com/search?hl=en&q=Vista+black+screen+fix&AQ=f&OQ=&AQI

    -----------------------------------------------

    If necessary and you can access all ordinary Windows.

    You can try an In-Place Upgrade (hopefully save programs and data) or a repair installation
    (if all goes well, the data records and need to reinstall programs). Be sure to do a good backup or three.

    You can use another DVD that aren't copy protected but you you need to own
    Product key.

    On-site upgrade
    http://vistasupport.MVPs.org/repair_a_vista_installation_using_the_upgrade_option_of_the_vista_dvd.htm

    If nothing works, you can make a repair facility that must save the data but you will need to
    Reinstall the programs. This also requires correct Vista disks especially for OEM versions. You will be
    need to know your product Code.

    This tells you how to access the System Recovery Options and/or a Vista DVD
    http://Windows.Microsoft.com/en-us/Windows-Vista/what-happened-to-the-recovery-console

    How to perform a repair for Vista Installation
    http://www.Vistax64.com/tutorials/88236-repair-install-Vista.html

    ---------------------------------------------------------------------------

    Another method that works sometimes: at the command prompt, type of Vista startup disk:
    (a line type or copy and paste one line at a time and hit enter - enter a bracket)
    or "BOLD")

    c:

    cd\

    CD c:\Windows\System32\winevt (there is a space between cd and C :)

    Ren LogsOLD Logs (there are spaces between ren and newspapers and Logsold)

    RESTART Windows

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • How to read the contents of the attachments to the record listener?

    Hi all

    We have a blackberry user interface application that implements FolderListener. The messagesAdded(FolderEvent e) public void in the record listener method is called whenever a new message arrives on the device.

    Now, there are some emails that will also spare.

    Can someone tell me how to read the contents of the attachment?

    I can read correctly the content of the body of the email.

    Our code to handle the arrival of e-mail for your reference is mentioned below.

    public class MyUIApplication extends UiApplication implements FolderListener
    {
        public void messagesAdded(FolderEvent e) {
            Message orginalMessage = e.getMessage();
    
            Folder messageFolder = orginalMessage.getFolder();
    
            if (e.getMessage().isInbound() == true) {
    
                String sender = orginalMessage.getFrom().toString();
                String subject = orginalMessage.getSubject();
                String body = orginalMessage.getBodyText();
    
                String attachmentContent = ""// Read atachment content here?
    
                // some more code
            }
        }
    }
    

    Any help in this regard will be appreciated.

    Thank you.

    There is no way to prevent a menu item to be added to an AttachmentHandler.  When a user clicks your menu item will be called the run method.

    If you have registered an AttachmentHandler for your type of attachment and the prefix the file name of the attachment with x-rimdevice, you would be able to access its contents of in a FolderListener.

  • The Explorer does not collapse 'Libraries' and 'User' to the closing and reopening of the records.

    This is a rather minor annoyance, but it seems every time that a user develops their folder 'User' and farm explore, Explorer will continue, opening with the folder 'User' expanded until they reduce manually.

    Part of the computer is to be efficient as possible, and when I open explore to find the folder of the user is developed, pushing "Computer" and "Drive C:" out of the box, I think it's pretty boring.

    Vista always collapsed the "User" folder, then why isn't Windows 7 do as well?

    Is it possible to disable this behavior? I already looked through Group Policy, but until now, I had no chance.

    This is a rather minor annoyance, but it seems every time that a user develops their folder 'User' and farm explore, Explorer will continue, opening with the folder 'User' expanded until they reduce manually.

    Part of the computer is to be efficient as possible, and when I open explore to find the folder of the user is developed, pushing "Computer" and "Drive C:" out of the box, I think it's pretty boring.

    Vista always collapsed the "User" folder, then why isn't Windows 7 do as well?

    Is it possible to disable this behavior? I already looked through Group Policy, but until now, I had no chance.

    I found a working answer to the Microsoft web site. A record appropriate to the real problem-solvers to the destination address.

    There is a registry key that captures the State of the State of opening and closing of the main files in the Explorer on the left Nav-component, which can be set in the left of the Explorer, Explorer closed to set the key "reg", then the value of reg key manually turned to unalterable. Now when you open occasionally these folders as Favorites or your user ID (or several program file is more problematic / parameters of the open dialog box will open your user folder), after having turned regkey unalterable, when Explorer or application of file dialog box is closed, the expanded NavPane records regkey is not re-written, staying at your preferred expanded state / collapsed.

    State information about the left NavPane of Explorer are stored in the HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\NavPane registry key. If you delete the value of registry ExpandedState, the next time you open the browser it will show the tree 'by default' State.

    A user also wrote a batch text file (so you can see each line of code to see what it does) to allow you to explore the value as you wish, then turn to the State of NavPane read-only to preserve the State indefinitely. The batch script also allows you to reset the features to windows default (turn the read/write registry key) and so on.

    Here is the link to the site of Microsoft with all the details and the script file:

    http://social.technet.Microsoft.com/forums/Windows/en-us/48ebc898-290D-405f-b4d5-c3dc72278b76/collapse-all-foldertrees-when-closing-Explorer

    ---------------------------------------

    As a feature add-on to what precedes, I understand this info because the comma/space syntax is different for Win7 vs. WinXP / other versions which is well documented on the web sites. This sytnax opens the Explorer to your file preferred, separate records that are expanded / collapsed with the answer provided to the direct question of this thread, but usually directly related to the objective of opening explore according to your specific needs.

    Here are the command line parameters to further open Explorer to a directory preferred in Win7 32-bit Home Premium. Create a shortcut with this command as a target line: C:\Windows\explorer.exe explore/e/root, / select "C:\". ","C:\PreferredDataDir ".

    Replace C:\PreferredDataDir with of course your favorite directory, including only a reference to the root of C:\ or a different drive letter if you prefer on a subdirectory. The specified root option still allows access to drive E: etc, unlike the desired effect added to the possibility of limiting traffic only within the specified root, which may work on other versions of Windows.

  • Why not works automatic update of the Adobe Reader software for domain users

    Hello

    I tried to update automatically to version 11.0.2 version 11.0.3 on my domain so that it is logged on as a user account. Auto Update settings work if I am logged on as administrator, but not as a domain user.

    I was under the impression that the installation of the automatic update as a service could undermine permission issues that has tied the program update. It seems that way.

    I can confirm that I have auto update together in Adobe Reader and the registry entry

    HKLM\SOFTWARE\Wow6432Node\Adobe\Adobe ARM\1.0\ARM

    where the iCheckReader DWORD value is equal to 3.

    Finally, I'd like for Adobe Reader to perform a silent installation without any prompts from the domain user. Currently I find the automatic update does not work for users.

    For the record, I'm not behind a proxy.

    Kind regards

    Haydn

    It could be that there is a set of policies administrave for the domain that is forbidden.

  • I'm trying to migrate data from a server to a new one with the file permissions of the files of users and records lost.

    original title: robocopy

    I'm trying to migrate data from a server to a new one with the file permissions of the files of users and records lost. So far, that's what I did, I used \\server1\share \\server2\share/sec /mir robocopy and robocopy \\server1\share \\serve2\share/e/s /copyall. It seams like they copied all files with the permissions of the user for the files, but not files. For example, if a user makes a folder with the files in the folder appear them have permissions appropriate for them but not the root folder or subfolders, they did... How can I fix this and what is the difference between / s /mir and/e/s /copyall?

    Hello

    You can find the Server forums on TechNet support, please create a new post at the following link:

    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

  • One more time: Houston-25014: the record has been changed by another user. Please try again.

    Hello

    JDev 11.1.2.4

    I have a workflow where I execute with params VO, and then navigate to a view activity. On this page fragment, I click on a button that calls a PL/SQL procedure in the module of the application. The proceduce updates a row in the table. After this method call, I navigate to the same run with params.

    Execute with params-> view activity method-> call-> Execute with params (the app module method)

    But I have an exceptional:

    oracle.jbo.RowInconsistentException < DCBindingContainer > < reportException > [2669]: Houston-25014: the record has been changed by another user. Please try again.

    at oracle.jbo.server.OracleSQLBuilderImpl.doEntitySelectForAltKey(OracleSQLBuilderImpl.java:1078)

    at oracle.jbo.server.BaseSQLBuilderImpl.doEntitySelect(BaseSQLBuilderImpl.java:552)

    at oracle.jbo.server.EntityImpl.doSelect(EntityImpl.java:8311)

    at oracle.jbo.server.EntityImpl.populate(EntityImpl.java:6975)

    In the log, I see the error.

    Compare entity < EntityImpl > < compare > [2305] has no attribute Addr1

    < EntityImpl > < compare > [2306] original value: COURTUPD

    Target value < EntityImpl > < compare > [2307]: COURTUPDfewfew

    The update in the procedure updates this field. The procedure performs validation, I made the call.

    I suspected that the case of ghost ADF so I put update on update for this field, but it does not work.

    Any idea on who is the user who changes my file without telling me?

    Thank you

    You have something in your entity that has changed.  Call rollback on your transaction module app before executeWithParams put it in a clean condition.

  • When I try to import new files from an SD card, I get an error message.  The message reads: "If there is already a file in: / Users/student/movies / '.  I want to be able to drag and drop the files, by clicking on the SD icon on the desktop and drop it in

    When I try to import new files from an SD card, I get an error message.  The message reads: "If there is already a file in: / Useres/student/movies / '.  I want to be able to slide the SD card on my desktop icon in the quick editing workspace and select the files I need to change.  Thank you!

    You are on a network in a school? If there might be one video files with the same name already exists in this folder.

    Try to get the video files using add media videos from camcorders or cameras and by accessing the camera or the card reader by using the video importer. In the video importer, you can set the custom file name and rename your files so that they will not have the same names as existing files.

  • How to pass the user name dynamically in file .jca Oracle Apps adapter

    My BPEL process using Oracle Applications adapter. Here is the file .jca for the adapter.  The user name is statically initialized to "sysadmin" when I created the adapter. How can I change this to move dynamically during execution? Can I use an EL Expression or a variable of XPath. If yes how and what is the correct syntax?

    Is it possible to pass the user name of the security policy of OWSM for the value of username below? If yes how? I appreciate your response.

    " < name of the adapter-config = adapter 'EBSAdapter' = 'Apps' wsdlLocation =".. / WSDLs/EBSAdapter.wsdl "xmlns =" http://platform.integration.Oracle/blocks/adapter/FW/metadata « >

    < UIConnectionName factory connections = "EBS1" location = ' ist/Apps/EBS1"UIConcurrentPgmName =" "UIOracleAppType = 'DBOBJECT' / >"

    < endpoint-interaction portType = operation "EBSAdapter_ptt" = "EBSAdapter" >

    < className = "oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec interaction-spec" >

    < property name = "SchemaName" value = "APPS" / >

    < property name = "PackageName" value = "JAN" / >

    < property name = "Procedurename" value = "GET_USER_PROFILE1" / >

    < property name = "IRepInternalName" value = "PLSQL:INTG:WEBCENTER_GET_USER_PROFILE1" / >

    < property name = value "Username" = "sysadmin" / >

    < property name = value of 'Responsibility' = "system administrator" / >

    < / interaction-spec >

    < / interaction of endpoint >

    < / adapter-config >

    1. go on the Invoke activity

    2. click on the Properties tab.

    3. click on add

    4 Add this 'jca.apps.Username' property and map with variable or expression.

    5. fill the variable defined in the previous step with valid username values during execution.

    I hope this helps.

    Kind regards

    Karan

    Oracle Fusion Middleware Blog

Maybe you are looking for