Items assigned using EGO_ITEM_PUB.ASSIGN_ITEM_TO_ORG does not appear in GUI

I used the  EGO_ITEM_PUB.ASSIGN_ITEM_TO_ORG API to assign multiple items (one by one) from one organization to another.I had created test items through the inventory responsibility using master item window and then assign them to another organization.
After completion, I checked into the database and the items were assigned to the organization i wanted to. However, these items were not appearing in any of the windows when i searched through GUI (Item information window or item search window) under the new organization that i assigned them too.
I tried changing few values that appeared to be abnormal (E.g: last update time was '-1' probably because i used API and not GUI using my user id and password).
Why are not the items appearing in GUI?Is there a step other than executing the EGO_ITEM_PUB.ASSIGN_ITEM_TO_ORG API correctly that I am missing? Please help.

Hi Stephen,
What version of MS Office are you using?
Are you facing the issue similar to that mentioned here: Acrobat/Reader: Attach to Email button not working for PDFs referenced from long URLs
Open Acrobat. Use the click-path Edit - Preferences - select the Category "Email Accounts". In the dialog there is the "Add Account" drop-down. Select "Add Other". The "Add Webmail Account" dialog presents. You'll fill out the dialog's fields with Outlook.com settings. (don't forget the "Advance Settings" button)
From a look-see on the web it appears that the following are the needed settings. BUT, you'll be wanting to validate.
The Outlook.com SMTP server settings for sending outgoing messages from an email program on desktop, cell phone or mobile device are:
• Outlook.com SMTP server address: smtp.live.com
• Outlook.com SMTP user name: Your full Outlook.com email address (not an alias)
• Outlook.com SMTP password': Your Outlook.com password
• Outlook.com SMTP port: 587
• Outlook.com SMTP TLS/SSL encryption required: yes
For incoming messages from an Outlook.com account to an email program using POP, use the Windows Live Hotmail POP3 server settings.
The Outlook.com POP server settings for downloading new incoming messages to email program, cell phone or mobile device are:
• Outlook.com POP server address: pop3.live.com
• Outlook.com POP user name: Your full Outlook.com email address (not an alias)
• Outlook.com POP password: Your Outlook.com password
• Outlook.com POP port: 995
• Outlook.com POP TLS/SSL encryption required: yes
Regards,
Rave

Similar Messages

  • Field on manual tabular appears using Firefox but does not appear using IE

    Hello,
    A field in a manual tabular form appears correctly using Firefox but does not appear or appears in another field when IE is used. Javascript is used to hide certain columns on the tabular form. Does anyone know how to solve this problem?
    Thanks pany

    Prabodh,
    The select for the report and the javascript that is used to hide the columns are displayed below. The data for Apex_item.select_list_from_lov(12,null,'LOV_METHOD_OF_ACQ') is shown in the previous column, Date Acquired, and the column for Method Acquired is blank. It appears correctly in Firefox. Please let me know if this is sufficient.
    Thanks,
    pany
    SELECT
    apex_item.hidden(1, c011) status
    ,apex_item.checkbox(2,seq_id) checkbox
    ,apex_item.hidden(3, seq_id) seq_id
    ,apex_item.hidden(4,c001) Owner_Firm_Id
    ,apex_item.hidden(5,c002) Owner_Id
    ,apex_item.hidden(6,c003,10) First_Name
    ,apex_item.hidden(7,c004,10) Last_Name
    ,apex_item.text(8,c005,10) Number_Shares
    ,apex_item.text(9,c006,10) Percentage
    ,apex_item.text(10,c007,10) Class
    ,apex_item.date_popup(11,rownum, c008, 'MM/DD/YYYY',15) Date_Acquired
    ,apex_item.select_list_from_lov(12,c009,'LOV_METHOD_OF_ACQ') Method_Acquired
    ,apex_item.hidden(13,c010,10) Primary_Key
    FROM apex_collections
    WHERE collection_name= 'INTEREST_STOCK_COLL'
    AND c011 IN ('O','N','U')
    union all
    select
    apex_item.hidden (1,null) status
    ,apex_item.checkbox(2, null) checkbox
    ,apex_item.hidden(3, null) seqid
    ,apex_item.hidden(4,null,10) Owner_Firm_Id
    ,apex_item.hidden(5,null,10) Owner_Id
    ,apex_item.hidden(6,null,10) First_Name
    ,apex_item.hidden(7,null,10) Last_Name
    ,apex_item.text(8,null,10) Number_Shares
    ,apex_item.text(9,null,10) Percentage
    ,apex_item.text(10,null,10) Class
    ,apex_item.date_popup(11,1, null,'MM/DD/YYYY',15) Date_Acquired
    ,apex_item.select_list_from_lov(12,null,'LOV_METHOD_OF_ACQ') Method_Acquired
    ,apex_item.hidden(13,null,10) Primary_Key
    FROM dual
    Javascript
    function hideCols(p_startOfTable, p_pageList, p_debug)
              alert("in function");
              var outStr = "Blanking Script:\n";
    var debug = p_debug;
    var offCols = p_pageList.split(":"); //string comes in colon delimited, split it
    into array
    var tbl = document.getElementById(p_startOfTable); //get the table from the page
    html source
    var rows = tbl.getElementsByTagName('tr'); //get the first row
    var tds = tbl.getElementsByTagName('td');
    var testStr;
    outStr = outStr + "START tds length is " + tds.length + "\n";
    if (debug)
    alert(outStr);
              //START Clear Headers
    var i, j, cells;
    cells = rows[0].getElementsByTagName('th'); //get the headers
    for (j = 0; j < offCols.length; j++)
    cells[j].className = "hidden";
    outStr = outStr + "i is " + i + " HEADER rows.length is " + rows.length +
    "\n";
    if (debug)
    alert(outStr);
    //END Clear Headers
              //START Clear TDs
              for (i = 0; i < tds.length; i++)
    var attrib = tds.innerHTML;
    var gNum = attrib.indexOf(" name=") + 7;
    var colNum = attrib.substr(gNum, 2);
    colNum = parseFloat(colNum);
    for (j = 0; j < offCols.length; j++)
    if (debug)
    testStr = testStr + "\n" + "colNum is: " + colNum + " className is: " +
    tds[i].className + " i is: " + i + " j is: " + j + "\n";
    if (colNum == offCols[j])
    if (debug)
    alert("colNum is " + colNum);
    if (tds[i].className == "datepicker")
    if (debug)
    alert("caught condition with i= " + i);
    tds[i - 1].className = "hidden";
    tds[i].className = "hidden";
    tds[i + 1].className = "hidden";
    //add popupLOV functionality here
    //add radio button functionality here
    // add other items that may have multiple <td>
    else
    //regular hideCol
    tds[i].className = "hidden";
              //END Clear TDs
    if (debug)
    alert(testStr);
    //document.write(testStr);
    Edited by: PANY on Aug 12, 2010 8:25 AM

  • Items purchased using gift card do not appear on computer though money has been taken

    Why do items purchased using gift card not appear in Itunes, on Ipod or on computer although money appears to have been taken from the gift card??

    See here: iTunes: Finding lost media and downloads
    B-rock

  • "Transport using CMS" option does not appear

    Hello Guys
    I use CMS for transporting, and it works fine! But today I created a new SWCV, created a Track on CMS to this SWCV too. But when I choose "Export" on IR, the screen that appers does not show the "Transport using CMS" option. Only the "Transporte using File System" option is available for this SWCV.
    Any idea?
    Thanks in advance
    Julio

    Hi (and thanks for answering)
    The SWCV is in http://host:port/rep/support/admin/index.html, but its name is "Not available"
    I did update my domain, but it didnt work at all (the name of the SWCV still is "Not available" and the "Transport using CMS" option didnt appear in IR).
    Julio

  • "Use iCloud" option does not appear in GarageBand for iOS

    For work, I have an iPad 2 running iOS 7.0.4. I recently updated GarageBand on that device to version 2.0. I have several songs on my work iPad that I would like to share via iCloud to my new home iPad mini (Retina) WiFi also running iOS 7.0.4, also with GarageBand version 2.0 installed.
    I went into Settings > GarageBand > and toggled on the "Use iCloud" option on both my work iPad 2 and my home iPad mini.
    On my work iPad 2:
    On my home iPad mini:
    Next, I opened GarageBand on my work iPad 2. When I tapped on the "+" icon, there was no option to "Use iCloud" (as noted in this CNET article: http://howto.cnet.com/8301-11310_39-57408186-285/how-to-use-icloud-with-garageba nd-for-ios/). Here is the screenshot:
    When I tapped on the "Select" button and selected a song, no iCloud icon appears anywhere on the screen. Here is the screenshot:
    So, at this point, I'm fairly frustrated because what should be a fairly easy and obvious solution is simply not appearing.
    I decide to try the same method on my new home iPad mini. I opened GarageBand, but this time when I tapped on the "+" icon, it brought me straight to the Instrument view. So I went back to Song view. When I tapped on the "Select" button and selected a test song, again no iCloud icon appears anywhere on the screen. Here is the screenshot:
    I tried hard restarting both iPads. Nothing. I tried deleting and re-installing GarageBand on the new home iPad mini (didn't want to on the work iPad 2 or I'd lose what I was trying to share!). Again, nothing. I would really just like to transfer via iCloud my personal song files from my work iPad 2 over to my home iPad mini. It should be simple to do and I don't really understand what I'm doing wrong here. I have followed all the instructions correctly, but the "Use iCloud" option just isn't working for me on either device.
    I have been unable to find any other support threads similar to my problem. I'm hoping someone here can help me... PLEASE! I'm at my wit's end here :/

    You are right, Hulu, that important bit of information is not even mentioned on the GarageBand Help page:  Use iCloud with GarageBand
    The document only mentions, that iCloud for GarageBand will have to be enabled. And it is really not obvious, that the "Sync Documents and Data" needs to be active to, or your iPad will not sync GarageBand projects, because no application data will be synced at all.

  • GL Open Item does not appear in F-03

    Hi Friends,
    I am trying to clear the GL open items thru F-03, while I see all the open items that appear in Line item display through FBL3N (total 25), out of them only 24 appear in F-03, I can not see the 25th item.
    I have checked the document in BSIS table, it appears as open item there. The FBL3N also shows this open item.
    What could be the reason that when going for Clearing thru F-03, it does not appear.
    Best Regards
    VK

    - Check some table fields in the missing documents using Transaction SE16. The following conditions must exist for the missing document numbers in question - 
    BSIS-XOPVW = X      (Indicator: Open item management, only for G/L                     accounts)
    BSEG-XOPVW = X      (Indicator: Open item management)
    BSEG-AUGBL = space  (clearing document number)
    BSEG-DISBN = space  (discount document number)
    BKPF-BSTAT = space  (document status)
    BKPF-XSTOV = space  (indicator reversal flag)
    REGUS/REGUP -> see below
    - Check Note 136754 - F-03, F-32, F-44, F-28 missing open items (link below)
    [Note 136754 - F-03, F-32, F-44, F-28 missing open items|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=136754]
    Rgds.

  • Tax code ZT does not appear in any G/L account item

    Hi Gurus
    Iam facing a proble while releasing the billing document to accounting. Following error is coming up
    'Tax code ZT does not appear in any G/L account item'.
    FTXP setting for the tax code appears find as it is tagged to the correct GL account, but somehow the posting is not happeing.
    Can you please help me out with this as Iam stuck and the testing has stopped.
    Thanks
    Ruchi

    Hello,
    please check the note 400766:
    a) Consistency checks                                                 
    In FI, the system checks whether there is a revenue line for each  tax line. In the reverse case, for each revenue line containing a certain tax indicator there must be a tax line with this indicator.                           
    If the first requirement is not met, the system issues error FF753. In many cases, you can solve the problem with Note 112609 
    by adjusting the level number in the pricing procedure in such a way that the system copies the tax indicators correctly into the 
    revenue lines.                                                   
    If the two tax conditions refer to one revenue condition, the requirement cannot be met if the taxes have different tax indicators. In this case, you must use the tax trigger condition in accordance with note 26646.    
    Best regards,
    Ivano.

  • I still use Aperture 2.1.4.  I need to export an image file with a CMYK profile.  Whereas a generic CMYK profile is listed in ColorSync Utility, it does not appear on the list of profiles in the edit portion of the export preset dialogue.  Help?

    I still use Aperture 2.1.4.  I need to export an image file with a CMYK profile.  Whereas a generic CMYK profile is listed in ColorSync Utility, it does not appear on the list of profiles in the edit portion of the export preset dialogue.  Help?  Is there some way to add the CMYK profile to the list of choices that are available in the export preset dialogue such that I can choose it?

    leonieDF
    Thanks for your response.  My profiles are located within color sync utility as you can see here:   
    These profiles do not respond to clicking and dragging.  Since they are all in one place, more or less, I'm reluctant to make further attempts to relocate them.  Accessing the CMYK profile is the first difficult experience I've encountered with this arrangement.  I have never needed the CMYK profile until recently, and that need has now past.  However, it remains a mystery to me as to why it does not appear with all the others on the menu of export choices in Aperture 2, or on the menu of profile assignment choices in the Preview application (where again all the other profiles are listed as choices).  I'm beginning to think my current set up will permit me to view an image that was created in CMYK space, but does not easily assign, or convert to that space.  I don't face these restrictions with all the others, so it remains a curious circumstance for me.  I anticipate upgrading my computer and software in the near future which might alleviate this issue altogether.  Again, many thanks for your attention to this matter.  The reach of this community is astounding.

  • Tax code P0 does not appear in any G/L line item

    Hi,
    I am using BAPI_ACC_DOCUMENT_POST to upload the AP/AR Journals. I have a scenario wherein for AP document type 'KA' both the line items are of vendor . One line item though has a special G/L indicator and a tax code to it.
    When i execute the program I am geting an error that "Tax code P0 does not appear in any G/L line item".
    Here in my case I do not have any G/L line items but both are vendor line items and one line item has a special G/L indicator.
    Could anyone help me in solving it.
    Thanks in advance.

    Hi,
    Check the long text of the message FF - 753 in SE93.
    It describes the cause of this error and the required customising and solution.
    Kindly check with your functional consultant for some inputs.
    He might be able to help you identify the error.
    Regards,
    Ankur Parab

  • In Apple mail, the attachment symbol does not appear in the list of sent items

    In Apple mail, the attachment symbol does not appear in the list of sent items. So you cannot sort sent emails based on whether or not they have an attachment. Is there a way to fix this?

    I think my question wasn't clear. I know how to display the attachment header (I use classic layout) but the problem is that the paperclip icon does not appear against the messages that contain attachments. See screenshot below. The attachment column is displayed but is blank. These are my sent items and I know for a fact that most of them have attachments. Can you help?

  • TS2529 The SIM card inserted in this iPhone does not appear to be supported. The SIM card that you currently have installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation ser

    The SIM card inserted in this iPhone does not appear to be supported.
    The SIM card that you currently have installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation server. This is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier. Please contact Apple for more information
    what can in do?

    Well unfortunatly that advice does not always work. I bought a unlocked iphone4  from apple several years ago and went to att on a no contract basis. Six months later the phone crashed while updating the operating system. Apple replaced the phone with a new one. All is fine till I got a iphone5 and gave te phone to my cousin. The phone is now locked to att but att says the IMEI number is not a valid ATT IMEI and therfore cant unlock it. Apple says there is nothing They can or are willing to do so now I am stuck for a 600.00 phone that can't be used.
    If anyoun knows a way naround this situation mI would appreciate a heads up.

  • HT201272 Season pass notice does not always download.  It does not appear in the purchased items. I am responding to an email stating 'this week's TV show is ready for download'.

    Season pass notice does not always download.  It does not appear in the purchased items. I am responding to an email stating 'this week's TV show is ready for download'.  Any suggestions?

    Been having the same problems all week. And am got a generic, not-at-all-helpful response from my initial inquiry with support, then absolutely no response to my follow-up requests. There seem to be a fair number of people posting this problem, so not sure why we're being ignored.
    Was able to eventually download the episodes manually via the 'purchased' link, but it's about 10 more steps than normal.
    Also noticed that itunes isn't recognizing my purchases at all, not just season passes. If I go to a page of a show where I buy episodes individually, it doesn't show which episodes I have previously bought like it used to.

  • New Role does not appear in home page after assigned to a user

    Hi there!
    I'm new at SAP Portals.
    I've created a role and assigned it to an user, but the corresponding tab does not appear in home page.
    I've already changed permitions to a group that is assigned to the user.
    I've seen in some posts that the role's property "Entry point" should have value "Yes", but mine is set to "No". Meanwhile, I can't change it. When I open the role and press button "Properties" nothing happens. The only way I can check role's properties is through "Delta Link tracer", but there I can't change them.
    Can you help me, make the new tab (corresponding to role) happear in home page menu?
    Thanks and best regards,
    Vasco Brandã

    Hi,
    to track down you problem, you click on "properties", but you can't see the properties? They won't get loaded and therefor, you can't edit the property?
    What's your portal version + SPS, which browser are you using + version (IE, FF) and how do you access the portal? IP, FQDN? Are you getting any error message in the browser?
    What profile is assigned to your user? What kind of roles are you trying to modify? A new one, or a SAP pre-delivered portal role?
    br,
    Tobias

  • Custom item does not appear on Hotsync Menu

    I have a Sprint Treo 700p.  My work email was converted to Outlook from GroupWise.  I am able to sync successfully, but received a message about changing profiles and conduits.  I tried to do this by clicking the Hotsync icon in system tray.  The menu that appeared only had three items (Settings, Install, Exit).  The CUSTOM item does not appear.  I am using Hotsync Manager 7.0.2.  How can I get back the CUSTOM menu item?
    Thanks in Advance,
    Corey
    Post relates to: Treo 700p (Sprint)

    Those Hotsync options are what display on Palm Desktop 6.2.2, not prior versions 4.x.
    To get to your Hotsync settings, click the Hotsync icon, and select Settings.  Then click Applications. Select the conduit you wish to change, and click Configure.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • When i scan and want to attach the item scanned does not appear.

    i used to be able to scan and item and when i went to attach it would appear with the date scanned and i could then just click and it would attach. now after i scan and go to "attach" it does not appear.
    == This happened ==
    Every time Firefox opened

    Hello Joe.
    Although possibly not related to your problem, I will remind you that the version of Firefox you are using at the moment has been discontinued and is no longer supported. Furthermore, it has known bugs and security problems. I urge you to update to the latest version of Firefox, for maximum stability, performance, security and usability. You can get it for free, as always, at [http://www.getfirefox.com getfirefox.com].
    As for your problem, can you be more specific about it? I'm not sure I understand what you need help with.

Maybe you are looking for

  • CatSearch taking more time than full table scan

    Hi I have a table which has close to 140 million records. I had been exploring the option of using oracle text for search. So , I created an index(ctxcat) on the column Name by the following query. begin      ctx_ddl.create_preference('FT_WL', 'BASIC

  • Can I sort mail by  its 'sent' date?

    Can I sort the Mail in my inbox by the date it was sent to me rather then when it arrived?

  • SQL fed drop down, two label values

    Hello all. I have a drop down menu that's fed by an SQL database for a timecard. This database has three records for an employee, the first name, last name, and employee ID. I need the drop down to give me both "fname", "lname", and the actual value

  • How start JRE with swing/awt disabled?

    Hello, I find this exception in tomcat log: Exception in thread "TimerQueue" java.lang.UnsatisfiedLinkError: /usr/java/jre1.6.0_21/lib/amd64/xawt/libmawt.so: libXtst.so.6: cannot open shared object file: No such file or directory at java.lang.ClassLo

  • Network Adaptor Problem

    I have SQLDev and 11g install on my laptop (vista). Everything was working fine until a few days ago. I was able to connect to the 11g on my laptop and to other DBs across the netword. Now I cannot connect to the 11g DB on laptop but can still connec