CreditWorthinessQuery_out service interface is not available

Hello All,
We are trying to connect SAP SD with SAP FSCM.
Whenever we are trying to create Sales order, it giving error. Actually at this point system is trying to check customers credit worthiness.
In sap system , sxmb_moni shows message into error as receiver is not found.
This is the namespace and service interface.
"http://sap.com/xi/PI/FIN/Operational/Global"  and  service interface "CreditWorthinessQuery_out"
In PI7.1 ESR  FINBASIS_604 content is imported. I don't see above namspace and service interface  in given software component.
Please let me know which software component need to be imported in ESR?.
thanks,
Sharada

Thanks UDO,
We need to integrate SAP SD with SAP FSCM.
As per your suggestion, I have imported  following  xi contents in ESR,
1.
     FINBASIS 603  as  SAP FSCM version is as given
     FINBASIS     603     0004     SAPK-60304INFINBASIS     FINBASIS 603     Component Supp. Pkg.
2.SAP APPL 603 as logistics and Accounting patch level is as
   SAP_APPL     603     0004     SAPKH60304     Logistics and Accounting     APPL Support Package
I have created a business system and have software product SAP ECC6.0 and SAP FSCM6.0.
I cannot use interfaces from above software components as SAP ECC6.0 adds software component SAP APPL6.0  to that business system and  SAP FSCM6.0 adds software component to that business system.
Latest version of software product of ECC available in SLD is  SAP ECC6.0
Latest version of software product of SAP FSCM  available in SLD is  SAP FSCM6.0
I want to add software components SAP APPL 603 and FINBASIS 603 to my business system. In this case which software product can be added to technical system?.
Do I have to imprt latest CIM component in SLD?
thanks,
Sharada

