Trigger dialog screen with RFC

Hi guys,
Is there a way I can trigger a dialog screen to open in SAP GUI (showing a sales order) from an external system?
Could I make an RFC call from my external system to a BAPI in SAP and put in some "call sreen" fucntionallity in the BAPI, so that a GUI Screen will pop up when he presses a link in the external system?
Thanks!

The users will have a GUI on their maschine and will be loged on.
My problem is how to control that the GUI screen should pop up on the screen belonging to the user that activated the link in the external system, only. The other users working on the SAP system should not see the screen.
Thanks

Similar Messages

  • Module Pool - Error message on a Modal Dialog screen with input

    Hello All,
    I have a modal dialog screen which is called on F4 help of a input field. This dialog screen has radio buttons on it to select. On selection, we check if the user is authorized to that option. If not, raise and error message with command MESSAGE msgid.....
    When the error message pops-up and when clicked ok on it, the radio buttons on the modal dialog screen gets disabled. I want to have the modal dialog box to be able to accept the new radio button as input.
    Can anyone please suggest.
    Thanks,
    Smita

    Put all of your Radio buttons in the CHAIN ... ENDCHAIN with one module.
    CHAIN.
        FIELD rb1.
        FIELD rb2.
        FIELD rb3.
        MODULE check_chain ON CHAIN-REQUEST.   "<< implement logic in check_Chain
      ENDCHAIN.
    If you want, you can even disable the options before displaying the screen. Do all necessary checks in the PBO and based on that disable the options.
    Regards,
    Naimesh Patel

  • Present a dialog screen to the user that always stays open and gets updated with values from teststand.

    Hello,
    I'm new to TestStand and just created my first sequences with TS and LV.
    The program is running fine but now I need to implemented a dialog screen with some progress results for the user.
    This dialog screen must stay open (unless closed by the user) and gets refreshed with the latest analysis results from TestStand.
    Is there an example of something like that. (starting from a working example is always easier)
    So I need a mechanism to give some results from TestStand to a custom made dialog screen in LabVIEW.
    Any thoughts/examples/recommandations ???
    Thanks!

    Hi noxus,
    The basic design you are looking for is a daemon, This is basically a VI that runs in the background (your dialog VI for example). This VI is launched dynamicly when needed. And there should be a way of detecting if the deamon is running.
    You can use various ways of communicating between VI's. The two most use full I find either Queues or TCP. The added bonus for TCP is that it also works over the Network, but could also be slower and blocked by Firewalls. Queues only work within the LabVIEW Process running on the Local machine and provide a nice way of detecting if the daemon VI is running.
    Attached a example that show how you can implement something like this. The 'sent new value.vi' obtains a queue reference, we check if it has created a new queue or if it returned an existing queue reference. If the obtain queue created a new queue this means the daemon is not running and we launch the deamon.vi.
    The daemon also connects to the same queue and maintains the reference. If the deamon is closed the referenced is closed as well and the queue is destroyed.
    You can run the example VI. (in LabVIEW 8.2).
    Hope this helps.
    Thanks
    Karsten 
    Attachments:
    Daemon.zip ‏35 KB

  • Can't initialise dialog screen fields with values

    Hi.
    I have a dialog screen with 10 fields named
    TXT_FILEDESC1, TXT_FILEDESC2, ...TXT_FILEDESC10.
    I tried to initialise these 10 fields with the following codes, but I got an error message:
    DATA: TXT_FILENAME TYPE ZDM_OF-FILE_NAME,
          TXT_FILEDESC TYPE ZDM_OF-FILE_DESC.
    FIELD-SYMBOLS: <FS_TXT_FILENAME>, <FS_TXT_FILEDESC>.
    MODULE PBO_9000 OUTPUT.
      SET PF-STATUS 'STATUS_9000'.
      SELECT FILE_NAME FILE_DESC FROM ZSCSDM_OF INTO TABLE SCREEN_INIT.
      LOOP AT SCREEN_INIT INTO SCREEN_INIT_LINE.
        SCREEN_INIT_NO = SY-TABIX.
        CONCATENATE 'TXT_FILEDESC' SCREEN_INIT_NO INTO TXT_FILEDESC.
        ASSIGN (TXT_FILEDESC) TO <FS_TXT_FILEDESC>.
        MESSAGE E002(ZMSGGARY) WITH TXT_FILENAME.
        <FS_TXT_FILEDESC> = SCREEN_INIT_FILEDESC.
        ENDLOOP.
    ENDMODULE.                    "PBO_9000 OUTPUT
    Runtime Error - A new value is to be assigned to the field "<FS_TXT_FIELDDESC>", although this field is entirely or partly protected against changes...
    Could anyone share why I got the above error message when i try to run the program (Execute --> In A New Window)? Thanks.
    null

    I got the reason for the error. It's because I did not clear the contents of TXT_FILENAME before the next loop.
    LOOP AT SCREEN_INIT INTO SCREEN_INIT_LINE.
    <b>TXT_FILENAME = ''. ==> This solves the problem.</b>
    CONCATENATE 'TXT_FILEDESC' SCREEN_INIT_NO INTO TXT_FILEDESC.
    ENDMODULE. "PBO_9000 OUTPUT

  • Selection-screen in a Dialog Screen

    Hello,
       I want to create a selection screen in a dialog screen with all its functionality specially the option for multiple selection like want I'm doing in a report-type program. Is this possible?
    tnx,
    Jeff

    Hi Jeffrey
    As Harald mentioned, it is possible. You can check out Re: Store select-options on database to find some more information.
    As another thing, since you are a new SDN member, you are welcome and let me introduce you the SDN forums pointing system: You can assign points to posts you find while helpful solving your question. You can reward points by clicking the yellow star icon at header of each reply post. You can reward;
    - one 10 points (solved)
    - two 6 points (very helpful answer)
    - many 2 points (helpful answer)
    Kind regards...
    *--Serdar

  • Dialog Screen Need in report

    Hi Gurus ,
    I want to call a  Dialog screen with date as input parameter in a report program based upon some condition. There is a already selection screen.
    Plz guide me how can i do it. Points will be rewarded.
    Regards
    Rajesh

    Hi Rajesh,
    The requirement below is not clear, however, why dont you add the date input parameter as part of the selection screen itself, as a separate parameter. Now, you can modify the attributes of the input parameter using MODIFY SCREEN command and also use the events INITIALIZATION, AT SELECTION-SCREEN OUTPUT etc. to program the conditions you are referring to.
    If you can explain your requirement in a little more details, we can help out.
    Regards,
    Aditya

  • Dialog Prog. with a selection screen

    Hi Gurus,
    How its possible to achieve a SELECTION-SCREEN with in a Dialog Prog. Pls. give me rough idea.
    Thank you.

    Hi,
    If you are taking about to use the selection screen in you Dialog Program than please follow the following.
    You will have to add following Lines in PBO and BAI You need a custom Control on the your Screen where you display your sub screen.
    PBO
    CALL SUBSCREEN <custom_control_name> INCLUDING '<Programe_name_where_sub_screen'> '<Screen Number'>
    PAI
    CALL SUBSCREEN <custom_control_name>
    In Program it must be like this.
    selection-screen begin of screen 0001 as subscreen.
        parameters: date like sy-datum.
    selection-screen end of screen 0001.
    Hope above will help you,
    Please Reply if not Clear,
    Kind Regards,
    Faisal

  • Problem when trying to refresh oracle screens with latest data

    hello experts,
    i have one problem,i want to refresh the oracle screen with the latest data from the data
    base.
    It is a two stage process.At first step one user will select a row from the screen and then he will press a button .
    now the second screen will appear and the detail of the employee will be displayed.
    First step has been completed and the data is coming in the second form via parameters and i can see the full information of the employee.
    Now i want to refresh the oracle form i.e. suppose if my dba has made any changes in the oracle table( EMP table) i want that after pressing the refresh button user can see the
    latest data from the database.
    in WHEN_BUTTON_PRESSED trigger i have written this codes.
    enter_query;
    execute_query;
    but they are not giving the expected result.
    And one more thing please suggest whether in the second form i should use database item
    or non database item.
    When i am using database item when i am trying to close second from one pop up is appearing
    and asking that whether i want to save the changes.
    please suggest how can i remove this message from my application.
    Regards
    Anutosh

    Hi,
    what data did you transfer via parameters to the second form ?
    how did you populate the datablock in the second form ?
    Typical solution would be:
    (For my example the block is both forms is named EMP, and is based on the table SCOTT.EMP)
    In Form 1, transfer the primary key-value of the current record to a global or parameter (will use global in my example):
    e.g. you have a WHEN-BUTTON-PRESSED-Trigger with the following code:
    <pre>
    :GLOBAL.EMPNO:=:EMP.EMPNO;
    CALL_FORM('FORM2');
    </pre>
    In Form 2, you have a WHEN-NEW-FORM-INSTANCE-Trigger with code:
    <pre>
    DEFAULT_VALUE('GLOBAL.EMPNO', NULL);
    IF :GLOBAL.EMPNO IS NOT NULL THEN
    GO_BLOCK('EMP');
    EXECUTE_QUERY;
    :GLOBAL.EMPNO:=NULL;
    END IF;
    </pre>
    On block EMP in Form 2 there is a PRE-QUERY-Trigger with following code:
    <pre>
    IF :GLOBAL.EMPNO IS NOT NULL THEN
    :EMP.EMPNO:=:GLOBAL.EMPNO;
    END IF;
    </pre>
    And at last, in your refresh-button would be the following code:
    <pre>
    :GLOBAL.EMPNO:=:EMP.EMPNO;
    GO_BLOCK('EMP');
    EXECUTE_QUERY;
    :GLOBAL.EMPNO:=NULL;
    </pre>
    Hope this helps

  • Desktop stuck at black screen with cursor in normal mode but boots fine in safe mode after updates.

    After running some updates the other night my laptop stopped loading the desktop and just gets stuck at a black screen with a cursor after I log in to the user account. The only thing I can do from there is do ctrl+alt+delete, then log off or restart.
    I can't open up task manager. I tried creating another account in safe mode thinking there was an issue with the account but I still have the same issue. In event viewer I have two warnings one is
    event 6000 winlogon, The winlogon notification subscriber <GP Client> was unable to handle the notification event
    and event 4006, winlogon The windows logon process has failed to spawn a user application. Application name. Command line parameters: C:\Windows\system32\userinint.exe.
    As well as error event id 1003, CertificateServicesClient Certificate Services Client failed to invoke the Providers in response to event 512. Error code 2147956401
    and error 1001, certificate services client. certificate services client failed to load provider pautoenr.dll. error code 14001. I checked the registry and the path points to the right directory for userinit. I have tried running
    System Repair but no errors were found, and I ran sfc /scannow and no errors were found either. The computer did not have System Restore enabled and I do not want to restore to factory settings. I also ran registry mechanic and it found no errors. Any suggestions
    besides restoring to factory settings?

    Hi,
    We may try to reinstall Windows 7 Service Pack 1 for a test.
    In addition, let us perform the following steps.
    1. Click Start, Run, type lusrmgr.msc then ENTER.
    2. Select Groups in the left pane.
    3. Double-click Users in the right pane.
    4. Click Add, and then click Locations. Scroll to the top of the Locations dialog and select the local computer name, then click OK.
    5. In the Enter the object names to select field, type Interactive; Authenticated Users (separated by a semi-colon). Then click OK.
    6. Restart the computer.
    Or we can run the following commands from a command prompt:
    Net localgroup Users Interactive /add 
    Net localgroup Users "Authenticated Users" /add
    Kim Zhou
    TechNet Community Support

  • When I log onto my macbook, my user account isn't showing up. All that shows up is a gray screen with only two boxes saying "Name" and "Password". How do I fix this?

    There was one time where my wi-fi wasn't connecting so I tried to turn it back on. A window popped up but I had alrdy clicked enter before I read it, but it said something like "...will change settings, is that okay...?" And then wi-fi still would not connect. So I tried restarting my computer, but when it turned on, my user account did not show up and all there was on the screen was two boxes that asked for name and password. I was the only person using my macbook so I never set up a password for it. Has anyone had this problem? How do I fix this?

    Since I'm not in front of your computer I can't tell what you see - I can only guess and give a hint. So once again, if the disk name on your Mac is "Macintosh HD", when you boot in Recovery Mode, and start up the Terminal in "Utilities" menu, and then type in the command:
        df -k
    you should see a list of "volumes" - one of which is named "/Volumes/Macintosh HD" (but yours could be anything) and in that folder there is another folder called "Users" and in that folder is the names of the home directories of the user accounts (and the names that you can enter into the login screen) that you are looking for. So if you are not familiar with using the Terminal you should say so and I can give more details. But assuming you're OK with typing in commands to theTerminal this is what I would try:
        ls -l /Volumes/Macintosh HD/Users
    and you should see something like the following (my disk name is "Yosemite" so I typed "ls -l /Volumes/Yosemite/Users")
    ML9Book:~ xxxx$ ls -l /Volumes/Yosemite/Users
    total 0
    drwxr-xr-x+  11 Guest      _guest   374 Oct 25 19:23 Guest
    drwxr-xr-x+  33 Jack       staff   1122 Oct 24 10:49 Jack
    drwxrwxrwt   13 root       wheel    442 Dec 27  2013 Shared
    drwxr-xr-x+  38 admin      staff   1292 Oct 25 16:59 admin
    drwxr-xr-x+  15 x13        staff    510 Oct 23 22:41 x13
    drwxr-xr-x+  12 514        staff    408 Oct 23 12:24 x14
    So now reboot your mac into normal mode - and you will see the login screen with the two empty boxes.
    So the above output tells me that there are 3 users - Jack, x13 and x14 (there is always a Shared user and there might or might not be a Guest user since it depends on how your setup was setup) - and these 3 are the names that I could try and enter into the login screen (in the top or first box). You can try no password, but I don't think you can create accounts without passwords, so this will likely fail. In that case you need to reboot in recovery mode and run the Terminal command again (from the Utilities menu) and do a resetpassword command. Another window will pop up and from there you select the Volume (in my case I selected the Yosemite volume - in your case you would select the "Macintosh HD" if that is what your volume name is). Then select the user account you want to reset the password from the drop-down list of user accounts (it will show you the long and short names, and the short name is what was in the listing above from the "ls -l" command), then enter the new password in the indicated box, and then enter it again in the next box, to make sure you didn't make a typo, and enter a password hint in the last box (optional). Then click the "Save" button and you will see another dialog box pop up telling you that the password was changed but not the Keychain password (hopefully you remember this one) - click the OK button then reboot back in normal mode (click on the Apple logo in the top left corner of the screen and click on Restart).
    Does this help?

  • Black screen with blinking cursor when installing win 7/vista x64 osx 10.6

    i am using bootcamp 3 to install windows 7/vista x64 on osx 10.6.6.when i select install mac reboots and then all i get is a black screen with white cursor.
    i have created a 20gb partition with disk utility in fat32 and i had installed windows successfully when i was on osx 10.5.i tried erasing and creating new partition but same problem.
    any help will be appreciated

    This solved it for me!
    From another forum:
    "1. Put the Windows 7 installation disc in the disc drive, and then start your computer.
    2. Hold down Option key till all available disks are displayed and select DVD. Press a key when you are prompted.
    3. Select a language, a time, a currency, a keyboard or an input method, and then 4. click Next.
    5. Click Repair your computer.
    6. Click the operating system that you want to repair, and then click Next.
    7.In the System Recovery Options dialog box, click Command Prompt.
    Type (these commands are safe)
    Code: Bootrec.exe /FixMbr
    Code: Bootrec.exe /FixBoot
    Code: Bootrec.exe /RebuildBcd
    *Press ENTER after each command.*
    *Restart your computer.* "

  • Open and editor windown from a dialog screen.

    Hi,
    Does anybody know how to open an editor window to write large text notes (1,000 chars or more) from a dialog screen?
    Then how this data is stored on a table?
    I need to save large amounts of text and I have seen this on SAP transactions.
    Any help will be appreciated.
    Thanks,
    Orlando.

    Oh, I see.  I would not suggest using a sapscript editor. I would use the text editor that I mentioned early.  If you really want that functionality of the sapscript editor, you can do that.  Either way you will need to create a custom text object/id to save your text to the db.  Here is an example of using the sapscript editor.
    report zrich_0002.
    data: header type THEAD.
    data: txt_lines type table of tline with header line.
    header-TDOBJECT = 'AUFK'.
    header-TDNAME   = '001000000001'.
    header-TDID     = 'LTXT'.
    header-TDSPRAS  = sy-langu.
    header-TDLINESIZE = 70.
    * First read the text, if there is any.
    call function 'READ_TEXT'
      exporting
    *   CLIENT                        = SY-MANDT
        id                            = header-tdid
        language                      = sy-langu
        name                          = header-tdname
        object                        = header-TDOBJECT
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    * IMPORTING
    *   HEADER                        =
      tables
        lines                         = txt_lines
    * EXCEPTIONS
    *   ID                            = 1
    *   LANGUAGE                      = 2
    *   NAME                          = 3
    *   NOT_FOUND                     = 4
    *   OBJECT                        = 5
    *   REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    * throw editor, allow user to change
    call function 'EDIT_TEXT'
      exporting
    *   DISPLAY             = ' '
    *   EDITOR_TITLE        = ' '
        header              = header
    *   PAGE                = ' '
    *   WINDOW              = ' '
        SAVE                = 'X'
    *   LINE_EDITOR         = ' '
    *   CONTROL             = ' '
    *   PROGRAM             = ' '
    *   LOCAL_CAT           = ' '
    * IMPORTING
    *   FUNCTION            =
    *   NEWHEADER           =
    *   RESULT              =
      tables
        lines               = txt_lines
    * EXCEPTIONS
    *   ID                  = 1
    *   LANGUAGE            = 2
    *   LINESIZE            = 3
    *   NAME                = 4
    *   OBJECT              = 5
    *   TEXTFORMAT          = 6
    *   COMMUNICATION       = 7
    *   OTHERS              = 8
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    * When user comes back from editor, save the text
    call function 'SAVE_TEXT'
      exporting
        CLIENT                = SY-MANDT
        header                = header
    *   INSERT                = ' '
    *   SAVEMODE_DIRECT       = ' '
    *   OWNER_SPECIFIED       = ' '
    *   LOCAL_CAT             = ' '
    * IMPORTING
    *   FUNCTION              =
    *   NEWHEADER             =
      tables
        lines                 = txt_lines
    * EXCEPTIONS
    *   ID                    = 1
    *   LANGUAGE              = 2
    *   NAME                  = 3
    *   OBJECT                = 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.
    So for your case, you must create a custom Text Object and ID via SE75.
    REgards,
    Rich Heilman

  • Invalid_jobdata when submitting job with rfc user

    Hi,
    I've created a function module in the erp system to remotly trigger a report program by a bw prossess chain.
    When running in the forground it works fine, but the runtime is so long that I want it as a background job.
    So I call job_open, job_submit, job_close in the function module. When I test the function module in the erp system with my dev user it opens a new job, adds a step and release correctly. It also runs fine if I intercept it in the debugger and change sy-uname to aleremote (the standard rfc user).
    It does not work when it's acctually called rfc from the bw system. The job is opened, but job_submit throws invalid_jobdata.
    Could this have anything to do with rfc or the executing user (which is of type SYSTEM)?

    I've caught the execption so there is no dump, but I'm unable to determine why the function module job_submit gives invalid_jobdata only when the executing user is the aleremote user and only when the call originated (the call to my module) from a remote system (the module job_submit is called locally thru my module). Authorization for the user is sap_all, but I was woundering maybe the user type system could be a problem?

  • Windows 7 on Boot Camp stuck at black screen with blinking cursor... starts up fine in Parallels desktop

    Hi,
    Recently my dad's Windows 7 (Ultimate 64-bit) on his Mac Pro has stopped working. It gets stuck at a black screen with a blinking cursor. I've waited at least five minutes and it doesn't do anything, I have to power it off.
    However it starts up perfectly fine and intact in Parallels desktop. If I insert the original installation DVD and boot from the Disc that says 'Windows' it will boot into the partition and work fine, unless I press a key to boot from the DVD.
    I find both these things to be strange. The partition is backed up, which is fine, but I'd rather not have to re-install it if possible.
    I have booted from the DVD and tried to repair the disk. It said it found a problem with something related to startup and that it needed to restart to repair it. I clicked yes, and then held alt/opt and (I think wrongly) booted back into the disc rather than the Windows partition. However it now says that it can't detect any problems.
    In the repair my computer section when booting from the DVD, it detects the OS as Windows Vista Business. I followed these steps I found online:
    Fixed! Peroblem was I think using OEM, which Bootcamp advise against using... they advise to use retail only. Fixed like this:
    1. Put the Windows 7 installation disc in the disc drive, and then start your computer.
    2. Hold down Option key till all available disks are displayed and select DVD. Press a key when you are prompted.
    3. Select a language, a time, a currency, a keyboard or an input method, and then 4. click Next.
    5. Click Repair your computer.
    6. Click the operating system that you want to repair, and then click Next.
    7.In the System Recovery Options dialog box, click Command Prompt.
    Type (these commands are safe)
    Code: Bootrec.exe /FixMbr
    Code: Bootrec.exe /FixBoot
    Code: Bootrec.exe /RebuildBcd
    *Press ENTER after each command.*
    *Restart your computer.*
    Done. Rockin'
    FixMbr was successful, as was FixBoot. However RebuildBcd reported that it found no Windows installations.
    Does anyone know what could be wrong here? I should note that recently I removed the drive Windows 7 is installed on and put it back in. Also Windows Updates probably have been done by my dad. Not sure if they could be the problem.

    Cult, welcome to the forum.
    It sounds like you have a failing power supply unit (PSU).  This will cause the symptoms that you describe.  If the computer isn't getting enough power, it can cause numerous problems.  You can try disconnecting any unnecessary components to see if it will boot.  Here is a guide to help you troubleshoot the problem.
    Please click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Slow opening print dialog screen in Windows 8.1

    I have Adobe Reader 11.0.5 and am using Windows 8.1.  When I click on the print icon, it takes 20 to 30 seconds for the print dialog screen to open.  This is maddening.  Does anyone know why and how to speed it up?

    Hello eycon
    Try out the article below to troubleshoot your issue with iTunes freezing on you. Also check to make sure that when you removed iTunes, did you uninstall in the order of the second article as it does make a difference when troubleshooting the issue.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/ht1923
    Regards,
    -Norm G.

Maybe you are looking for

  • How to add child node in Tree table programmetically

    Jdev Version 11.1.1.4.0. I have created tree table programmetically in bean. I have to add child node to tree table component on button click event on page. Please let me know how to do this in bean. Regards, Kiran

  • Web Service config problem

    Hello, I have configured a Web Service but I am stuck at the Url format. This should be the format: http://host:port/XISOAPAdapter/MessageServlet?channel=party:service:channel My problem is that I do not know the default port for Web Services and I d

  • Eyedropper sampling from Brush

    Working on a Macbook. PS CS5. When I am painting using the brush tool I press the option key to switch to the eyedropper temporarily to sample a color. It samples the color but makes it the background color. I have to go swap colors to paint in the c

  • Wrapper vs Non-wrapper Project Development Setup

    Hello, Considering that there would be 20 Page Definition and 5-6 flex asset types under same Attribute table, I can think of 2 development model as following: 1. One wrapper, one layout template which calls various other templates on basis of Page D

  • Bridge preview but Photoshop won't open

    I'm looking a thumbnail preview of a .psd file in Bridge. When I try to open it in Photoshop, it says that it can't open because "it is not a valid photoshop file." What's the problem?