Similar Messages

  • Interface IFGOSASERV not available

    hi to all,
             I am trying to use concept called Generic Object Services.  I used tcode SWO1 . we need to create  interface IFGOSASERV in swo1, this interface is not available. is there any option for that. I searched lot in sdn , but solution is not available. please tell me the solution. thank you.

    use IFGOSXSERV

  • Identity managent user interface is not available

    when i try to acces user administration i get following error.
    A required service for the identity management user interface is not available. Contact your system administrator.

    See OSS note 869852 - Central Note For UME Web Dynpro UIs (user Admin in Portal). Topic #5 Troubleshooting discusses some possible solutions. We have found that sometimes, a complete shutdown and restart of the server works.  Also, our Basis guys stopped and then restarted application com.sap.security.core.admin in the visual administrator and then the User Admin functionality was available for awhile until the portal was stopped/started for backup. Our Basis group is going to look into this further and I will post any additional info that we find.  Would appreciate it if you would do the same.

  • Error message: "the previously selected audio interface is not available"

    HELP?!?!?!?!?
    I'm stuck, and I can't go forward. Here's my issue:
    I've bought a Focusrite Saffire LE, a simple firewire audio interface, for use with my Logic Express 7 (with all the latest updates). I run the setup assistant and select my saffire as the audio interface to use, and then when logic runs I get the message "the previously selected audio interface is not available" and it defaults to my Macbook Pro's internal microphone and speakers.
    Just for sanity I've tested the audio interface with garageband and it's fine. My other audio apps aso run fine using the saffire as the audio interface. The setup assistant for logic has no problem finding the saffire, so why does it get rejected as soon as logic starts?!?!?
    Please - this is driving me crazy.

    I asked Focusrite for some help, and they said it should work (which I knew) and made some suggestions. Here's their email:
    "Saffire LE should work fine in Logic Express.
    Try resetting your logic preferences. Go to Logic > preferences > initialise all except key commands.
    Do you still have the same problem?
    Do you have any other firewire devices attached?
    Have you had any other interfaces installed in the past?"
    All good suggestions, but so far no luck.
    Has someone else got the same config as me? (15" Macbook Pro and focusrite saffire le)?

  • Standard document interface is not available

    Hi All,
    I am using the method "get_spreadsheet_interface" from class "i_oi_document_proxy" to get the interface from an 2007 Excel File with multiple worksheets.  I have successfully opened the file using "open_document" but when I execute the "get_spreadsheet_interface" I got the error "Standard Document Interface is not available".  My gui is 710 and the patch level is 21.  I would like to ask is there any additional plugin which I have to install? 
    Thanks.

    Hi Madhu, I got stuck at the get_document_interface...   thanks
    DATA:
    oref_container   TYPE REF TO cl_gui_custom_container,
    iref_control     TYPE REF TO i_oi_container_control,
    iref_document    TYPE REF TO i_oi_document_proxy,
    iref_spreadsheet TYPE REF TO i_oi_spreadsheet,
    iref_error       TYPE REF TO i_oi_error.
    DATA:
    v_document_url TYPE c LENGTH 256,
    i_sheets TYPE soi_sheets_table,
    wa_sheets TYPE soi_sheets,
    i_data        TYPE soi_generic_table,
    wa_data       TYPE soi_generic_item,
    i_ranges      TYPE soi_range_list,
    AVAILABLE     TYPE I.
    PARAMETERS:
    p_file  TYPE  localfile OBLIGATORY,
    p_rows TYPE i DEFAULT 100 OBLIGATORY, "Rows (Maximum 65536)
    p_cols TYPE i DEFAULT 10 OBLIGATORY.    "Columns (Maximum 256)
    INITIALIZATION.
      CALL METHOD c_oi_container_control_creator=>get_container_control
         IMPORTING
           control = iref_control
           error   = iref_error
         retcode =
      IF iref_error->has_failed = 'X'.
        CALL METHOD iref_error->raise_message
          EXPORTING
            type = 'E'.
      ENDIF.
      CREATE OBJECT oref_container
        EXPORTING
         parent                      =
           container_name              = 'CONT'
         style                       =
         lifetime                    = lifetime_default
         repid                       =
         dynnr                       =
         no_autodef_progid_dynnr     =
        EXCEPTIONS
           cntl_error                  = 1
           cntl_system_error           = 2
           create_error                = 3
           lifetime_error              = 4
           lifetime_dynpro_dynpro_link = 5
           OTHERS                      = 6.
      IF sy-subrc <> 0.
        MESSAGE e001(00) WITH 'Error while creating container'.
      ENDIF.
      CALL METHOD iref_control->init_control
        EXPORTING
         dynpro_nr                = SY-DYNNR
         gui_container            = ' '
           inplace_enabled          = 'X'
         inplace_mode             = 0
         inplace_resize_documents = ' '
         inplace_scroll_documents = ' '
         inplace_show_toolbars    = 'X'
         no_flush                 = ' '
         parent_id                = cl_gui_cfw=>dynpro_0
           r3_application_name      = 'EXCEL CONTAINER'
         register_on_close_event  = ' '
         register_on_custom_event = ' '
         rep_id                   = SY-REPID
         shell_style              = 1384185856
           parent                   = oref_container
         name                     =
         autoalign                = 'x'
        IMPORTING
           error                    = iref_error
         retcode                  =
        EXCEPTIONS
           javabeannotsupported     = 1
           OTHERS                   = 2
      IF iref_error->has_failed = 'X'.
        CALL METHOD iref_error->raise_message
          EXPORTING
            type = 'E'.
      ENDIF.
      CALL METHOD iref_control->get_document_proxy
        EXPORTING
        document_format    = 'NATIVE'
          document_type      = soi_doctype_excel_sheet
        no_flush           = ' '
        register_container = ' '
         IMPORTING
           document_proxy     = iref_document
           error              = iref_error
       retcode            =
      IF iref_error->has_failed = 'X'.
        CALL METHOD iref_error->raise_message
          EXPORTING
            type = 'E'.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    To provide F4 help for the file
      PERFORM sub_file_f4.
    START-OF-SELECTION.
      CONCATENATE 'FILE://' p_file INTO v_document_url.
      CALL METHOD iref_document->open_document
        EXPORTING
          document_title   = 'Excel'
          document_url     = v_document_url
        no_flush         = ' '
          open_inplace     = 'X'
        open_readonly    = ' '
        protect_document = ' '
        onsave_macro     = ' '
        startup_macro    = ''
        user_info        =
        IMPORTING
          error            = iref_error
        retcode          =
      IF iref_error->has_failed = 'X'.
        CALL METHOD iref_error->raise_message
          EXPORTING
            type = 'I'.
        LEAVE LIST-PROCESSING.
      ENDIF.
      CALL METHOD iref_document->get_spreadsheet_interface
         EXPORTING
           no_flush        = ' '
        IMPORTING
          error           = iref_error
          sheet_interface = iref_spreadsheet
        retcode         =
      IF iref_error->has_failed = 'X'.
        CALL METHOD iref_error->raise_message
          EXPORTING
            type = 'I'.
        LEAVE LIST-PROCESSING.
      ENDIF.

  • The interchange contained a malformed ISA or the Service schema was not available, it is being rejected completely

    Hi All,
     I am new in EDI processing in BizTalk. Below is my configuration for EDI.
                 I have a text file of EDI 834 data. I need to generate the xml msg of the edi txt file.
                 Added a EDI 834 schema(only one schema).
                 Created two party with validation namespace.
                 Added a peceive pipeline with dis assembler component as EDI Disassembler(I did  not set any property here)
                 Deployed and created a receive location as .txt file and seted filter as bts.ReceiveProtName to send port.
    Getting the below error:            
    The interchange contained a malformed ISA or the Service schema was not available, it is being rejected completely
    Plz help me to resolve it
    Thanks in advance.
    Uttam
    Thanks UK

    I resolved it by work around.
    1. On BizTalk part, I have created an Aggrement for Sender and Receiver.
    2. The ISA6(Sender Id) and ISA8(Receiver Id) field need to be 15 characters (recomended including space).
    Thanks UK

  • M Audio firewire solo with yosemite - 'The previously selected audio interface is not available'.

    Hi, I recently bought a new mac mini with yosemite OS. I plugged in my M-audio firewire solo and (after a bit of trouble) finally managed to see it appear in GB. then moments later a dialogue box appears with 'The previously selected audio interface is not available'.
    There doesn't appear to be any update drivers from M-Audio and the CD that came with the interface also does not work?
    I can't find any information with this problem. Can any one help?

    Oops. . . A loose lead connection may have been the problem, although still not receiving a signal?

  • I just noted that the FormsCentral service subscription is not available in Hong Kong.   When will it be available?

    I just noted that the FormsCentral service subscription is not available in Hong Kong.   When will it be available?

    You need to be in a country to use its store, so unless you are in the US with a US billing address on your account then you can't buy from the US store - you can only use the South African store. You can try requesting that the song be added to the South African store, but unless the rights-holder agrees to it then Appl won't be able to sell it there : http://www.apple.com/feedback/itunes.html

  • IChat server admin Service Running, status not available

    X-Serve running 10.6.8
    I noticed the other day thaat when I look at the iChat service in Server Admin, I observed the following:
    iChat service is: Running
    Start Time: Not Available
    Domain: Not Available
    Client Connections: Not Available
    The log screen says No Log Files exist
    I have seen similar screens when there was a slight lag in server admin gathering information to display on screen.  This stays this way indefinately.  The service is working as far as I can tell, IE people can log in, add each other, and chat.  A log file is in fact being used and updated (/var/jabberd/message_archive/)
    I noticed this because I was trying to autobuddy.sh, I script I use often to update when I add new users to the organization so they show up in everyones group list.  I attempted to stop the service from the command line using:
    #:serveradmin stop jabber
    #:jabber: state = RUNNING
    and was never able to stop iChat.  The system behaves the same after a reboot.  I am not sure what to do, or what the actual problem is.  The only thing besides a reboot that I tried was a permission repair from within the OS.
    In the log below I removed some user specific information because they are user names for users on my network.  This server and service is internal only.
    the console logs I have this:
    Nov 30 10:29:55 aphrodite jabberd/router[353]: message_log received a message with empty body
    Nov 30 10:30:15: --- last message repeated 2 times ---
    Nov 30 10:30:19 aphrodite jabberd/router[353]: message_log received a message with empty body
    Nov 30 10:31:05 aphrodite jabberd/router[353]: message_log received a message with empty body
    Nov 30 10:49:17 aphrodite com.mycompany.autobuddy[83710]: /usr/local/Scripts/auto_buddy.sh: line 2: /usr/sbin/jabber_autobuddy: No such file or directory
    Nov 30 11:12:34 aphrodite jabberd/c2s[354]: od_auth_check_service_membership: mbr_check_service_membership returned 2
    Nov 30 11:12:34 aphrodite jabberd/c2s[354]: od_auth_check_service_membership: no access restrictions found
    Nov 30 11:19:17 aphrodite com.mycompany.autobuddy[87010]: /usr/local/Scripts/auto_buddy.sh: line 2: /usr/sbin/jabber_autobuddy: No such file or directory
    Nov 30 11:49:17 aphrodite com.mycompany.autobuddy[90323]: /usr/local/Scripts/auto_buddy.sh: line 2: /usr/sbin/jabber_autobuddy: No such file or directory
    Nov 30 11:54:37 aphrodite jabberd/c2s[354]: od_auth_check_service_membership: checking user "jimrumrillcotaoilcom" access for service "chat"
    Nov 30 11:54:37 aphrodite jabberd/c2s[354]: od_auth_check_service_membership: mbr_check_service_membership returned 2
    Nov 30 11:54:37 aphrodite jabberd/c2s[354]: od_auth_check_service_membership: no access restrictions found
    Nov 30 12:03:14 aphrodite jabberd/c2s[354]: od_auth_check_service_membership: mbr_check_service_membership returned 2
    Nov 30 12:03:14 aphrodite jabberd/c2s[354]: od_auth_check_service_membership: no access restrictions found
    Nov 30 12:03:32 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:04:26: --- last message repeated 2 times ---
    Nov 30 12:05:25 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:06:26: --- last message repeated 1 time ---
    Nov 30 12:06:26 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:06:57: --- last message repeated 1 time ---
    Nov 30 12:07:27 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:08:28: --- last message repeated 1 time ---
    Nov 30 12:08:28 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:09:26: --- last message repeated 1 time ---
    Nov 30 12:09:29 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:09:59: --- last message repeated 1 time ---
    Nov 30 12:10:30 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:11:30: --- last message repeated 1 time ---
    Nov 30 12:11:30 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:12:00: --- last message repeated 1 time ---
    Nov 30 12:12:31 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:13:32: --- last message repeated 1 time ---
    Nov 30 12:13:32 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:14:26: --- last message repeated 1 time ---
    Nov 30 12:14:33 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:15:34: --- last message repeated 1 time ---
    Nov 30 12:15:34 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:16:35: --- last message repeated 1 time ---
    Nov 30 12:16:35 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:17:05: --- last message repeated 1 time ---
    Nov 30 12:17:36 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:18:37: --- last message repeated 1 time ---
    Nov 30 12:18:37 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:19:17: --- last message repeated 1 time ---
    Nov 30 12:19:17 aphrodite com.mycompany.autobuddy[94140]: /usr/local/Scripts/auto_buddy.sh: line 2: /usr/sbin/jabber_autobuddy: No such file or directory
    Nov 30 12:19:38 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:19:53: --- last message repeated 1 time ---
    Nov 30 12:20:39 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:20:45: --- last message repeated 1 time ---
    Nov 30 12:21:40 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:22:10: --- last message repeated 1 time ---
    Nov 30 12:22:41 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:22:47: --- last message repeated 1 time ---
    Nov 30 12:23:42 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:24:26: --- last message repeated 1 time ---
    Nov 30 12:24:43 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:25:10: --- last message repeated 1 time ---
    Nov 30 12:25:44 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:26:45: --- last message repeated 1 time ---
    Nov 30 12:26:45 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:27:16: --- last message repeated 1 time ---
    Nov 30 12:28:24 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Nov 30 12:29:00: --- last message repeated 3 times ---
    Nov 30 12:29:00 aphrodite servermgrd[84]: servermgr_jabber[W]: detailed service status not available until network configuration completed
    Any help on what might be going on or a push in a direction would be greatly appreciated.
    Thanks!

    Well I searched the forums here and I found some similar issues, however the fix's I was directed too did not resolve the problem. 
    I did notice this today after reading a post regarding the use of the .local domain name, and fixing that fixes this issue:
    When i selected my server on the left hand side of server admin, click on settings at the top (the gear) then on Network, I see:
    Ethernet 1 (eth0) IPv4 192.1.1.4 Aphrodite.local
    I am not sure where the .local is coming from.  This is an internal server and has been configured with a FQDN for 2 years now, aphrodite.cotaoil.net.  On the server, the only other place I see the .local, is in system preferences, sharing, at the top it has my fqdn, but when I click on edit, it has a local host field that says Aphrodite, with a .local greyed out after, or ghosted.
    When I use the command changeip -checkhostname I recieve:
    changeip -checkhostname
    Primary address     = 192.1.1.4
    Current HostName    = aphrodite.cotaoil.net
    The DNS hostname is not available, please repair DNS and re-run this tool.
    dirserv:success = "success"
    the hostname not available message is new (well I know at some point in the not too distant past I did not have this message) so I am not sure if an update broke this or not but basically I am not sure where to go from here.
    The DNS settings are set the same as they were when I originally set up the server.  Reviewing DNS logs, I do not see anything abnormal.
    additionally when I run scutil i get:
    aphrodite:~ root# scutil --get LocalHostName
    Aphrodite
    aphrodite:~ root# scutil --get ComputerName
    Aphrodite.cotaoil.net
    I am a little stumped as to where to go from here.  I believe based on some other posts Ive read that this may have something to do with why I cannot see any iChat status and am recieving the dreaded "detailed service status not available until network configuration completed"
    Thanks for any and all thoughts.  Currently reviewing Hoffs tutorials, but I used combined Hoff tutorials and apple server guides when originally set up the server.  Please let me know what I did wrong (besides my internal IP range)

  • IDOC-File : Service interface is not picking.

    I am doing IDOC to File scenario, in Integration Engine level it was picking the different "service interface"
    Ex: It was picking MAT_Sender_SI instead DBM_Sender_ SI.
    What could be the reason?
    Thanks in advance.

    Hi Kasi,
    I have a doubt in case of IDoc sender u need not create SI for outbound you can use the Idoc name directly.
    Hope i haven't understood it wrong.
    Hope this helps to configure:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e07dcaa0-a92b-2a10-3a96-b3d942bd1539?overridelayout=true
    thanks and regards,
    Praveen T

  • Default service(application:cisco) not available from CIPC

    I search to have more informations on Default service of CUCM because I cannot reach them for my CIPC and if the problem is a network problem I will need to know the port
    Best regards,.

    Thanks for your response Ram
    If this is a manual step (which I believe it is), this is not something I did when I originally provisioned the MMS.
    But I have tried it, and still, the Terms Sets are not available when I go to Site Settings > Term Store Management
    Just to confirm what I just attempted:
    Central Admin > Application Management > Manage Service Applications > %ManagedMetaDataService% > Permissions
    Under Connection Permissions, I added the service account which is the identity for the Web Application and gave it
    'Full Access to Term Store'
    Is there an additional step I missed? I have looked at the SQL permisisons as they all seem fine.

  • Newly created Service Interface does not exist in SOAMANAGER

    Hi all,
    Here is an interesting dilemma we are having we just put up a PI sandbox and are validating scenarios.  We have installed 7.11
    We created a new sender agreement and published to the Services Registry.  We are able to send the message into the system; but we do not see payload at all in SXMB_MONI which is our first issue and we are wondering if that has something to do with the security set on the web service by default.  This is a SOAP call into PI from a .NET application.
    When we go into SOAMANAGER to set the security on the service it is not displayed.  Is there some additional step we need to do to get the service to show up in SOAMANAGER?  Or something we need to do with our new namespace to get SOAMANAGER to search? 
    We are looking in SOAMANAGER -> Application and Scenario Communication -> Single Service Administration which is where we would expect the the service to exist; but, it does not.
    Thanks, Greg

    Hi Greg,
    If there is a problem with the search not returning the desired result,could you please refer the
    SAP Note Number: 1412081 which talks about   correction for not getting expected results when Searching
    with 'BOTH' in SOAMANAGER for Service Groups.
    Yes you are right it does not have to be a proxy all the time,Please refer the blog which explains about service definition
    in abap
    /people/shibaji.chandra3/blog/2010/02/17/soa-web-service-expose-and-consume-configuration-with-soamanager
    /people/bv.pillai/blog/2008/01/27/new-service-definitions-in-the-abap-development-environment-soamanager-150-sap-nw-70-sp14
    Regards,
    Srinivas

  • Reporting services integration feature not available in 2010 experience mode site collection.

    I have a 2013 SP farm with SQL reporting services 2012 configured. When I create a site collection using the 2010 experience mode, I don't see the "Reporting Services Integration" feature under site collection features. However this feature is
    available when I create a site collection in 2013 experience mode. Is there a way I can activate the "Reporting Services integration" feature in a site created in 2010 experience mode? I am not able to activate the feature on a 2010 experience mode
    site collection using PowerShell either.

    Hi,
    From your description, When you create a site collection using the 2010 experience mode, the "Reporting Services Integration" feature is missed. However this feature is available when you create a site collection in 2013 experience mode.
    For your issue, whether your 2010 experience mode site collection is in the same web application with the 2013 mode site collection. if not,  make sure the web application which contains the 2010 site collecction have been
    enabled ssrs service,
    Go to CA->Application Management->Manage web applications-Choose the web application->Click Service Connections->Check SSRS, refer to the screenshot:
    Besides, I suggest you create a new 2010 mode site collection with the same tempalte and the same web application with 2013 mode site collection, compare the results.
    Also you can upgrade you 2010 mode site collection to the 2013 mode and compare the results.
    Hope it helps. 
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Shared Component User Interface Templates not available for page use.

    Hello.
    I created a new User Interface Template using the wizard under shared components. All it's supposed to do is display a header image on the page. I can click on the title under User Interface Templates and it will display fine. If I try to use that template, it will not display as an option under Display Option use custom template LOV under the Main tab of page modifications. Shouldn't it be available here for selection? I couldn't find any access grant options under Shared Components that might have explained this problem.
    Thanks.
    Kurt

    Does anyone else have this problem? How did you fix it?

  • Wireless internet service when wifi not available

    I have AT&T wireless service and I'm wondering if there are any devices that work with AT&T to give my MacBook Pro wireless internet access when wifi isn't available. Or is there any way I can accomplish the same thing through my iPhone (I've got a 3GS on order).
    Thanks,
    Rob

    The iPhone service is called "tethering" and will be supported by AT&T later in the year - it will be an extra charge. AT&T also offers USB and ExpressCard broadband modems which will do the same thing without using your iPhone - again, though, they charge additional data charges over and above your iPhone data charge.
    Matt

Maybe you are looking for

  • HT201210 itunes will not recognize my ipod

    I need HELP! my ipod will no longer be recognized by my itunes. everything is up to date and theres nothing wrong with my itunes. my computer will pop up a window with the ipod device driver when i plug in my ipod and i tried to update the device dri

  • IMac external monitor not working after lion upgrade

    Hi, I have had an external monitor hooked up to my 09' imac for over a year now. I upgraded to Lion and ever since then it hasnt worked but one other random time when I moved and hooked everything back up. Im very tech savy, but this just doesnt make

  • How do i transfer songs and photos from an ipod to an iphone5

    If anyone can help me that would be great in having a really hard time!

  • Acrobat 9 installation/config procedure repeats every time

    I have just transfered Acrobat 9 to a new laptop running Windows 7 Professional from previous laptop running XP. Every time I click on the program from the Start Menu it goes through a full install and config procedure before opening. How can I preve

  • Monitoring of IDOC

    Hello all, I try tu have a good monitoring of IDOC. To be clear, I will explain the problem. We use the IDOC HRMD_ABA for the replication sap HR towards an other system CRM. Sometimes we have some IDOC not in error but not fully posted status 52 (via